This repository was archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathLabelOnRegion.js
332 lines (297 loc) · 11.1 KB
/
LabelOnRegion.js
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
import React, { Fragment, useCallback, useContext, useMemo, useState } from 'react';
import { Group, Label, Path, Rect, Tag, Text } from 'react-konva';
import { observer } from 'mobx-react';
import { getRoot } from 'mobx-state-tree';
import Utils from '../../utils';
import Constants from '../../core/Constants';
import { Object3DViewContext } from './Object3DViewContext';
const NON_ADJACENT_CORNER_RADIUS = 4;
const ADJACENT_CORNER_RADIUS = [4, 4, 0, 0];
const TAG_PATH = 'M13.47,2.52c-0.27-0.27-0.71-0.27-1.59-0.27h-0.64c-1.51,0-2.26,0-2.95,0.29C7.61,2.82,7.07,3.35,6,4.43L3.65,6.78c-0.93,0.93-1.4,1.4-1.4,1.97c0,0.58,0.46,1.04,1.39,1.97l1.63,1.63c0.93,0.93,1.39,1.39,1.97,1.39s1.04-0.46,1.97-1.39L11.57,10c1.07-1.07,1.61-1.61,1.89-2.29c0.28-0.68,0.28-1.44,0.28-2.96V4.11C13.74,3.23,13.74,2.8,13.47,2.52z M10.5,6.9c-0.77,0-1.4-0.63-1.4-1.4s0.63-1.39,1.4-1.39s1.39,0.63,1.39,1.4S11.27,6.9,10.5,6.9z';
const OCR_PATH = 'M13,1v2H6C4.11,3,3.17,3,2.59,3.59C2,4.17,2,5.11,2,7v2c0,1.89,0,2.83,0.59,3.41C3.17,13,4.11,13,6,13h7v2h1V1H13z M6,9.5C5.17,9.5,4.5,8.83,4.5,8S5.17,6.5,6,6.5S7.5,7.17,7.5,8S6.83,9.5,6,9.5z M11,9.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S11.83,9.5,11,9.5z';
const LabelOnBbox = ({
x,
y,
text,
score,
showLabels,
showScore = showLabels,
rotation = 0,
zoomScale = 1,
color,
maxWidth,
onClickLabel,
onMouseEnterLabel,
onMouseLeaveLabel,
adjacent = false,
isTexting = false,
}) => {
const fontSize = 13;
const height = 20;
const ss = showScore && score;
const scale = 1 / zoomScale;
const [textEl, setTextEl] = useState();
const paddingLeft = 20;
const paddingRight = 5;
const scoreSpace = ss ? 34 : 0;
const horizontalPaddings = paddingLeft + paddingRight;
const textMaxWidth = Math.max(0, maxWidth * zoomScale - horizontalPaddings - scoreSpace);
const isSticking = !!textMaxWidth;
const { suggestion } = useContext(Object3DViewContext) ?? {};
const width = useMemo(() => {
if (!showLabels || !textEl || !maxWidth) return null;
const currentTextWidth = (text ? textEl.measureSize(text).width : 0);
if (currentTextWidth > textMaxWidth) {
return textMaxWidth;
} else {
return null;
}
}, [textEl, text, maxWidth, scale]);
const tagSceneFunc = useCallback((context, shape) => {
const cornerRadius = adjacent && isSticking ? ADJACENT_CORNER_RADIUS : NON_ADJACENT_CORNER_RADIUS;
const width = maxWidth ? Math.min(shape.width() + horizontalPaddings, isSticking ? maxWidth * zoomScale : paddingLeft) : shape.width() + horizontalPaddings;
const height = shape.height();
context.beginPath();
if (!cornerRadius) {
context.rect(0, 0, width, height);
}
else {
let topLeft = 0;
let topRight = 0;
let bottomLeft = 0;
let bottomRight = 0;
if (typeof cornerRadius === 'number') {
topLeft = topRight = bottomLeft = bottomRight = Math.min(cornerRadius, width / 2, height / 2);
}
else {
topLeft = Math.min(cornerRadius[0], width / 2, height / 2);
topRight = Math.min(cornerRadius[1], width / 2, height / 2);
bottomRight = Math.min(cornerRadius[2], width / 2, height / 2);
bottomLeft = Math.min(cornerRadius[3], width / 2, height / 2);
}
context.moveTo(topLeft, 0);
context.lineTo(width - topRight, 0);
context.arc(width - topRight, topRight, topRight, (Math.PI * 3) / 2, 0, false);
context.lineTo(width, height - bottomRight);
context.arc(width - bottomRight, height - bottomRight, bottomRight, 0, Math.PI / 2, false);
context.lineTo(bottomLeft, height);
context.arc(bottomLeft, height - bottomLeft, bottomLeft, Math.PI / 2, Math.PI, false);
context.lineTo(0, topLeft);
context.arc(topLeft, topLeft, topLeft, Math.PI, (Math.PI * 3) / 2, false);
}
context.closePath();
context.fillStrokeShape(shape);
}, [adjacent, isSticking, maxWidth]);
return (
<Group strokeScaleEnabled={false} x={x} y={y} rotation={rotation}>
{ss && (
<Label y={-height * scale} scaleX={scale} scaleY={scale} onClick={() => { return false; }}>
<Tag fill={Utils.Colors.getScaleGradient(score)} cornerRadius={2} />
<Text
text={score.toFixed(2)}
fontFamily="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif"
fontSize={fontSize}
fill="white"
padding={0}
lineHeight={(1 / fontSize) * height}
/>
</Label>
)}
{showLabels && (
<>
<Label x={paddingLeft * scale + scoreSpace * scale} y={-height * scale} scaleX={scale} scaleY={scale}
onClick={onClickLabel}
onMouseEnter={onClickLabel ? onMouseEnterLabel : null}
onMouseLeave={onClickLabel ? onMouseLeaveLabel : null}
listening={!suggestion}
>
<Tag fill={color} cornerRadius={4} sceneFunc={tagSceneFunc} offsetX={paddingLeft} />
<Text ref={setTextEl} text={text}
fontFamily="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif"
fontSize={fontSize}
lineHeight={1 / fontSize * height}
height={height}
width={width}
wrap="none"
ellipsis="true"
fill={Constants.SHOW_LABEL_FILL}
padding={0} />
</Label>
<Path
x={2 * scale + scoreSpace * scale}
y={2 * scale - height * scale}
scaleX={scale} scaleY={scale}
fill={Constants.SHOW_LABEL_FILL}
data={isTexting ? OCR_PATH : TAG_PATH}
/>
</>
)}
</Group>
);
};
const LabelOnEllipse = observer(({ item, color, strokewidth }) => {
const isLabeling = !!item.labeling;
const isTexting = !!item.texting;
const labelText = item.getLabelText(',');
const obj = item.parent;
if (!isLabeling && !isTexting) return null;
const zoomScale = item.parent.zoomScale || 1;
return (
<LabelOnBbox
x={obj.internalToCanvasX(item.x - item.radiusX) - strokewidth / 2 / zoomScale}
y={obj.internalToCanvasY(item.y - item.radiusY) - strokewidth / 2 / zoomScale}
isTexting={isTexting}
text={labelText}
score={item.score}
showLabels={getRoot(item).settings.showLabels}
showScore={getRoot(item).settings.showLabels}
zoomScale={item.parent.zoomScale}
color={color}
onClickLabel={item.onClickLabel}
/>
);
});
const LabelOnRect = observer(({ item, color, strokewidth }) => {
const isLabeling = !!item.labeling;
const isTexting = !!item.texting;
const labelText = item.getLabelText(',');
const obj = item.parent;
if (!isLabeling && !isTexting) return null;
const zoomScale = item.parent.zoomScale || 1;
return (
<LabelOnBbox
x={obj.internalToCanvasX(item.x) - strokewidth / 2 / zoomScale}
y={obj.internalToCanvasY(item.y) - strokewidth / 2 / zoomScale}
isTexting={isTexting}
text={labelText}
score={item.score}
showLabels={getRoot(item).settings.showLabels}
showScore={getRoot(item).settings.showLabels}
zoomScale={item.parent.zoomScale}
rotation={item.rotation}
color={color}
maxWidth={obj.internalToCanvasX(item.width) + strokewidth}
adjacent
onClickLabel={item.onClickLabel}
/>
);
});
const LabelOnPolygon = observer(({ item, color }) => {
const isLabeling = !!item.labeling;
const isTexting = !!item.texting;
const labelText = item.getLabelText(',');
if (!isLabeling && !isTexting) return null;
const bbox = item.bboxCoordsCanvas;
if (!bbox) return null;
const settings = getRoot(item).settings;
return (
<Fragment>
{settings && (settings.showLabels || settings.showScore) && (
<Rect
x={bbox.left}
y={bbox.top}
fillEnabled={false}
width={bbox.right - bbox.left}
height={bbox.bottom - bbox.top}
stroke={item.style?.strokecolor}
strokeWidth={1}
strokeScaleEnabled={false}
shadowBlur={0}
/>
)}
<LabelOnBbox
x={bbox.left}
y={bbox.top + 2 / item.parent.zoomScale}
isTexting={isTexting}
text={labelText}
score={item.score}
showLabels={settings && settings.showLabels}
showScore={settings && settings.showScore}
zoomScale={item.parent.zoomScale}
color={color}
onClickLabel={item.onClickLabel}
/>
</Fragment>
);
});
const LabelOnMask = observer(({ item, color }) => {
const settings = getRoot(item).settings;
if (settings && !settings.showLabels && !settings.showScore) return null;
const isLabeling = !!item.labeling;
const isTexting = !!item.texting;
const labelText = item.getLabelText(',');
if (!isLabeling && !isTexting) return null;
const bbox = item.bboxCoordsCanvas;
if (!bbox) return null;
return (
<Group name="region-label">
<Rect
x={bbox.left}
y={bbox.top}
fillEnabled={false}
width={bbox.right - bbox.left}
height={bbox.bottom - bbox.top}
stroke={item.style?.strokecolor}
strokeWidth={1}
strokeScaleEnabled={false}
shadowBlur={0}
/>
<LabelOnBbox
x={bbox.left}
y={bbox.top + 2 / item.parent.zoomScale}
isTexting={isTexting}
text={labelText}
score={item.score}
showLabels={getRoot(item).settings.showLabels}
showScore={settings && settings.showScore}
zoomScale={item.parent.zoomScale}
color={color}
onClickLabel={item.onClickLabel}
/>
</Group>
);
});
const LabelOnKP = observer(({ item, color }) => {
const isLabeling = !!item.labeling;
const isTexting = !!item.texting;
const labelText = item.getLabelText(',');
if (!isLabeling && !isTexting) return null;
return (
<LabelOnBbox
// keypoints' width scaled back to stay always small, so scale it here too
x={item.canvasX + (item.canvasWidth + 2) / item.parent.zoomScale}
y={item.canvasY + (item.canvasWidth + 2) / item.parent.zoomScale}
isTexting={isTexting}
text={labelText}
score={item.score}
showLabels={getRoot(item).settings.showLabels}
showScore={getRoot(item).settings.showScore}
zoomScale={item.parent.zoomScale}
color={color}
onClickLabel={item.onClickLabel}
/>
);
});
const LabelOnVideoBbox = observer(({ reg, box, color, scale, strokeWidth, adjacent = false }) => {
const isLabeling = !!reg.labeling;
const isTexting = !!reg.texting;
const labelText = reg.getLabelText(',');
if (!isLabeling && !isTexting) return null;
return (
<LabelOnBbox
x={box.x}
y={box.y}
rotation={box.rotation}
isTexting={isTexting}
text={labelText}
score={reg.score}
showLabels={reg.store.settings.showLabels}
zoomScale={scale}
color={color}
maxWidth={box.width + strokeWidth}
adjacent={adjacent}
onClickLabel={reg.onClickRegion}
/>
);
});
export { LabelOnBbox, LabelOnPolygon, LabelOnRect, LabelOnEllipse, LabelOnKP, LabelOnMask, LabelOnVideoBbox };