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
| export const simpleConfig = `
| <View>
| <Image name="img" value="$image"></Image>
| <RectangleLabels name="tag" toName="img">
| <Label value="Label 1" background="green"></Label>
| <Label value="Label 2" background="blue"></Label>
| </RectangleLabels>
| </View>
| `;
|
| export const simpleImageData = {
| image:
| "https://htx-pub.s3.us-east-1.amazonaws.com/examples/images/nick-owuor-astro-nic-visuals-wDifg5xc9Z4-unsplash.jpg",
| };
|
| export const simpleResult = [
| {
| id: "Dx_aB91ISN",
| source: "$image",
| from_name: "tag",
| to_name: "img",
| type: "rectanglelabels",
| origin: "manual",
| value: {
| height: 20,
| rotation: 0,
| width: 20,
| x: 40,
| y: 40,
| rectanglelabels: ["Label 1"],
| },
| },
| {
| id: "Dx_aB91INs",
| source: "$image",
| from_name: "tag",
| to_name: "img",
| type: "rectanglelabels",
| origin: "manual",
| value: {
| height: 90,
| rotation: 0,
| width: 90,
| x: 5,
| y: 5,
| rectanglelabels: ["Label 2"],
| },
| },
| ];
|
|