kaelrenc commited on
Commit
5816201
1 Parent(s): 52452cc
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +105 -3
  2. anylabel/0704.2852-page_0004.png.json +39 -0
  3. anylabel/0704.2852-page_0004.png.png +3 -0
  4. anylabel/0711.0194-page_0003.png.json +67 -0
  5. anylabel/0711.0194-page_0003.png.png +3 -0
  6. anylabel/0712.2737-page_0010.png.json +156 -0
  7. anylabel/0712.2737-page_0010.png.png +3 -0
  8. anylabel/0801.3097-page_0004.png.json +72 -0
  9. anylabel/0801.3097-page_0004.png.png +3 -0
  10. anylabel/0802.4282-page_0003.png.json +156 -0
  11. anylabel/0802.4282-page_0003.png.png +3 -0
  12. anylabel/0903.4358-page_0001.png.json +72 -0
  13. anylabel/0903.4358-page_0001.png.png +3 -0
  14. anylabel/0908.2467-page_0006.png.json +72 -0
  15. anylabel/0908.2467-page_0006.png.png +3 -0
  16. anylabel/0908.4403-page_0009.png.json +100 -0
  17. anylabel/0908.4403-page_0009.png.png +3 -0
  18. anylabel/0908.4403-page_0010.png.json +268 -0
  19. anylabel/0908.4403-page_0010.png.png +3 -0
  20. anylabel/0908.4403-page_0011.png.json +268 -0
  21. anylabel/0908.4403-page_0011.png.png +3 -0
  22. anylabel/0908.4403-page_0013.png.json +179 -0
  23. anylabel/0908.4403-page_0013.png.png +3 -0
  24. anylabel/0910.2654-page_0016.png.json +100 -0
  25. anylabel/0910.2654-page_0016.png.png +3 -0
  26. anylabel/0910.2654-page_0023.png.json +39 -0
  27. anylabel/0910.2654-page_0023.png.png +3 -0
  28. anylabel/0910.2654-page_0116.png.json +72 -0
  29. anylabel/0910.2654-page_0116.png.png +3 -0
  30. anylabel/0912.1897-page_0006.png.json +67 -0
  31. anylabel/0912.1897-page_0006.png.png +3 -0
  32. anylabel/0912.1901-page_0006.png.json +100 -0
  33. anylabel/0912.1901-page_0006.png.png +3 -0
  34. anylabel/0912.1901-page_0008.png.json +67 -0
  35. anylabel/0912.1901-page_0008.png.png +3 -0
  36. anylabel/0912.3824-page_0002.png.json +72 -0
  37. anylabel/0912.3824-page_0002.png.png +3 -0
  38. anylabel/0912.5515-page_0012.png.json +39 -0
  39. anylabel/0912.5515-page_0012.png.png +3 -0
  40. anylabel/1001.2817-page_0002.png.json +100 -0
  41. anylabel/1001.2817-page_0002.png.png +3 -0
  42. anylabel/1002.1549-page_0001.png.json +67 -0
  43. anylabel/1002.1549-page_0001.png.png +3 -0
  44. anylabel/1003.1919-page_0003.png.json +67 -0
  45. anylabel/1003.1919-page_0003.png.png +3 -0
  46. anylabel/1004.4149-page_0047.png.json +39 -0
  47. anylabel/1004.4149-page_0047.png.png +3 -0
  48. anylabel/1005.5340-page_0007.png.json +72 -0
  49. anylabel/1005.5340-page_0007.png.png +3 -0
  50. anylabel/1006.5762-page_0006.png.json +72 -0
README.md CHANGED
@@ -1,3 +1,105 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # Description
6
+
7
+ A *floating object* is a common type of page element found in academic literature, books, and other formal publications. In LaTeX, a floating object typically refers to a container that can hold text, images, tables, code, algorithms, and other content. The placement of these containers within the document is automatically adjusted by LaTeX to fit the page layout. To facilitate indexing and readability, floating objects are usually accompanied by additional information such as type, numbering, and captions beyond the main content (image, table, code block, algorithm block). In more complex cases, a floating object may contain multiple sub-elements, each of which may have its own numbering. In LaTeX, common floating objects include the following:
8
+
9
+ - *Figure*: A floating object for images, typically defined within the `\begin{figure}` and `\end{figure}` environment.
10
+ - *Table*: A floating object for tables, typically defined within the `\begin{table}` and `\end{table}` environment.
11
+ - *Algorithm*: A floating object for describing algorithms, often defined using additional packages such as `algorithm`, `algorithm2e`, or `algorithmicx`.
12
+ - *Code*: A floating object for code, often defined using packages such as `listings` or `minted`.
13
+
14
+ For a long time, the number of elements detected by *Document Layout Analysis* (DLA) tasks has been extremely limited, with elements like tables and figures typically handled separately. This approach has several drawbacks:
15
+
16
+ 1. The relationship between the floating object’s caption and its main content is not captured, making it difficult to treat them as a single unit.
17
+ 2. The types of supported floating objects are limited. For instance, code blocks and algorithm blocks are often mistakenly recognized by DLA models as multiple text paragraphs, thus reducing accuracy.
18
+ 3. Extensibility is limited, preventing adaptation to increasingly diverse layout styles, such as more complex small-page environments. As a result, layout analysis models exhibit poor adaptability.
19
+
20
+ To address this, two additional tasks have been introduced on top of existing document layout analysis: *Floating Object Localization* (FLD) and *Floating Object Structure Analysis* (FSA). Specifically:
21
+
22
+ - The *Floating Object Localization* (FLD) task aims to detect the position and type information of entire floating objects in document images. This includes five types of floating objects: figures, tables, algorithms, code, and others.
23
+ - The *Floating Object Structure Analysis* (FSA) task aims to detect the substructure of floating objects in document images, whether for entire pages or individual floating objects. When sub-elements such as sub-figures or sub-tables are present, their positions and types can also be identified, along with the corresponding captions. The six recognized types include figures, tables, algorithms, code, captions, and others.
24
+
25
+ For the two tasks mentioned above, the *DocGenome* dataset was used to find arXiv documents, and X-AnyLabel was employed for annotation, resulting in the creation of the *Floating Object Localization Dataset* (FLD) and the *Floating Object Structure Analysis Dataset* (FSA), each containing 600 images.
26
+
27
+ # Download Method
28
+
29
+ The **Floating Object Localization Dataset (FLD)** can be downloaded from the following Huggingface URL:
30
+
31
+ - <https://huggingface.co/datasets/irhawks/floating-det>
32
+
33
+ The **Floating Object Structure Analysis Dataset (FSA)** can be downloaded from the following Huggingface URL:
34
+
35
+ - <https://huggingface.co/datasets/irhawks/floating-fsa>
36
+
37
+ # Annotation Standards
38
+
39
+ ## Algorithms
40
+
41
+ The algorithm environment is used to describe procedural operations in pseudocode format. In practice, to maintain simplicity, pseudocode or programming languages such as Pascal or C are often used, typically containing control statements such as `for`, `while`, and `if`, along with line numbering. Additionally, the algorithm’s numbering and caption information are usually displayed above the algorithm. In this dataset, the algorithm’s number, caption, and main body are treated as a single unit, with all of these elements included as part of the annotation.
42
+
43
+ ![Algorithm Annotation Example](images/paste-1.png)
44
+
45
+ *Algorithm structure analysis*, as a subtask of Floating Object Structure Analysis (FSA), focuses on analyzing the structure of algorithm blocks, dividing them into two parts: the caption and the main body. An example is shown below:
46
+
47
+ ![Algorithm Structure Analysis Example](images/paste-9.png)
48
+
49
+ Notably, for the main body of the algorithm, the **algorithm’s bounding box is not considered; instead, the actual location of the pseudocode within the document image is used as the reference standard**. The same annotation standard is applied to other floating object elements (e.g., images, tables, code blocks).
50
+
51
+ ![](images/paste-10.png)
52
+
53
+ ## Code
54
+
55
+ The code environment typically describes programs in either a programming language or a language close to one, with an emphasis on executability. Therefore, it is usually associated with a specific programming language or a reduced language format. The main body of the code is often set in a monospaced font (though some environments may not use monospaced fonts), with English and symbols being the primary content, adhering to a clear indentation structure. For accurate recognition, this is critical. In this dataset, the code environment’s number, caption (if present), and main body are treated as a single unit, and all of these elements are included as part of the annotation.
56
+
57
+ ![Code Annotation Example](images/paste-2.png)
58
+
59
+ In addition, the code environment may sometimes include numbering similar to inline mathematical formulas, primarily for the purpose of referencing within the main text. Although these elements are generally not considered floating objects, they are also annotated as floating objects.
60
+
61
+ ![Inline Formula-like Code Environment](images/paste-3.png)
62
+
63
+ It is important to note that sometimes code environments share numbering with floating objects like figures. In such cases, although the caption might be labeled as a *Figure*, the floating object’s type should still be classified as *Code*. An example is shown below.
64
+
65
+ ![](images/paste-6.png)
66
+
67
+ When annotating the structure of code environments, the title and the main body of the code are differentiated. Both the caption and the code body are bounded by their actual areas, excluding decorative lines.
68
+
69
+ ![Code Structure Analysis Example](images/paste-11.png)
70
+
71
+ For non-floating code lines, the main body of the code and any accompanying numbering are annotated separately, with the numbering categorized as “other.”
72
+
73
+ ![](images/paste-12.png)
74
+
75
+ ## Figures
76
+
77
+ In this dataset, a *figure* is defined as an element that visually conveys information through graphical means rather than symbolic representation. This may include natural images or schematic drawings. Floating objects whose primary purpose is to explain one or more images are classified as *figures*. In the annotation process, the figure’s number, caption (if present), and main body are treated as a single unit, with all of these elements included.
78
+
79
+ ![Figure Annotation Example](images/paste-4.png)
80
+
81
+ In the *Figure Structure Analysis* task, each individual graphic is annotated and labeled as a *figure*, while the caption for each sub-figure and any accompanying labels are classified as “captions.” An example is shown below.
82
+
83
+ ![](images/paste-13.png)
84
+
85
+ ## Tables
86
+
87
+ Tables are elements that display information in a two-dimensional grid, typically composed of rows, columns, and possibly footnotes. In this dataset, floating objects that aim to explain one or more tables are categorized as *tables*. During annotation, the table’s number, caption (if present), and main body are treated as a single unit, with all elements included.
88
+
89
+ ![Table Annotation Example](images/paste-7.png)
90
+
91
+ ![Table Environment Annotation Example](images/paste-8.png)
92
+
93
+ For the *Table Structure Analysis* task, the annotation standards are consistent with those of other structure analysis tasks. The main body is labeled as *table*, while each table caption is labeled as *caption*.
94
+
95
+ ![](images/paste-14.png)
96
+
97
+ ## Others
98
+
99
+ Elements other than figures, tables, code blocks, or algorithm blocks that still exhibit the basic characteristics of floating objects, or floating object regions that combine two or more types of content, are annotated as *other*. However, due to formatting conventions, these elements may also share caption styles with figures and tables.
100
+
101
+ ![Other Annotation Example](images/paste-5.png)
102
+
103
+ In the *Other Structure Analysis* task, elements that do not fall into the categories of algorithms, code, figures, tables, or captions are labeled as *other*. Common examples include inline code numbering, table footnotes, and other similar elements. An example is shown below in the cyan-colored area.
104
+
105
+ ![](images/paste-15.png)
anylabel/0704.2852-page_0004.png.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "算法",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 147.57081604003906,
11
+ 788.5518798828125
12
+ ],
13
+ [
14
+ 836.8298950195312,
15
+ 788.5518798828125
16
+ ],
17
+ [
18
+ 836.8298950195312,
19
+ 1508.3548583984375
20
+ ],
21
+ [
22
+ 147.57081604003906,
23
+ 1508.3548583984375
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ }
33
+ ],
34
+ "imagePath": "0704.2852-page_0004.png.png",
35
+ "imageData": null,
36
+ "imageWidth": 1654,
37
+ "imageHeight": 2339,
38
+ "text": ""
39
+ }
anylabel/0704.2852-page_0004.png.png ADDED

Git LFS Details

  • SHA256: 76c9bb27170b0b3379d4c69c9c7674b7bfbb9856745635beaa8aaff28e705c77
  • Pointer size: 132 Bytes
  • Size of remote file: 1.96 MB
anylabel/0711.0194-page_0003.png.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 301.58652,
11
+ 1282.14648
12
+ ],
13
+ [
14
+ 991.94421,
15
+ 1282.14648
16
+ ],
17
+ [
18
+ 991.94421,
19
+ 1817.51965
20
+ ],
21
+ [
22
+ 301.58652,
23
+ 1817.51965
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ },
33
+ {
34
+ "label": "插图",
35
+ "score": 1.0,
36
+ "points": [
37
+ [
38
+ 531.2415161132812,
39
+ 325.0207824707031
40
+ ],
41
+ [
42
+ 1168.459228515625,
43
+ 325.0207824707031
44
+ ],
45
+ [
46
+ 1168.459228515625,
47
+ 817.0440673828125
48
+ ],
49
+ [
50
+ 531.2415161132812,
51
+ 817.0440673828125
52
+ ]
53
+ ],
54
+ "group_id": null,
55
+ "description": "{}\n",
56
+ "difficult": null,
57
+ "shape_type": "rectangle",
58
+ "flags": null,
59
+ "attributes": {}
60
+ }
61
+ ],
62
+ "imagePath": "0711.0194-page_0003.png.png",
63
+ "imageData": null,
64
+ "imageWidth": 1700,
65
+ "imageHeight": 2200,
66
+ "text": ""
67
+ }
anylabel/0711.0194-page_0003.png.png ADDED

Git LFS Details

  • SHA256: 2ab7a1fdc4144b8fea571d23bc96687d4789a8d0b776ae3f288f76162848d61f
  • Pointer size: 131 Bytes
  • Size of remote file: 676 kB
anylabel/0712.2737-page_0010.png.json ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 369.67496,
16
+ 1072.93652
17
+ ],
18
+ [
19
+ 1290.24219,
20
+ 1072.93652
21
+ ],
22
+ [
23
+ 1290.24219,
24
+ 1185.4248
25
+ ],
26
+ [
27
+ 369.67496,
28
+ 1185.4248
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "代码",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 367.89029,
44
+ 1524.41003
45
+ ],
46
+ [
47
+ 969.56671,
48
+ 1524.41003
49
+ ],
50
+ [
51
+ 969.56671,
52
+ 1570.28357
53
+ ],
54
+ [
55
+ 367.89029,
56
+ 1570.28357
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "代码",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 369.3436,
72
+ 1396.88062
73
+ ],
74
+ [
75
+ 1133.69556,
76
+ 1396.88062
77
+ ],
78
+ [
79
+ 1133.69556,
80
+ 1421.90759
81
+ ],
82
+ [
83
+ 369.3436,
84
+ 1421.90759
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ },
94
+ {
95
+ "label": "代码",
96
+ "score": 1.0,
97
+ "points": [
98
+ [
99
+ 372.66666666666674,
100
+ 1934.10071
101
+ ],
102
+ [
103
+ 1444.6666666666665,
104
+ 1934.10071
105
+ ],
106
+ [
107
+ 1444.6666666666665,
108
+ 1960.0
109
+ ],
110
+ [
111
+ 372.66666666666674,
112
+ 1960.0
113
+ ]
114
+ ],
115
+ "group_id": null,
116
+ "description": "{}\n",
117
+ "difficult": null,
118
+ "shape_type": "rectangle",
119
+ "flags": {},
120
+ "attributes": {}
121
+ },
122
+ {
123
+ "label": "插图",
124
+ "score": 1.0,
125
+ "points": [
126
+ [
127
+ 672.4407348632812,
128
+ 333.86785888671875
129
+ ],
130
+ [
131
+ 1136.1968994140625,
132
+ 333.86785888671875
133
+ ],
134
+ [
135
+ 1136.1968994140625,
136
+ 673.5670166015625
137
+ ],
138
+ [
139
+ 672.4407348632812,
140
+ 673.5670166015625
141
+ ]
142
+ ],
143
+ "group_id": null,
144
+ "description": "{}\n",
145
+ "difficult": null,
146
+ "shape_type": "rectangle",
147
+ "flags": {},
148
+ "attributes": {}
149
+ }
150
+ ],
151
+ "imagePath": "0712.2737-page_0010.png.png",
152
+ "imageData": null,
153
+ "imageHeight": 2200,
154
+ "imageWidth": 1700,
155
+ "text": ""
156
+ }
anylabel/0712.2737-page_0010.png.png ADDED

Git LFS Details

  • SHA256: 4398794a13bec757c52a01604037562837da8d0a71aa0d89ec85622c7e230e8a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.06 MB
anylabel/0801.3097-page_0004.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "算法",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 77.9750747680664,
16
+ 564.309814453125
17
+ ],
18
+ [
19
+ 808.4252319335938,
20
+ 564.309814453125
21
+ ],
22
+ [
23
+ 808.4252319335938,
24
+ 945.6611328125
25
+ ],
26
+ [
27
+ 77.9750747680664,
28
+ 945.6611328125
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": null,
41
+ "points": [
42
+ [
43
+ 95.0,
44
+ 138.33333333333334
45
+ ],
46
+ [
47
+ 776.666666666667,
48
+ 138.33333333333334
49
+ ],
50
+ [
51
+ 776.666666666667,
52
+ 276.6666666666667
53
+ ],
54
+ [
55
+ 95.0,
56
+ 276.6666666666667
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "",
61
+ "difficult": false,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "0801.3097-page_0004.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2200,
70
+ "imageWidth": 1700,
71
+ "text": ""
72
+ }
anylabel/0801.3097-page_0004.png.png ADDED

Git LFS Details

  • SHA256: 76612cfb46e7f283a952ae18363b2bb0bbd6f6cb50fc6185b4fd5206bfcb35a2
  • Pointer size: 132 Bytes
  • Size of remote file: 2.02 MB
anylabel/0802.4282-page_0003.png.json ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "算法",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 129.66015625,
16
+ 729.3665771484375
17
+ ],
18
+ [
19
+ 838.47021484375,
20
+ 729.3665771484375
21
+ ],
22
+ [
23
+ 838.47021484375,
24
+ 1031.467041015625
25
+ ],
26
+ [
27
+ 129.66015625,
28
+ 1031.467041015625
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 192.18896484375,
44
+ 1295.7059326171875
45
+ ],
46
+ [
47
+ 779.558837890625,
48
+ 1295.7059326171875
49
+ ],
50
+ [
51
+ 779.558837890625,
52
+ 1805.8935546875
53
+ ],
54
+ [
55
+ 192.18896484375,
56
+ 1805.8935546875
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "插图",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 924.7761840820312,
72
+ 132.435791015625
73
+ ],
74
+ [
75
+ 1512.9410400390625,
76
+ 132.435791015625
77
+ ],
78
+ [
79
+ 1512.9410400390625,
80
+ 641.3922119140625
81
+ ],
82
+ [
83
+ 924.7761840820312,
84
+ 641.3922119140625
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ },
94
+ {
95
+ "label": "附表",
96
+ "score": 1.0,
97
+ "points": [
98
+ [
99
+ 895.2724609375,
100
+ 1038.1488037109375
101
+ ],
102
+ [
103
+ 1526.2840576171875,
104
+ 1038.1488037109375
105
+ ],
106
+ [
107
+ 1526.2840576171875,
108
+ 1271.5860595703125
109
+ ],
110
+ [
111
+ 895.2724609375,
112
+ 1271.5860595703125
113
+ ]
114
+ ],
115
+ "group_id": null,
116
+ "description": "{}\n",
117
+ "difficult": null,
118
+ "shape_type": "rectangle",
119
+ "flags": {},
120
+ "attributes": {}
121
+ },
122
+ {
123
+ "label": "附表",
124
+ "score": 1.0,
125
+ "points": [
126
+ [
127
+ 858.3333333333335,
128
+ 1592.6265869140625
129
+ ],
130
+ [
131
+ 1576.666666666667,
132
+ 1592.6265869140625
133
+ ],
134
+ [
135
+ 1576.666666666667,
136
+ 1855.0
137
+ ],
138
+ [
139
+ 858.3333333333335,
140
+ 1855.0
141
+ ]
142
+ ],
143
+ "group_id": null,
144
+ "description": "{}\n",
145
+ "difficult": null,
146
+ "shape_type": "rectangle",
147
+ "flags": {},
148
+ "attributes": {}
149
+ }
150
+ ],
151
+ "imagePath": "0802.4282-page_0003.png.png",
152
+ "imageData": null,
153
+ "imageHeight": 2200,
154
+ "imageWidth": 1700,
155
+ "text": ""
156
+ }
anylabel/0802.4282-page_0003.png.png ADDED

Git LFS Details

  • SHA256: 822291c2f80e6bb99a5c292217931803b99ce542236d7adf45b3c1b289eb538e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
anylabel/0903.4358-page_0001.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "算法",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 313.8421052631579,
16
+ 1548.4473684210527
17
+ ],
18
+ [
19
+ 1332.2631578947367,
20
+ 1548.4473684210527
21
+ ],
22
+ [
23
+ 1332.2631578947367,
24
+ 2082.657894736842
25
+ ],
26
+ [
27
+ 313.8421052631579,
28
+ 2082.657894736842
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "附表",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 487.526315789474,
44
+ 527.3947368421053
45
+ ],
46
+ [
47
+ 1163.842105263158,
48
+ 527.3947368421053
49
+ ],
50
+ [
51
+ 1163.842105263158,
52
+ 840.5526315789474
53
+ ],
54
+ [
55
+ 487.526315789474,
56
+ 840.5526315789474
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "0903.4358-page_0001.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2339,
70
+ "imageWidth": 1654,
71
+ "text": ""
72
+ }
anylabel/0903.4358-page_0001.png.png ADDED

Git LFS Details

  • SHA256: 730ce337c22ba8c81ce1e0c4c490c8c6babd7deba22d5833b8cfc9f4583eddc7
  • Pointer size: 131 Bytes
  • Size of remote file: 650 kB
anylabel/0908.2467-page_0006.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "算法",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 864.2857142857142,
16
+ 1173.015873015873
17
+ ],
18
+ [
19
+ 1554.7619047619048,
20
+ 1173.015873015873
21
+ ],
22
+ [
23
+ 1554.7619047619048,
24
+ 1685.7142857142858
25
+ ],
26
+ [
27
+ 864.2857142857142,
28
+ 1685.7142857142858
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 144.5789794921875,
44
+ 143.34425354003906
45
+ ],
46
+ [
47
+ 846.5422973632812,
48
+ 143.34425354003906
49
+ ],
50
+ [
51
+ 846.5422973632812,
52
+ 947.4303588867188
53
+ ],
54
+ [
55
+ 144.5789794921875,
56
+ 947.4303588867188
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "0908.2467-page_0006.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2200,
70
+ "imageWidth": 1700,
71
+ "text": ""
72
+ }
anylabel/0908.2467-page_0006.png.png ADDED

Git LFS Details

  • SHA256: 54c83d2498436781c56fd1da82c58032e2bed4efb57ac6a6e919b99353d48651
  • Pointer size: 132 Bytes
  • Size of remote file: 2.38 MB
anylabel/0908.4403-page_0009.png.json ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 836.78381,
16
+ 1193.78052
17
+ ],
18
+ [
19
+ 1543.9154052734375,
20
+ 1193.78052
21
+ ],
22
+ [
23
+ 1543.9154052734375,
24
+ 1774.88123
25
+ ],
26
+ [
27
+ 836.78381,
28
+ 1774.88123
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "代码",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 837.37799,
44
+ 253.86557006835938
45
+ ],
46
+ [
47
+ 1536.8360655737704,
48
+ 253.86557006835938
49
+ ],
50
+ [
51
+ 1536.8360655737704,
52
+ 1021.1393442622951
53
+ ],
54
+ [
55
+ 837.37799,
56
+ 1021.1393442622951
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "代码",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 113.7646,
72
+ 2065.48315
73
+ ],
74
+ [
75
+ 813.9632,
76
+ 2065.48315
77
+ ],
78
+ [
79
+ 813.9632,
80
+ 2111.59229
81
+ ],
82
+ [
83
+ 113.7646,
84
+ 2111.59229
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ }
94
+ ],
95
+ "imagePath": "0908.4403-page_0009.png.png",
96
+ "imageData": null,
97
+ "imageHeight": 2339,
98
+ "imageWidth": 1654,
99
+ "text": ""
100
+ }
anylabel/0908.4403-page_0009.png.png ADDED

Git LFS Details

  • SHA256: f1e9441aea64406e51765e116383eb0d8aeafb0cb8a61a0386072af9fa1ba925
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
anylabel/0908.4403-page_0010.png.json ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 837.04242,
16
+ 1374.41345
17
+ ],
18
+ [
19
+ 1536.44531,
20
+ 1374.41345
21
+ ],
22
+ [
23
+ 1536.44531,
24
+ 1933.33838
25
+ ],
26
+ [
27
+ 837.04242,
28
+ 1933.33838
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "代码",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 837.08435,
44
+ 810.71240234375
45
+ ],
46
+ [
47
+ 1536.29236,
48
+ 810.71240234375
49
+ ],
50
+ [
51
+ 1536.29236,
52
+ 1333.40637
53
+ ],
54
+ [
55
+ 837.08435,
56
+ 1333.40637
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "代码",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 834.079833984375,
72
+ 259.5016784667969
73
+ ],
74
+ [
75
+ 1535.61206,
76
+ 259.5016784667969
77
+ ],
78
+ [
79
+ 1535.61206,
80
+ 777.89923
81
+ ],
82
+ [
83
+ 834.079833984375,
84
+ 777.89923
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ },
94
+ {
95
+ "label": "代码",
96
+ "score": 1.0,
97
+ "points": [
98
+ [
99
+ 837.21582,
100
+ 1972.7157
101
+ ],
102
+ [
103
+ 1540.46411,
104
+ 1972.7157
105
+ ],
106
+ [
107
+ 1540.46411,
108
+ 2120.54932
109
+ ],
110
+ [
111
+ 837.21582,
112
+ 2120.54932
113
+ ]
114
+ ],
115
+ "group_id": null,
116
+ "description": "{}\n",
117
+ "difficult": null,
118
+ "shape_type": "rectangle",
119
+ "flags": {},
120
+ "attributes": {}
121
+ },
122
+ {
123
+ "label": "代码",
124
+ "score": 1.0,
125
+ "points": [
126
+ [
127
+ 113.11945,
128
+ 2064.02271
129
+ ],
130
+ [
131
+ 813.07806,
132
+ 2064.02271
133
+ ],
134
+ [
135
+ 813.07806,
136
+ 2110.60767
137
+ ],
138
+ [
139
+ 113.11945,
140
+ 2110.60767
141
+ ]
142
+ ],
143
+ "group_id": null,
144
+ "description": "{}\n",
145
+ "difficult": null,
146
+ "shape_type": "rectangle",
147
+ "flags": {},
148
+ "attributes": {}
149
+ },
150
+ {
151
+ "label": "代码",
152
+ "score": null,
153
+ "points": [
154
+ [
155
+ 130.27868852459005,
156
+ 657.2049180327868
157
+ ],
158
+ [
159
+ 817.1639344262296,
160
+ 657.2049180327868
161
+ ],
162
+ [
163
+ 817.1639344262296,
164
+ 740.811475409836
165
+ ],
166
+ [
167
+ 130.27868852459005,
168
+ 740.811475409836
169
+ ]
170
+ ],
171
+ "group_id": null,
172
+ "description": "",
173
+ "difficult": false,
174
+ "shape_type": "rectangle",
175
+ "flags": {},
176
+ "attributes": {}
177
+ },
178
+ {
179
+ "label": "代码",
180
+ "score": null,
181
+ "points": [
182
+ [
183
+ 151.5901639344263,
184
+ 850.6475409836065
185
+ ],
186
+ [
187
+ 812.2459016393443,
188
+ 850.6475409836065
189
+ ],
190
+ [
191
+ 812.2459016393443,
192
+ 1103.1065573770493
193
+ ],
194
+ [
195
+ 151.5901639344263,
196
+ 1103.1065573770493
197
+ ]
198
+ ],
199
+ "group_id": null,
200
+ "description": "",
201
+ "difficult": false,
202
+ "shape_type": "rectangle",
203
+ "flags": {},
204
+ "attributes": {}
205
+ },
206
+ {
207
+ "label": "代码",
208
+ "score": null,
209
+ "points": [
210
+ [
211
+ 131.9180327868853,
212
+ 1537.532786885246
213
+ ],
214
+ [
215
+ 813.8852459016391,
216
+ 1537.532786885246
217
+ ],
218
+ [
219
+ 813.8852459016391,
220
+ 1619.5
221
+ ],
222
+ [
223
+ 131.9180327868853,
224
+ 1619.5
225
+ ]
226
+ ],
227
+ "group_id": null,
228
+ "description": "",
229
+ "difficult": false,
230
+ "shape_type": "rectangle",
231
+ "flags": {},
232
+ "attributes": {}
233
+ },
234
+ {
235
+ "label": "代码",
236
+ "score": null,
237
+ "points": [
238
+ [
239
+ 149.95081967213105,
240
+ 1730.9754098360656
241
+ ],
242
+ [
243
+ 813.8852459016391,
244
+ 1730.9754098360656
245
+ ],
246
+ [
247
+ 813.8852459016391,
248
+ 1981.795081967213
249
+ ],
250
+ [
251
+ 149.95081967213105,
252
+ 1981.795081967213
253
+ ]
254
+ ],
255
+ "group_id": null,
256
+ "description": "",
257
+ "difficult": false,
258
+ "shape_type": "rectangle",
259
+ "flags": {},
260
+ "attributes": {}
261
+ }
262
+ ],
263
+ "imagePath": "0908.4403-page_0010.png.png",
264
+ "imageData": null,
265
+ "imageHeight": 2339,
266
+ "imageWidth": 1654,
267
+ "text": ""
268
+ }
anylabel/0908.4403-page_0010.png.png ADDED

Git LFS Details

  • SHA256: 0936b97947fa576c30eb3c3a9ece4e99400238545b3550f3d1b8b12de5f4c08a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
anylabel/0908.4403-page_0011.png.json ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 109.66802,
16
+ 1281.54578
17
+ ],
18
+ [
19
+ 817.94464,
20
+ 1281.54578
21
+ ],
22
+ [
23
+ 817.94464,
24
+ 1842.20374
25
+ ],
26
+ [
27
+ 109.66802,
28
+ 1842.20374
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "代码",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 111.32044,
44
+ 732.91022
45
+ ],
46
+ [
47
+ 817.96191,
48
+ 732.91022
49
+ ],
50
+ [
51
+ 817.96191,
52
+ 1248.31982
53
+ ],
54
+ [
55
+ 111.32044,
56
+ 1248.31982
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "代码",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 110.16949,
72
+ 260.5426025390625
73
+ ],
74
+ [
75
+ 815.7149,
76
+ 260.5426025390625
77
+ ],
78
+ [
79
+ 815.7149,
80
+ 678.90344
81
+ ],
82
+ [
83
+ 110.16949,
84
+ 678.90344
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ },
94
+ {
95
+ "label": "代码",
96
+ "score": 1.0,
97
+ "points": [
98
+ [
99
+ 838.18799,
100
+ 945.08588
101
+ ],
102
+ [
103
+ 1535.01086,
104
+ 945.08588
105
+ ],
106
+ [
107
+ 1535.01086,
108
+ 1318.78821
109
+ ],
110
+ [
111
+ 838.18799,
112
+ 1318.78821
113
+ ]
114
+ ],
115
+ "group_id": null,
116
+ "description": "{}\n",
117
+ "difficult": null,
118
+ "shape_type": "rectangle",
119
+ "flags": {},
120
+ "attributes": {}
121
+ },
122
+ {
123
+ "label": "代码",
124
+ "score": 1.0,
125
+ "points": [
126
+ [
127
+ 837.58447,
128
+ 1358.03125
129
+ ],
130
+ [
131
+ 1535.98694,
132
+ 1358.03125
133
+ ],
134
+ [
135
+ 1535.98694,
136
+ 1731.92456
137
+ ],
138
+ [
139
+ 837.58447,
140
+ 1731.92456
141
+ ]
142
+ ],
143
+ "group_id": null,
144
+ "description": "{}\n",
145
+ "difficult": null,
146
+ "shape_type": "rectangle",
147
+ "flags": {},
148
+ "attributes": {}
149
+ },
150
+ {
151
+ "label": "代码",
152
+ "score": 1.0,
153
+ "points": [
154
+ [
155
+ 839.21716,
156
+ 1774.21753
157
+ ],
158
+ [
159
+ 1535.22559,
160
+ 1774.21753
161
+ ],
162
+ [
163
+ 1535.22559,
164
+ 2102.73828
165
+ ],
166
+ [
167
+ 839.21716,
168
+ 2102.73828
169
+ ]
170
+ ],
171
+ "group_id": null,
172
+ "description": "{}\n",
173
+ "difficult": null,
174
+ "shape_type": "rectangle",
175
+ "flags": {},
176
+ "attributes": {}
177
+ },
178
+ {
179
+ "label": "其他",
180
+ "score": null,
181
+ "points": [
182
+ [
183
+ 873.5517241379309,
184
+ 761.7413793103448
185
+ ],
186
+ [
187
+ 1383.896551724138,
188
+ 761.7413793103448
189
+ ],
190
+ [
191
+ 1383.896551724138,
192
+ 856.5689655172414
193
+ ],
194
+ [
195
+ 873.5517241379309,
196
+ 856.5689655172414
197
+ ]
198
+ ],
199
+ "group_id": null,
200
+ "description": "",
201
+ "difficult": false,
202
+ "shape_type": "rectangle",
203
+ "flags": {},
204
+ "attributes": {}
205
+ },
206
+ {
207
+ "label": "代码",
208
+ "score": null,
209
+ "points": [
210
+ [
211
+ 868.3793103448277,
212
+ 601.3965517241379
213
+ ],
214
+ [
215
+ 1533.896551724138,
216
+ 601.3965517241379
217
+ ],
218
+ [
219
+ 1533.896551724138,
220
+ 735.8793103448276
221
+ ],
222
+ [
223
+ 868.3793103448277,
224
+ 735.8793103448276
225
+ ]
226
+ ],
227
+ "group_id": null,
228
+ "description": "",
229
+ "difficult": false,
230
+ "shape_type": "rectangle",
231
+ "flags": {},
232
+ "attributes": {}
233
+ },
234
+ {
235
+ "label": "代码",
236
+ "score": null,
237
+ "points": [
238
+ [
239
+ 845.9655172413793,
240
+ 413.46551724137925
241
+ ],
242
+ [
243
+ 1537.344827586207,
244
+ 413.46551724137925
245
+ ],
246
+ [
247
+ 1537.344827586207,
248
+ 492.77586206896547
249
+ ],
250
+ [
251
+ 845.9655172413793,
252
+ 492.77586206896547
253
+ ]
254
+ ],
255
+ "group_id": null,
256
+ "description": "",
257
+ "difficult": false,
258
+ "shape_type": "rectangle",
259
+ "flags": {},
260
+ "attributes": {}
261
+ }
262
+ ],
263
+ "imagePath": "0908.4403-page_0011.png.png",
264
+ "imageData": null,
265
+ "imageHeight": 2339,
266
+ "imageWidth": 1654,
267
+ "text": ""
268
+ }
anylabel/0908.4403-page_0011.png.png ADDED

Git LFS Details

  • SHA256: 529e3fa1a55727d8f2db4ad8dd12304c6ccdb9d768633ecc00ff59d0f9617419
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
anylabel/0908.4403-page_0013.png.json ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 109.57037353515625,
11
+ 260.83871
12
+ ],
13
+ [
14
+ 819.66876,
15
+ 260.83871
16
+ ],
17
+ [
18
+ 819.66876,
19
+ 707.526611328125
20
+ ],
21
+ [
22
+ 109.57037353515625,
23
+ 707.526611328125
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ },
33
+ {
34
+ "label": "代码",
35
+ "score": 1.0,
36
+ "points": [
37
+ [
38
+ 110.54062,
39
+ 763.39697
40
+ ],
41
+ [
42
+ 817.354,
43
+ 763.39697
44
+ ],
45
+ [
46
+ 817.354,
47
+ 1614.44739
48
+ ],
49
+ [
50
+ 110.54062,
51
+ 1614.44739
52
+ ]
53
+ ],
54
+ "group_id": null,
55
+ "description": "{}\n",
56
+ "difficult": null,
57
+ "shape_type": "rectangle",
58
+ "flags": null,
59
+ "attributes": {}
60
+ },
61
+ {
62
+ "label": "代码",
63
+ "score": 1.0,
64
+ "points": [
65
+ [
66
+ 838.1321411132812,
67
+ 725.49304
68
+ ],
69
+ [
70
+ 1537.494384765625,
71
+ 725.49304
72
+ ],
73
+ [
74
+ 1537.494384765625,
75
+ 1342.85474
76
+ ],
77
+ [
78
+ 838.1321411132812,
79
+ 1342.85474
80
+ ]
81
+ ],
82
+ "group_id": null,
83
+ "description": "{}\n",
84
+ "difficult": null,
85
+ "shape_type": "rectangle",
86
+ "flags": null,
87
+ "attributes": {}
88
+ },
89
+ {
90
+ "label": "代码",
91
+ "score": 1.0,
92
+ "points": [
93
+ [
94
+ 837.50458,
95
+ 1496.84814
96
+ ],
97
+ [
98
+ 1536.13123,
99
+ 1496.84814
100
+ ],
101
+ [
102
+ 1536.13123,
103
+ 2122.29736
104
+ ],
105
+ [
106
+ 837.50458,
107
+ 2122.29736
108
+ ]
109
+ ],
110
+ "group_id": null,
111
+ "description": "{}\n",
112
+ "difficult": null,
113
+ "shape_type": "rectangle",
114
+ "flags": null,
115
+ "attributes": {}
116
+ },
117
+ {
118
+ "label": "代码",
119
+ "score": 1.0,
120
+ "points": [
121
+ [
122
+ 113.32028,
123
+ 1648.47168
124
+ ],
125
+ [
126
+ 815.12048,
127
+ 1648.47168
128
+ ],
129
+ [
130
+ 815.12048,
131
+ 2123.3584
132
+ ],
133
+ [
134
+ 113.32028,
135
+ 2123.3584
136
+ ]
137
+ ],
138
+ "group_id": null,
139
+ "description": "{}\n",
140
+ "difficult": null,
141
+ "shape_type": "rectangle",
142
+ "flags": null,
143
+ "attributes": {}
144
+ },
145
+ {
146
+ "label": "代码",
147
+ "score": 1.0,
148
+ "points": [
149
+ [
150
+ 836.0141,
151
+ 261.4840087890625
152
+ ],
153
+ [
154
+ 1535.10046,
155
+ 261.4840087890625
156
+ ],
157
+ [
158
+ 1535.10046,
159
+ 665.84442
160
+ ],
161
+ [
162
+ 836.0141,
163
+ 665.84442
164
+ ]
165
+ ],
166
+ "group_id": null,
167
+ "description": "{}\n",
168
+ "difficult": null,
169
+ "shape_type": "rectangle",
170
+ "flags": null,
171
+ "attributes": {}
172
+ }
173
+ ],
174
+ "imagePath": "0908.4403-page_0013.png.png",
175
+ "imageData": null,
176
+ "imageWidth": 1654,
177
+ "imageHeight": 2339,
178
+ "text": ""
179
+ }
anylabel/0908.4403-page_0013.png.png ADDED

Git LFS Details

  • SHA256: 47580ce0b9de68bdd207144ee457446e0bc3fa413e47cd9efc5da27ae1201c40
  • Pointer size: 132 Bytes
  • Size of remote file: 1.16 MB
anylabel/0910.2654-page_0016.png.json ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 253.39787,
16
+ 1253.80566
17
+ ],
18
+ [
19
+ 1043.99854,
20
+ 1253.80566
21
+ ],
22
+ [
23
+ 1043.99854,
24
+ 1330.61047
25
+ ],
26
+ [
27
+ 253.39787,
28
+ 1330.61047
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "代码",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 256.1543,
44
+ 1557.34448
45
+ ],
46
+ [
47
+ 896.69434,
48
+ 1557.34448
49
+ ],
50
+ [
51
+ 896.69434,
52
+ 1631.96802
53
+ ],
54
+ [
55
+ 256.1543,
56
+ 1631.96802
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "附表",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 295.8540344238281,
72
+ 311.03302001953125
73
+ ],
74
+ [
75
+ 1510.6557377049182,
76
+ 311.03302001953125
77
+ ],
78
+ [
79
+ 1510.6557377049182,
80
+ 837.7049180327868
81
+ ],
82
+ [
83
+ 295.8540344238281,
84
+ 837.7049180327868
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ }
94
+ ],
95
+ "imagePath": "0910.2654-page_0016.png.png",
96
+ "imageData": null,
97
+ "imageHeight": 2200,
98
+ "imageWidth": 1700,
99
+ "text": ""
100
+ }
anylabel/0910.2654-page_0016.png.png ADDED

Git LFS Details

  • SHA256: 76ea076c4b820d4225de2a4764128206cf451bb54963c9bbf68194a10cdb96c3
  • Pointer size: 131 Bytes
  • Size of remote file: 623 kB
anylabel/0910.2654-page_0023.png.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 252.09923,
11
+ 284.49042
12
+ ],
13
+ [
14
+ 1083.32312,
15
+ 284.49042
16
+ ],
17
+ [
18
+ 1083.32312,
19
+ 401.21796
20
+ ],
21
+ [
22
+ 252.09923,
23
+ 401.21796
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ }
33
+ ],
34
+ "imagePath": "0910.2654-page_0023.png.png",
35
+ "imageData": null,
36
+ "imageWidth": 1700,
37
+ "imageHeight": 2200,
38
+ "text": ""
39
+ }
anylabel/0910.2654-page_0023.png.png ADDED

Git LFS Details

  • SHA256: 6294c7a89c80725ac1c45197d4ba418032f24f1b6f452a360989bffd15cb7d8f
  • Pointer size: 131 Bytes
  • Size of remote file: 838 kB
anylabel/0910.2654-page_0116.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 255.07449,
16
+ 1291.48523
17
+ ],
18
+ [
19
+ 1590.3846153846152,
20
+ 1291.48523
21
+ ],
22
+ [
23
+ 1590.3846153846152,
24
+ 1561.5384615384614
25
+ ],
26
+ [
27
+ 255.07449,
28
+ 1561.5384615384614
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "代码",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 256.01648,
44
+ 1848.81018
45
+ ],
46
+ [
47
+ 1082.54102,
48
+ 1848.81018
49
+ ],
50
+ [
51
+ 1082.54102,
52
+ 1963.93884
53
+ ],
54
+ [
55
+ 256.01648,
56
+ 1963.93884
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "0910.2654-page_0116.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2200,
70
+ "imageWidth": 1700,
71
+ "text": ""
72
+ }
anylabel/0910.2654-page_0116.png.png ADDED

Git LFS Details

  • SHA256: ed56033e9d81e95f49c30f2fd3c2b3d8ce6bf8a6f70aefe166a153a541cb4400
  • Pointer size: 131 Bytes
  • Size of remote file: 673 kB
anylabel/0912.1897-page_0006.png.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 219.00832,
11
+ 1437.57349
12
+ ],
13
+ [
14
+ 1353.08386,
15
+ 1437.57349
16
+ ],
17
+ [
18
+ 1353.08386,
19
+ 1543.26001
20
+ ],
21
+ [
22
+ 219.00832,
23
+ 1543.26001
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ },
33
+ {
34
+ "label": "插图",
35
+ "score": 1.0,
36
+ "points": [
37
+ [
38
+ 297.89434814453125,
39
+ 666.7310180664062
40
+ ],
41
+ [
42
+ 1389.636962890625,
43
+ 666.7310180664062
44
+ ],
45
+ [
46
+ 1389.636962890625,
47
+ 1141.8359375
48
+ ],
49
+ [
50
+ 297.89434814453125,
51
+ 1141.8359375
52
+ ]
53
+ ],
54
+ "group_id": null,
55
+ "description": "{}\n",
56
+ "difficult": null,
57
+ "shape_type": "rectangle",
58
+ "flags": null,
59
+ "attributes": {}
60
+ }
61
+ ],
62
+ "imagePath": "0912.1897-page_0006.png.png",
63
+ "imageData": null,
64
+ "imageWidth": 1700,
65
+ "imageHeight": 2200,
66
+ "text": ""
67
+ }
anylabel/0912.1897-page_0006.png.png ADDED

Git LFS Details

  • SHA256: 0ba4174ba1d3dc2351d4891220a4b14f03042f7b1cc8f21f7e0929c3273458c4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB
anylabel/0912.1901-page_0006.png.json ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 893.54865,
16
+ 1423.61292
17
+ ],
18
+ [
19
+ 1582.7868852459017,
20
+ 1423.61292
21
+ ],
22
+ [
23
+ 1582.7868852459017,
24
+ 1786.8852459016393
25
+ ],
26
+ [
27
+ 893.54865,
28
+ 1786.8852459016393
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 405.1265563964844,
44
+ 446.02642822265625
45
+ ],
46
+ [
47
+ 1291.6998291015625,
48
+ 446.02642822265625
49
+ ],
50
+ [
51
+ 1291.6998291015625,
52
+ 921.8496704101562
53
+ ],
54
+ [
55
+ 405.1265563964844,
56
+ 921.8496704101562
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "插图",
68
+ "score": 1.0,
69
+ "points": [
70
+ [
71
+ 216.81455993652344,
72
+ 1487.6126708984375
73
+ ],
74
+ [
75
+ 850.2452392578125,
76
+ 1487.6126708984375
77
+ ],
78
+ [
79
+ 850.2452392578125,
80
+ 1786.2901611328125
81
+ ],
82
+ [
83
+ 216.81455993652344,
84
+ 1786.2901611328125
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "{}\n",
89
+ "difficult": null,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ }
94
+ ],
95
+ "imagePath": "0912.1901-page_0006.png.png",
96
+ "imageData": null,
97
+ "imageHeight": 2200,
98
+ "imageWidth": 1700,
99
+ "text": ""
100
+ }
anylabel/0912.1901-page_0006.png.png ADDED

Git LFS Details

  • SHA256: f66021c9fb87f0902086c062d3d75e523a0cb18241811a93617d116b97f01794
  • Pointer size: 132 Bytes
  • Size of remote file: 1.12 MB
anylabel/0912.1901-page_0008.png.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 220.31438,
11
+ 238.1842
12
+ ],
13
+ [
14
+ 592.32007,
15
+ 238.1842
16
+ ],
17
+ [
18
+ 592.32007,
19
+ 270.8985
20
+ ],
21
+ [
22
+ 220.31438,
23
+ 270.8985
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ },
33
+ {
34
+ "label": "插图",
35
+ "score": 1.0,
36
+ "points": [
37
+ [
38
+ 249.4190216064453,
39
+ 1415.5433349609375
40
+ ],
41
+ [
42
+ 1449.530517578125,
43
+ 1415.5433349609375
44
+ ],
45
+ [
46
+ 1449.530517578125,
47
+ 1613.9168701171875
48
+ ],
49
+ [
50
+ 249.4190216064453,
51
+ 1613.9168701171875
52
+ ]
53
+ ],
54
+ "group_id": null,
55
+ "description": "{}\n",
56
+ "difficult": null,
57
+ "shape_type": "rectangle",
58
+ "flags": null,
59
+ "attributes": {}
60
+ }
61
+ ],
62
+ "imagePath": "0912.1901-page_0008.png.png",
63
+ "imageData": null,
64
+ "imageWidth": 1700,
65
+ "imageHeight": 2200,
66
+ "text": ""
67
+ }
anylabel/0912.1901-page_0008.png.png ADDED

Git LFS Details

  • SHA256: 3f0340161bb862eca595571dcbeb9da9bc0c98a8ce6191f45cefdbbbe4bcae25
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
anylabel/0912.3824-page_0002.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "算法",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 850.3333333333335,
16
+ 711.6666666666667
17
+ ],
18
+ [
19
+ 1557.0,
20
+ 711.6666666666667
21
+ ],
22
+ [
23
+ 1557.0,
24
+ 1131.6666666666667
25
+ ],
26
+ [
27
+ 850.3333333333335,
28
+ 1131.6666666666667
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 99.91209411621094,
44
+ 220.7188262939453
45
+ ],
46
+ [
47
+ 1553.5657958984375,
48
+ 220.7188262939453
49
+ ],
50
+ [
51
+ 1553.5657958984375,
52
+ 662.036376953125
53
+ ],
54
+ [
55
+ 99.91209411621094,
56
+ 662.036376953125
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "0912.3824-page_0002.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2339,
70
+ "imageWidth": 1654,
71
+ "text": ""
72
+ }
anylabel/0912.3824-page_0002.png.png ADDED

Git LFS Details

  • SHA256: bacc6ce57bc39beb1a77bc084d38e1bad3f78b5b92c5756ceb237ba8dc563f12
  • Pointer size: 132 Bytes
  • Size of remote file: 2.29 MB
anylabel/0912.5515-page_0012.png.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 68.18982,
11
+ 112.66663
12
+ ],
13
+ [
14
+ 1387.21179,
15
+ 112.66663
16
+ ],
17
+ [
18
+ 1387.21179,
19
+ 2171.57764
20
+ ],
21
+ [
22
+ 68.18982,
23
+ 2171.57764
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ }
33
+ ],
34
+ "imagePath": "0912.5515-page_0012.png.png",
35
+ "imageData": null,
36
+ "imageWidth": 1654,
37
+ "imageHeight": 2339,
38
+ "text": ""
39
+ }
anylabel/0912.5515-page_0012.png.png ADDED

Git LFS Details

  • SHA256: 22075356f9d5abbbce2b1a3ef8861057c3f910f44a10df521710ed8c188ea9ec
  • Pointer size: 131 Bytes
  • Size of remote file: 982 kB
anylabel/1001.2817-page_0002.png.json ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "代码",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 422.91544,
16
+ 1685.27319
17
+ ],
18
+ [
19
+ 913.04266,
20
+ 1685.27319
21
+ ],
22
+ [
23
+ 913.04266,
24
+ 1761.83337
25
+ ],
26
+ [
27
+ 422.91544,
28
+ 1761.83337
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 366.6261901855469,
44
+ 335.98956298828125
45
+ ],
46
+ [
47
+ 1329.05029296875,
48
+ 335.98956298828125
49
+ ],
50
+ [
51
+ 1329.05029296875,
52
+ 826.847412109375
53
+ ],
54
+ [
55
+ 366.6261901855469,
56
+ 826.847412109375
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ },
66
+ {
67
+ "label": "代码",
68
+ "score": null,
69
+ "points": [
70
+ [
71
+ 417.1428571428571,
72
+ 1498.5714285714284
73
+ ],
74
+ [
75
+ 1118.5714285714284,
76
+ 1498.5714285714284
77
+ ],
78
+ [
79
+ 1118.5714285714284,
80
+ 1527.142857142857
81
+ ],
82
+ [
83
+ 417.1428571428571,
84
+ 1527.142857142857
85
+ ]
86
+ ],
87
+ "group_id": null,
88
+ "description": "",
89
+ "difficult": false,
90
+ "shape_type": "rectangle",
91
+ "flags": {},
92
+ "attributes": {}
93
+ }
94
+ ],
95
+ "imagePath": "1001.2817-page_0002.png.png",
96
+ "imageData": null,
97
+ "imageHeight": 2200,
98
+ "imageWidth": 1700,
99
+ "text": ""
100
+ }
anylabel/1001.2817-page_0002.png.png ADDED

Git LFS Details

  • SHA256: c4dbc019274f80627a64004e3fcefce1061108e803b8c774c997c1ddf1c6d056
  • Pointer size: 131 Bytes
  • Size of remote file: 971 kB
anylabel/1002.1549-page_0001.png.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 314.08493,
11
+ 1165.0281982421875
12
+ ],
13
+ [
14
+ 1092.42138671875,
15
+ 1165.0281982421875
16
+ ],
17
+ [
18
+ 1092.42138671875,
19
+ 1465.8875732421875
20
+ ],
21
+ [
22
+ 314.08493,
23
+ 1465.8875732421875
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ },
33
+ {
34
+ "label": "插图",
35
+ "score": 1.0,
36
+ "points": [
37
+ [
38
+ 369.24700927734375,
39
+ 378.7592468261719
40
+ ],
41
+ [
42
+ 1121.93310546875,
43
+ 378.7592468261719
44
+ ],
45
+ [
46
+ 1121.93310546875,
47
+ 747.4501953125
48
+ ],
49
+ [
50
+ 369.24700927734375,
51
+ 747.4501953125
52
+ ]
53
+ ],
54
+ "group_id": null,
55
+ "description": "{}\n",
56
+ "difficult": null,
57
+ "shape_type": "rectangle",
58
+ "flags": null,
59
+ "attributes": {}
60
+ }
61
+ ],
62
+ "imagePath": "1002.1549-page_0001.png.png",
63
+ "imageData": null,
64
+ "imageWidth": 1654,
65
+ "imageHeight": 2339,
66
+ "text": ""
67
+ }
anylabel/1002.1549-page_0001.png.png ADDED

Git LFS Details

  • SHA256: edc15c4a904e0920bc87c569be77dbaa9f82e4f9036750d88c5efc50538cf337
  • Pointer size: 131 Bytes
  • Size of remote file: 756 kB
anylabel/1003.1919-page_0003.png.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 101.85303,
11
+ 1701.20276
12
+ ],
13
+ [
14
+ 804.95764,
15
+ 1701.20276
16
+ ],
17
+ [
18
+ 804.95764,
19
+ 2031.41956
20
+ ],
21
+ [
22
+ 101.85303,
23
+ 2031.41956
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ },
33
+ {
34
+ "label": "代码",
35
+ "score": 1.0,
36
+ "points": [
37
+ [
38
+ 847.45721,
39
+ 227.59744
40
+ ],
41
+ [
42
+ 1578.48218,
43
+ 227.59744
44
+ ],
45
+ [
46
+ 1578.48218,
47
+ 432.5332
48
+ ],
49
+ [
50
+ 847.45721,
51
+ 432.5332
52
+ ]
53
+ ],
54
+ "group_id": null,
55
+ "description": "{}\n",
56
+ "difficult": null,
57
+ "shape_type": "rectangle",
58
+ "flags": null,
59
+ "attributes": {}
60
+ }
61
+ ],
62
+ "imagePath": "1003.1919-page_0003.png.png",
63
+ "imageData": null,
64
+ "imageWidth": 1654,
65
+ "imageHeight": 2339,
66
+ "text": ""
67
+ }
anylabel/1003.1919-page_0003.png.png ADDED

Git LFS Details

  • SHA256: a8085feadd23ab61b5471c8403a90017e538060d71c7ed54817b7b90d9156dbd
  • Pointer size: 132 Bytes
  • Size of remote file: 2.04 MB
anylabel/1004.4149-page_0047.png.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {},
4
+ "shapes": [
5
+ {
6
+ "label": "代码",
7
+ "score": 1.0,
8
+ "points": [
9
+ [
10
+ 195.75726318359375,
11
+ 261.0374755859375
12
+ ],
13
+ [
14
+ 1524.7998,
15
+ 261.0374755859375
16
+ ],
17
+ [
18
+ 1524.7998,
19
+ 1683.10168
20
+ ],
21
+ [
22
+ 195.75726318359375,
23
+ 1683.10168
24
+ ]
25
+ ],
26
+ "group_id": null,
27
+ "description": "{}\n",
28
+ "difficult": null,
29
+ "shape_type": "rectangle",
30
+ "flags": null,
31
+ "attributes": {}
32
+ }
33
+ ],
34
+ "imagePath": "1004.4149-page_0047.png.png",
35
+ "imageData": null,
36
+ "imageWidth": 1654,
37
+ "imageHeight": 2339,
38
+ "text": ""
39
+ }
anylabel/1004.4149-page_0047.png.png ADDED

Git LFS Details

  • SHA256: eddd6a015c88816c9ab5051ab673ec5596d0cc69bc0db2ea6edd74b3a775f918
  • Pointer size: 131 Bytes
  • Size of remote file: 913 kB
anylabel/1005.5340-page_0007.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "插图",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 115.0,
16
+ 146.66666666666669
17
+ ],
18
+ [
19
+ 1591.666666666667,
20
+ 146.66666666666669
21
+ ],
22
+ [
23
+ 1591.666666666667,
24
+ 655.0
25
+ ],
26
+ [
27
+ 115.0,
28
+ 655.0
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "其他",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 110.0,
44
+ 1176.6666666666667
45
+ ],
46
+ [
47
+ 1586.666666666667,
48
+ 1176.6666666666667
49
+ ],
50
+ [
51
+ 1586.666666666667,
52
+ 1758.3333333333335
53
+ ],
54
+ [
55
+ 110.0,
56
+ 1758.3333333333335
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": false,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "1005.5340-page_0007.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2200,
70
+ "imageWidth": 1700,
71
+ "text": ""
72
+ }
anylabel/1005.5340-page_0007.png.png ADDED

Git LFS Details

  • SHA256: 1ff5ed4f2c5b283cc730e6872f8dbcef3b07e3ea0d401e80c2e6441c4819f415
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
anylabel/1006.5762-page_0006.png.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.3.6",
3
+ "flags": {
4
+ "a": false,
5
+ "b": false,
6
+ "c": false,
7
+ "d": false
8
+ },
9
+ "shapes": [
10
+ {
11
+ "label": "算法",
12
+ "score": 1.0,
13
+ "points": [
14
+ [
15
+ 864.8106689453125,
16
+ 989.4267578125
17
+ ],
18
+ [
19
+ 1569.83325,
20
+ 989.4267578125
21
+ ],
22
+ [
23
+ 1569.83325,
24
+ 1540.85791015625
25
+ ],
26
+ [
27
+ 864.8106689453125,
28
+ 1540.85791015625
29
+ ]
30
+ ],
31
+ "group_id": null,
32
+ "description": "{}\n",
33
+ "difficult": null,
34
+ "shape_type": "rectangle",
35
+ "flags": {},
36
+ "attributes": {}
37
+ },
38
+ {
39
+ "label": "插图",
40
+ "score": 1.0,
41
+ "points": [
42
+ [
43
+ 129.42831420898438,
44
+ 154.88778686523438
45
+ ],
46
+ [
47
+ 890.0,
48
+ 154.88778686523438
49
+ ],
50
+ [
51
+ 890.0,
52
+ 831.6666666666667
53
+ ],
54
+ [
55
+ 129.42831420898438,
56
+ 831.6666666666667
57
+ ]
58
+ ],
59
+ "group_id": null,
60
+ "description": "{}\n",
61
+ "difficult": null,
62
+ "shape_type": "rectangle",
63
+ "flags": {},
64
+ "attributes": {}
65
+ }
66
+ ],
67
+ "imagePath": "1006.5762-page_0006.png.png",
68
+ "imageData": null,
69
+ "imageHeight": 2200,
70
+ "imageWidth": 1700,
71
+ "text": ""
72
+ }