-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.ts
More file actions
144 lines (143 loc) · 3.92 KB
/
Copy pathstyles.ts
File metadata and controls
144 lines (143 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**
* Annotation renderer descriptors plus box, mask, label, interaction, and
* focus style APIs.
*
* @module Styles
*/
export {
BaseBoxStyle,
BaseBoxCornerStyle,
BaseMarkerStyle,
BasePercentageBarStyle,
BaseFocusStyle,
BaseInteractionStyle,
BaseKeypointStyle,
BaseLabelStyle,
BaseMaskStyle,
BasePolygonStyle,
BasePolylineStyle,
BoxShape,
BoxStrokeAlignment,
DEFAULT_DETECTION_CLASS_STYLES,
DEFAULT_DETECTION_COLOR_SEQUENCE,
DetectionInteractionState,
FocusTargetMode,
KeypointMarkerShape,
MarkerShape,
MarkerSizeSpace,
PercentageBarPlacement,
LabelVisibilityMode,
RegionRendererComposeMode,
RegionRendererCoverageKind,
RegionRendererRegionKind,
RegionRendererSizeSpace,
RegionRendererSourceKind,
SUPERVISION_ROBOFLOW_COLOR,
annotationRendererKinds,
annotationRenderers,
createDefaultAnnotationPresentation,
normalizeDetectionClassName,
resolveDetectionClassColorStyle,
type BaseBoxStyleOptions,
type BaseBoxCornerStyleOptions,
type BaseMarkerStyleOptions,
type BaseFocusStyleOptions,
type BaseInteractionStyleOptions,
type BaseKeypointStyleOptions,
type BaseLabelStyleOptions,
type BaseMaskStyleOptions,
type BasePolygonStyleOptions,
type BasePolylineStyleOptions,
type AnnotationRenderer,
type AnnotationRendererFactory,
type AnnotationRendererKind,
type BoxAnnotationRenderer,
type BoxCornerAnnotationRenderer,
type BoxCornerDrawInstruction,
type BoxCornerStyle,
type BoxCornerStyleContext,
type EllipseAnnotationRenderer,
type EllipseDrawInstruction,
type EllipseStyle,
type EllipseStyleContext,
type DefaultAnnotationPresentationOptions,
type BoxDrawInstruction,
type BoxFillStyle,
type BoxStrokeStyle,
type BoxStyle,
type BoxStyleContext,
type DetectionStylePredicate,
type DetectionStyleValue,
type DetectionClassColorStyle,
type FocusDrawInstruction,
type FocusFallbackStyle,
type FocusFillStyle,
type FocusStyle,
type FocusStyleContext,
type FocusStyleValue,
type InteractionPresentation,
type InteractionStyle,
type InteractionStyleContext,
type KeypointDrawInstruction,
type KeypointAnnotationRenderer,
type KeypointEdgeDrawInstruction,
type KeypointMarkerDrawInstruction,
type KeypointStyle,
type KeypointStyleContext,
type LabelBackgroundStyle,
type LabelAnnotationRenderer,
type LabelDrawInstruction,
type LabelOffsetStyle,
LabelPlacement,
type LabelStyle,
type LabelStyleContext,
type LabelTextStyle,
type MaskDrawInstruction,
type MaskHaloDrawInstruction,
type MaskHaloStyle,
type MaskHaloStyleContext,
type MaskAnnotationRenderer,
type ClosedMarkerDrawInstruction,
type CrossMarkerDrawInstruction,
type MarkerAnnotationRenderer,
type MarkerDrawInstruction,
type MarkerStyle,
type MarkerStyleContext,
type BasePercentageBarStyleOptions,
type PercentageBarAnnotationRenderer,
type PercentageBarDrawInstruction,
type PercentageBarStyle,
type PercentageBarStyleContext,
type MaskHaloAnnotationRenderer,
MaskRenderMode,
type MaskStrokeStyle,
type MaskStrokeStyleOptions,
type MaskStyle,
type MaskStyleContext,
type PolygonDrawInstruction,
type PolygonAnnotationRenderer,
type PolygonStyle,
type PolygonStyleContext,
type PolylineDrawInstruction,
type PolylineAnnotationRenderer,
type PolylineStyle,
type PolylineStyleContext,
type RegionAnnotationRenderer,
type RegionRendererAssetReference,
type RegionRendererAssetSource,
type RegionRendererBoundsRegion,
type RegionRendererCompose,
type RegionRendererMaskCoverage,
type RegionRendererPolygonCoverage,
type RegionRendererKeypointAnchorRegion,
type RegionRendererMediaSource,
type RegionRendererRegion,
type RegionRendererRelativeTransform,
type RegionRendererSize,
type RegionRendererSizedTransform,
type RegionRendererSource,
type RegionRendererTarget,
type RegionRendererTargetContext,
type RegionRendererTargetValue,
type RegionRendererTransform,
} from "supervision";