Add all untracked files and configure gitignore
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
.venv/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.log
|
||||
.DS_Store
|
||||
58
app.py
58
app.py
@@ -23,6 +23,28 @@ def is_labeled(filename):
|
||||
label_path = os.path.join(LABELS_DIR, name + '.txt')
|
||||
return os.path.exists(label_path)
|
||||
|
||||
def get_yolo_boxes(filename):
|
||||
name, _ = os.path.splitext(filename)
|
||||
label_path = os.path.join(LABELS_DIR, name + '.txt')
|
||||
boxes = []
|
||||
if os.path.exists(label_path):
|
||||
with open(label_path, 'r') as f:
|
||||
for line in f:
|
||||
parts = line.strip().split()
|
||||
if len(parts) >= 5:
|
||||
# format: class x_center y_center width height
|
||||
try:
|
||||
boxes.append({
|
||||
'class': parts[0],
|
||||
'x': float(parts[1]),
|
||||
'y': float(parts[2]),
|
||||
'w': float(parts[3]),
|
||||
'h': float(parts[4])
|
||||
})
|
||||
except ValueError:
|
||||
continue
|
||||
return boxes
|
||||
|
||||
@app.route('/')
|
||||
def index():
|
||||
return render_template('index.html')
|
||||
@@ -36,21 +58,51 @@ def get_next_image():
|
||||
images = get_image_files()
|
||||
total = len(images)
|
||||
labeled_count = 0
|
||||
next_index = None
|
||||
next_image = None
|
||||
|
||||
for img in images:
|
||||
for i, img in enumerate(images):
|
||||
if is_labeled(img):
|
||||
labeled_count += 1
|
||||
elif next_image is None:
|
||||
next_image = img
|
||||
next_index = i
|
||||
|
||||
# If all labeled, next_image remains None
|
||||
|
||||
return jsonify({
|
||||
'total': total,
|
||||
'labeled': labeled_count,
|
||||
'labeled_count': labeled_count,
|
||||
'index': next_index if next_index is not None else -1,
|
||||
'filename': next_image,
|
||||
'completed': next_image is None
|
||||
'completed': next_image is None,
|
||||
'boxes': get_yolo_boxes(next_image) if next_image else []
|
||||
})
|
||||
|
||||
@app.route('/api/image/<int:index>')
|
||||
def get_image_by_index(index):
|
||||
images = get_image_files()
|
||||
total = len(images)
|
||||
|
||||
if total == 0:
|
||||
return jsonify({'error': 'No images'}), 404
|
||||
|
||||
# Clamp index
|
||||
if index < 0: index = 0
|
||||
if index >= total: index = total - 1
|
||||
|
||||
filename = images[index]
|
||||
|
||||
# Calculate stats
|
||||
labeled_count = sum(1 for img in images if is_labeled(img))
|
||||
|
||||
return jsonify({
|
||||
'total': total,
|
||||
'labeled_count': labeled_count,
|
||||
'index': index,
|
||||
'filename': filename,
|
||||
'labeled': is_labeled(filename),
|
||||
'boxes': get_yolo_boxes(filename)
|
||||
})
|
||||
|
||||
@app.route('/api/save', methods=['POST'])
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
[2025-11-27 17:12:10 +0800] [1169011] [INFO] Starting gunicorn 23.0.0
|
||||
[2025-11-27 17:12:10 +0800] [1169011] [INFO] Listening at: http://127.0.0.1:5004 (1169011)
|
||||
[2025-11-27 17:12:10 +0800] [1169011] [INFO] Using worker: sync
|
||||
[2025-11-27 17:12:10 +0800] [1169024] [INFO] Booting worker with pid: 1169024
|
||||
[2025-12-02 00:44:06 +0800] [1169024] [INFO] Worker exiting (pid: 1169024)
|
||||
[2025-12-02 00:44:06 +0800] [1169011] [INFO] Handling signal: term
|
||||
[2025-12-02 00:44:06 +0800] [1169011] [ERROR] Worker (pid:1169024) was sent SIGTERM!
|
||||
[2025-12-02 00:44:06 +0800] [1169011] [INFO] Shutting down: Master
|
||||
[2025-12-02 00:45:00 +0800] [1133408] [INFO] Starting gunicorn 23.0.0
|
||||
[2025-12-02 00:45:00 +0800] [1133408] [INFO] Listening at: http://127.0.0.1:5004 (1133408)
|
||||
[2025-12-02 00:45:00 +0800] [1133408] [INFO] Using worker: sync
|
||||
[2025-12-02 00:45:00 +0800] [1133410] [INFO] Booting worker with pid: 1133410
|
||||
[2025-12-02 00:49:19 +0800] [1133408] [INFO] Handling signal: term
|
||||
[2025-12-02 00:49:19 +0800] [1133410] [INFO] Worker exiting (pid: 1133410)
|
||||
[2025-12-02 00:49:19 +0800] [1133408] [INFO] Shutting down: Master
|
||||
[2025-12-02 00:49:23 +0800] [1152179] [INFO] Starting gunicorn 23.0.0
|
||||
[2025-12-02 00:49:23 +0800] [1152179] [INFO] Listening at: http://127.0.0.1:5004 (1152179)
|
||||
[2025-12-02 00:49:23 +0800] [1152179] [INFO] Using worker: sync
|
||||
[2025-12-02 00:49:23 +0800] [1152181] [INFO] Booting worker with pid: 1152181
|
||||
|
||||
2
labels/201304_000648_AI3_page5.txt
Normal file
2
labels/201304_000648_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.307010 0.752422 0.186140 0.054131
|
||||
0 0.726833 0.754986 0.170024 0.051282
|
||||
2
labels/201304_1904_AI1_page5.txt
Normal file
2
labels/201304_1904_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.735697 0.403989 0.202256 0.050142
|
||||
0 0.745367 0.460969 0.207091 0.062678
|
||||
2
labels/201304_2023_AI3_page3.txt
Normal file
2
labels/201304_2023_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.684529 0.782621 0.152297 0.034758
|
||||
0 0.672979 0.855461 0.154714 0.049003
|
||||
2
labels/201304_2426_AI1_page4.txt
Normal file
2
labels/201304_2426_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.306608 0.761823 0.187752 0.047863
|
||||
0 0.697153 0.759734 0.212732 0.037607
|
||||
2
labels/201304_2596_AI3_page3.txt
Normal file
2
labels/201304_2596_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.736503 0.657550 0.230459 0.058120
|
||||
0 0.730191 0.732099 0.215955 0.078063
|
||||
2
labels/201304_3088_AI1_page5.txt
Normal file
2
labels/201304_3088_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.705242 0.702395 0.174194 0.050171
|
||||
0 0.709274 0.751140 0.179032 0.043900
|
||||
2
labels/201304_3581_AI3_page3.txt
Normal file
2
labels/201304_3581_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.685490 0.659635 0.230588 0.061574
|
||||
0 0.672549 0.751425 0.201569 0.070696
|
||||
2
labels/201304_3587_AI3_page5.txt
Normal file
2
labels/201304_3587_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.309025 0.760684 0.165189 0.049573
|
||||
0 0.713537 0.765242 0.190975 0.046154
|
||||
2
labels/201304_3607_AI3_page5.txt
Normal file
2
labels/201304_3607_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.709911 0.757265 0.196616 0.031909
|
||||
0 0.327558 0.773219 0.232877 0.064957
|
||||
2
labels/201304_4533_AI3_page4.txt
Normal file
2
labels/201304_4533_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.331855 0.552422 0.151613 0.035328
|
||||
0 0.732258 0.553561 0.160484 0.044444
|
||||
2
labels/201304_5291_AI3_page3.txt
Normal file
2
labels/201304_5291_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.310234 0.767236 0.172442 0.037607
|
||||
0 0.717969 0.766382 0.165995 0.038177
|
||||
2
labels/201304_5464_AI1_page4.txt
Normal file
2
labels/201304_5464_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.740323 0.773219 0.173387 0.055271
|
||||
0 0.739516 0.846439 0.175000 0.050142
|
||||
2
labels/201304_6123_AI3_page5.txt
Normal file
2
labels/201304_6123_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.704435 0.732194 0.191935 0.055271
|
||||
0 0.708065 0.661254 0.210484 0.085470
|
||||
2
labels/201304_6216_AI3_page3.txt
Normal file
2
labels/201304_6216_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.722661 0.645242 0.218548 0.059259
|
||||
0 0.722661 0.710484 0.216935 0.070085
|
||||
2
labels/201304_6266_AI3_page3.txt
Normal file
2
labels/201304_6266_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.309201 0.769920 0.161421 0.050799
|
||||
0 0.709927 0.758790 0.199354 0.030822
|
||||
2
labels/201304_6279_AI3_page4.txt
Normal file
2
labels/201304_6279_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.308548 0.576910 0.183871 0.040479
|
||||
0 0.679516 0.576625 0.245161 0.044470
|
||||
2
labels/201304_6412_AI3_page5.txt
Normal file
2
labels/201304_6412_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.732151 0.603932 0.247381 0.059829
|
||||
0 0.725302 0.549516 0.219178 0.049003
|
||||
2
labels/201304_9940_AI3_page5.txt
Normal file
2
labels/201304_9940_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.290975 0.769174 0.219178 0.045014
|
||||
0 0.722482 0.776581 0.184529 0.071225
|
||||
2
labels/201401_1597_AI1_page5.txt
Normal file
2
labels/201401_1597_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.743433 0.490256 0.232877 0.058120
|
||||
0 0.739404 0.546097 0.237712 0.049003
|
||||
2
labels/201401_1604_AI1_page4.txt
Normal file
2
labels/201401_1604_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.289766 0.569744 0.194198 0.051852
|
||||
0 0.697905 0.558063 0.188558 0.036467
|
||||
2
labels/201401_2313_AI1_page4.txt
Normal file
2
labels/201401_2313_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.567768 0.721595 0.231265 0.077493
|
||||
0 0.566962 0.793675 0.231265 0.056410
|
||||
2
labels/201401_2379_AI1_page5.txt
Normal file
2
labels/201401_2379_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.718050 0.550655 0.149879 0.052422
|
||||
0 0.742224 0.632991 0.201450 0.083761
|
||||
2
labels/201401_2440_AI1_page4.txt
Normal file
2
labels/201401_2440_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.664464 0.446952 0.252216 0.066097
|
||||
0 0.646334 0.514758 0.203062 0.078632
|
||||
2
labels/201401_3231_AI1_page3.txt
Normal file
2
labels/201401_3231_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.730137 0.752080 0.222401 0.051852
|
||||
0 0.734569 0.812764 0.226430 0.045584
|
||||
2
labels/201401_3441_AI1_page3.txt
Normal file
2
labels/201401_3441_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.228928 0.761766 0.180500 0.049573
|
||||
0 0.674537 0.766895 0.198227 0.074644
|
||||
2
labels/201401_3551_AI1_page7.txt
Normal file
2
labels/201401_3551_AI1_page7.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.715230 0.596239 0.184529 0.056980
|
||||
0 0.307494 0.602222 0.194198 0.055271
|
||||
2
labels/201401_4535_AI1_page3.txt
Normal file
2
labels/201401_4535_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.539597 0.590593 0.142742 0.042759
|
||||
0 0.536371 0.673831 0.131452 0.038198
|
||||
2
labels/201401_5443_AI1_page5.txt
Normal file
2
labels/201401_5443_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.731346 0.381140 0.197421 0.076923
|
||||
0 0.734972 0.444957 0.198227 0.051852
|
||||
2
labels/201402_1723_AI1_page3.txt
Normal file
2
labels/201402_1723_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.725484 0.781015 0.224194 0.107754
|
||||
0 0.343226 0.764481 0.198387 0.063284
|
||||
2
labels/201402_2301_AI1_page4.txt
Normal file
2
labels/201402_2301_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.295407 0.560627 0.190975 0.055271
|
||||
0 0.697099 0.554644 0.201450 0.041026
|
||||
2
labels/201402_3018_AI1_page3.txt
Normal file
2
labels/201402_3018_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.725705 0.754929 0.181305 0.065527
|
||||
0 0.723288 0.836980 0.165189 0.055271
|
||||
2
labels/201402_3287_AI1_page4.txt
Normal file
2
labels/201402_3287_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.308703 0.546382 0.162772 0.056410
|
||||
0 0.680177 0.545812 0.235294 0.051852
|
||||
2
labels/201402_4114_AI1_page7.txt
Normal file
2
labels/201402_4114_AI1_page7.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.317164 0.724444 0.197421 0.052422
|
||||
0 0.718856 0.718746 0.169218 0.039886
|
||||
2
labels/201402_5284_AI1_page3.txt
Normal file
2
labels/201402_5284_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.309106 0.744387 0.187752 0.046724
|
||||
0 0.716035 0.744957 0.155520 0.052422
|
||||
2
labels/201402_5291_AI1_page4.txt
Normal file
2
labels/201402_5291_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.303868 0.522165 0.165995 0.041026
|
||||
0 0.711201 0.520171 0.158743 0.038177
|
||||
2
labels/201402_5846_AI2_page3.txt
Normal file
2
labels/201402_5846_AI2_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.718050 0.811054 0.178888 0.075214
|
||||
0 0.736986 0.870313 0.189363 0.058120
|
||||
2
labels/201402_8410_AI2_page3.txt
Normal file
2
labels/201402_8410_AI2_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.739404 0.599943 0.234488 0.045014
|
||||
0 0.736986 0.676296 0.226430 0.051852
|
||||
2
labels/201402_8931_AI1_page5.txt
Normal file
2
labels/201402_8931_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.680580 0.748091 0.213537 0.040456
|
||||
0 0.316761 0.747806 0.178888 0.041026
|
||||
2
labels/201403_2022_AI1_page5.txt
Normal file
2
labels/201403_2022_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.537953 0.515897 0.195810 0.062678
|
||||
0 0.541579 0.637265 0.196616 0.031909
|
||||
2
labels/201403_2477_AI1_page3.txt
Normal file
2
labels/201403_2477_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.666882 0.711339 0.147462 0.041026
|
||||
0 0.663255 0.757778 0.169218 0.049573
|
||||
2
labels/201403_2722_AI2_page3.txt
Normal file
2
labels/201403_2722_AI2_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.726511 0.738974 0.195810 0.054131
|
||||
0 0.329653 0.738405 0.165995 0.043875
|
||||
2
labels/201403_2732_AI1_page3.txt
Normal file
2
labels/201403_2732_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.286543 0.746667 0.189363 0.038746
|
||||
0 0.705963 0.750370 0.161160 0.041595
|
||||
2
labels/201403_3018_AI1_page3.txt
Normal file
2
labels/201403_3018_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.730943 0.795100 0.170830 0.062678
|
||||
0 0.722079 0.868319 0.146656 0.059829
|
||||
2
labels/201403_4529_AI1_page4.txt
Normal file
2
labels/201403_4529_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.718050 0.729003 0.204674 0.051282
|
||||
0 0.715633 0.661197 0.196616 0.054701
|
||||
2
labels/201403_4702_AI1_page5.txt
Normal file
2
labels/201403_4702_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.722079 0.583134 0.180500 0.043305
|
||||
0 0.723691 0.643248 0.185334 0.058689
|
||||
2
labels/201403_6144_AI1_page5.txt
Normal file
2
labels/201403_6144_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.781532 0.678291 0.247581 0.072934
|
||||
0 0.756129 0.609630 0.261290 0.066667
|
||||
2
labels/201403_6188_AI1_page4.txt
Normal file
2
labels/201403_6188_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.710395 0.349516 0.178082 0.044444
|
||||
0 0.718856 0.401368 0.186946 0.045584
|
||||
2
labels/201403_8076_AI1_page5.txt
Normal file
2
labels/201403_8076_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.729734 0.555499 0.190975 0.062108
|
||||
0 0.733360 0.634416 0.203062 0.092308
|
||||
2
labels/201403_9960_AI1_page4.txt
Normal file
2
labels/201403_9960_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.701694 0.519042 0.266935 0.116306
|
||||
0 0.333548 0.498803 0.187097 0.051881
|
||||
2
labels/201404_1339_AI2_page3.txt
Normal file
2
labels/201404_1339_AI2_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.271636 0.785413 0.199839 0.070655
|
||||
0 0.670105 0.779715 0.194198 0.045584
|
||||
2
labels/201404_1455_AI1_page4.txt
Normal file
2
labels/201404_1455_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.701290 0.750057 0.227419 0.059293
|
||||
0 0.707339 0.829589 0.207258 0.054162
|
||||
2
labels/201404_1735_AI3_page3.txt
Normal file
2
labels/201404_1735_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.670994 0.785318 0.227609 0.075145
|
||||
0 0.285210 0.786185 0.231717 0.069942
|
||||
2
labels/201404_1784_AI1_page6.txt
Normal file
2
labels/201404_1784_AI1_page6.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.722079 0.630997 0.219178 0.067236
|
||||
0 0.718856 0.699088 0.204674 0.058689
|
||||
2
labels/201404_2390_AI3_page4.txt
Normal file
2
labels/201404_2390_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.331668 0.584843 0.192587 0.056980
|
||||
0 0.720467 0.574872 0.215955 0.037037
|
||||
2
labels/201404_2486_AI1_page6.txt
Normal file
2
labels/201404_2486_AI1_page6.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.748871 0.625299 0.217742 0.054701
|
||||
0 0.767016 0.690826 0.249194 0.045584
|
||||
0
labels/201404_3073_AI1_page3.txt
Normal file
0
labels/201404_3073_AI1_page3.txt
Normal file
2
labels/201404_3130_AI3_page3.txt
Normal file
2
labels/201404_3130_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.719662 0.747863 0.225624 0.075783
|
||||
0 0.724093 0.813390 0.223207 0.056410
|
||||
0
labels/201404_3176_AI1_page4.txt
Normal file
0
labels/201404_3176_AI1_page4.txt
Normal file
2
labels/201404_3311_AI3_page4.txt
Normal file
2
labels/201404_3311_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.321193 0.598291 0.192587 0.029630
|
||||
0 0.719259 0.596296 0.194198 0.045014
|
||||
2
labels/201404_3419_AI3_page3.txt
Normal file
2
labels/201404_3419_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.730943 0.766382 0.191781 0.042165
|
||||
0 0.317969 0.767236 0.153908 0.058689
|
||||
2
labels/201404_3555_AI1_page5.txt
Normal file
2
labels/201404_3555_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.736180 0.703704 0.200645 0.042165
|
||||
0 0.740210 0.767521 0.192587 0.069516
|
||||
2
labels/201404_3687_AI1_page4.txt
Normal file
2
labels/201404_3687_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.708143 0.874349 0.195440 0.053794
|
||||
0 0.717915 0.813760 0.208469 0.053794
|
||||
2
labels/201404_5210_AI1_page4.txt
Normal file
2
labels/201404_5210_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.734758 0.784835 0.279839 0.079818
|
||||
0 0.711774 0.867218 0.256452 0.051881
|
||||
2
labels/201404_5483_AI1_page5.txt
Normal file
2
labels/201404_5483_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.759758 0.325884 0.260484 0.061574
|
||||
0 0.760565 0.393729 0.231452 0.072976
|
||||
2
labels/201404_5484_AI1_page4.txt
Normal file
2
labels/201404_5484_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.314746 0.782678 0.170024 0.046724
|
||||
0 0.714827 0.778689 0.182111 0.046724
|
||||
2
labels/201404_6015_AI1_page4.txt
Normal file
2
labels/201404_6015_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.685012 0.789516 0.233683 0.085470
|
||||
0 0.692667 0.847920 0.213537 0.058689
|
||||
2
labels/201404_6111_AI1_page6.txt
Normal file
2
labels/201404_6111_AI1_page6.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.765189 0.730541 0.234488 0.064387
|
||||
0 0.758340 0.660171 0.230459 0.053561
|
||||
2
labels/201404_6139_AI1_page5.txt
Normal file
2
labels/201404_6139_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.667687 0.705470 0.195810 0.048433
|
||||
0 0.667687 0.649630 0.186140 0.051852
|
||||
2
labels/201404_6168_AI1_page5.txt
Normal file
2
labels/201404_6168_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.734972 0.624843 0.257857 0.062678
|
||||
0 0.749879 0.555897 0.331185 0.077493
|
||||
2
labels/201404_8043_AI3_page4.txt
Normal file
2
labels/201404_8043_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.714021 0.706325 0.193392 0.059259
|
||||
0 0.714424 0.769573 0.207091 0.052422
|
||||
2
labels/201404_8054_AI1_page6.txt
Normal file
2
labels/201404_8054_AI1_page6.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.739404 0.663875 0.202256 0.062108
|
||||
0 0.732151 0.728832 0.178082 0.064387
|
||||
2
labels/201404_8403_AI3_page3.txt
Normal file
2
labels/201404_8403_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.298227 0.764160 0.219178 0.052991
|
||||
0 0.717244 0.770427 0.164384 0.054131
|
||||
2
labels/201501_1609_AI1_page4.txt
Normal file
2
labels/201501_1609_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.561371 0.711003 0.155645 0.054162
|
||||
0 0.559758 0.781129 0.157258 0.043900
|
||||
2
labels/201501_4113_AI2_page3.txt
Normal file
2
labels/201501_4113_AI2_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.679774 0.710029 0.161966 0.051852
|
||||
0 0.676551 0.769573 0.168413 0.044444
|
||||
2
labels/201501_4419_AI2_page3.txt
Normal file
2
labels/201501_4419_AI2_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.308703 0.790370 0.283642 0.073504
|
||||
0 0.734569 0.793789 0.321515 0.074644
|
||||
2
labels/201501_4930_AI1_page5.txt
Normal file
2
labels/201501_4930_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.752297 0.667293 0.221595 0.040456
|
||||
0 0.766801 0.732251 0.245770 0.073504
|
||||
2
labels/201502_1314_AI1_page4.txt
Normal file
2
labels/201502_1314_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.768629 0.633181 0.208871 0.049031
|
||||
0 0.777500 0.697891 0.237903 0.055302
|
||||
2
labels/201502_2061_AI1_page5.txt
Normal file
2
labels/201502_2061_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.731749 0.460456 0.201450 0.055271
|
||||
0 0.735375 0.519145 0.203868 0.057550
|
||||
2
labels/201502_2483_AI1_page4.txt
Normal file
2
labels/201502_2483_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.275262 0.570427 0.240935 0.068946
|
||||
0 0.685012 0.575271 0.248187 0.078632
|
||||
2
labels/201502_3067_AI1_page3.txt
Normal file
2
labels/201502_3067_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.653710 0.674900 0.153226 0.035938
|
||||
0 0.661371 0.727096 0.173387 0.050200
|
||||
2
labels/201502_4128_AI1_page4.txt
Normal file
2
labels/201502_4128_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.321452 0.563377 0.229032 0.050200
|
||||
0 0.722258 0.551398 0.200000 0.047918
|
||||
2
labels/201502_5009_AI1_page4.txt
Normal file
2
labels/201502_5009_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.314343 0.540513 0.191781 0.035328
|
||||
0 0.709992 0.534815 0.201450 0.045584
|
||||
2
labels/201502_6222_AI1_page4.txt
Normal file
2
labels/201502_6222_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.745242 0.688591 0.231452 0.063320
|
||||
0 0.748065 0.761038 0.220968 0.053052
|
||||
2
labels/201502_6569_AI1_page4.txt
Normal file
2
labels/201502_6569_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.760757 0.654188 0.232071 0.074644
|
||||
0 0.739404 0.723989 0.195810 0.062678
|
||||
2
labels/201502_8093_AI1_page5.txt
Normal file
2
labels/201502_8093_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.714827 0.578974 0.215955 0.049573
|
||||
0 0.701128 0.643647 0.219178 0.055840
|
||||
2
labels/201503_1570_AI1_page3.txt
Normal file
2
labels/201503_1570_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.305882 0.761311 0.184529 0.045014
|
||||
0 0.714424 0.762735 0.195810 0.068376
|
||||
2
labels/201503_3516_AI1_page3.txt
Normal file
2
labels/201503_3516_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.765995 0.782678 0.266720 0.066097
|
||||
0 0.775665 0.857892 0.307010 0.076353
|
||||
2
labels/201503_5015_AI1_page3.txt
Normal file
2
labels/201503_5015_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.529919 0.723831 0.158871 0.052452
|
||||
0 0.536371 0.776568 0.133065 0.039339
|
||||
2
labels/201503_6266_AI1_page3.txt
Normal file
2
labels/201503_6266_AI1_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.314343 0.709174 0.164384 0.039886
|
||||
0 0.736583 0.706895 0.209508 0.039886
|
||||
2
labels/201504_1225_AI1_page4.txt
Normal file
2
labels/201504_1225_AI1_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.309508 0.772137 0.162772 0.050712
|
||||
0 0.711604 0.762450 0.178888 0.038177
|
||||
2
labels/201504_1432_AI3_page5.txt
Normal file
2
labels/201504_1432_AI3_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.723871 0.414302 0.188710 0.056410
|
||||
0 0.726694 0.474131 0.208871 0.058689
|
||||
2
labels/201504_1472_AI1_page5.txt
Normal file
2
labels/201504_1472_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.314343 0.641083 0.183723 0.047293
|
||||
0 0.716841 0.643932 0.163578 0.054131
|
||||
2
labels/201504_1528_AI3_page4.txt
Normal file
2
labels/201504_1528_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.319178 0.538803 0.164384 0.052422
|
||||
0 0.724899 0.537094 0.149073 0.043305
|
||||
2
labels/201504_1720_AI1_page5.txt
Normal file
2
labels/201504_1720_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.748670 0.688091 0.256245 0.063818
|
||||
0 0.747865 0.744501 0.238517 0.054701
|
||||
2
labels/201504_1736_AI3_page3.txt
Normal file
2
labels/201504_1736_AI3_page3.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.751088 0.681254 0.215955 0.061538
|
||||
0 0.728122 0.790370 0.186140 0.056410
|
||||
2
labels/201504_2106_AI1_page5.txt
Normal file
2
labels/201504_2106_AI1_page5.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.662984 0.716258 0.175000 0.041072
|
||||
0 0.661371 0.771306 0.171774 0.047347
|
||||
2
labels/201504_2324_AI3_page4.txt
Normal file
2
labels/201504_2324_AI3_page4.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
0 0.712409 0.352194 0.199839 0.052991
|
||||
0 0.713618 0.415726 0.178082 0.056980
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user