-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a6d6d7
commit 07deb65
Showing
1,240 changed files
with
1,142 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,13 @@ version = "0.1.0" | |
description = "FLIR WAAM Helper Functions." | ||
|
||
packages = [ | ||
{ include = "flir_toolbox", from = "src" }, | ||
{ include = "torch_tracking", from = "src" } | ||
{ include = "flir_toolbox", from = "src" } | ||
] | ||
|
||
authors = ["Honglu He <[email protected]>",] | ||
maintainers = ["Honglu He <[email protected]>",] | ||
|
||
include = ["CHANGELOG.md", "LICENSE", "py.typed","torch_tracking/torch.pt"] | ||
include = ["CHANGELOG.md", "LICENSE", "py.typed"] | ||
license = "BSD-3-Clause" | ||
readme = "README.md" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import cv2 | ||
import pickle, sys | ||
import numpy as np | ||
import matplotlib.pyplot as plt | ||
|
||
|
||
|
||
data_dir='../../../recorded_data/' | ||
data_sets=['ER316L/wallbf_70ipm_v7_70ipm_v7/','ER316L/wallbf_150ipm_v15_150ipm_v15/', | ||
'ER316L/trianglebf_100ipm_v10_100ipm_v10','ER316L/cylinderspiral_100ipm_v10/', | ||
'ER316L/streaming/cylinderspiral_T19000/','ER316L/streaming/cylinderspiral_T25000/', | ||
'ER316L/VPD10/cylinderspiral_50ipm_v5','ER316L/VPD10/cylinderspiral_70ipm_v7', | ||
'ER316L/VPD10/cylinderspiral_110ipm_v11','ER316L/VPD10/cylinderspiral_130ipm_v13'] | ||
|
||
output_dir='../../../recorded_data/yolov8/tip/' | ||
|
||
num_images_per_set=10 | ||
img_counts=0 | ||
#radmonly select 10 images from each set | ||
for data_set in data_sets: | ||
with open(data_dir+data_set+'/ir_recording.pickle', 'rb') as file: | ||
ir_recording = pickle.load(file) | ||
#select random frames | ||
idxs=np.random.choice(range(3000,len(ir_recording)), num_images_per_set, replace=False) | ||
for idx in idxs: | ||
ir_torch_tracking=np.rot90(ir_recording[idx], k=-1) | ||
ir_torch_tracking_normalized = ((ir_torch_tracking - np.min(ir_torch_tracking)) / (np.max(ir_torch_tracking) - np.min(ir_torch_tracking))) * 255 | ||
#save image | ||
cv2.imwrite(output_dir+str(img_counts)+'.png', ir_torch_tracking_normalized) | ||
img_counts+=1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import cv2 | ||
import pickle, sys | ||
import numpy as np | ||
import matplotlib.pyplot as plt | ||
|
||
|
||
|
||
data_dir='../../../../recorded_data/' | ||
# data_sets=['ER316L/wallbf_70ipm_v7_70ipm_v7/','ER316L/wallbf_150ipm_v15_150ipm_v15/', | ||
# 'ER316L/trianglebf_100ipm_v10_100ipm_v10','ER316L/cylinderspiral_100ipm_v10/'] | ||
# data_sets=['ER316L/streaming/cylinderspiral_T19000/','ER4043/wallbf_100ipm_v10_120ipm_v12/', | ||
# 'ER4043/wallbf_100ipm_v10_70ipm_v7/','ER4043/wall2bead_w3.0_150ipm_v10_150ipm_v10/'] | ||
# data_sets=['ER4043/wallbf_100ipm_v10_100ipm_v10/', 'ER4043/wallbf_100ipm_v10/',] | ||
data_sets=['ER316L/streaming/cylinderspiral_T25000/'] | ||
output_dir='../../../../recorded_data/yolov8/torch/' | ||
|
||
num_images_per_set=10 | ||
pixel_threshold=1e4 | ||
percentage_threshold=0.5 | ||
img_counts=100 | ||
#radmonly select 10 images from each set | ||
for data_set in data_sets: | ||
with open(data_dir+data_set+'/ir_recording.pickle', 'rb') as file: | ||
ir_recording = pickle.load(file) | ||
#select random frames | ||
idxs=np.random.choice(range(3000,len(ir_recording)), num_images_per_set, replace=False) | ||
for idx in idxs: | ||
ir_torch_tracking=np.rot90(ir_recording[idx], k=-1) | ||
pixel_threshold = max(pixel_threshold, percentage_threshold*np.max(ir_torch_tracking)) | ||
print(pixel_threshold) | ||
ir_torch_tracking[ir_torch_tracking>pixel_threshold]=pixel_threshold | ||
ir_torch_tracking_normalized = ((ir_torch_tracking - np.min(ir_torch_tracking)) / (np.max(ir_torch_tracking) - np.min(ir_torch_tracking))) * 255 | ||
#save image | ||
cv2.imwrite(output_dir+str(img_counts)+'.png', ir_torch_tracking_normalized) | ||
img_counts+=1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import cv2 | ||
import pickle, sys | ||
import numpy as np | ||
import matplotlib.pyplot as plt | ||
|
||
|
||
|
||
data_dir='../../../recorded_data/' | ||
data_sets=['ER316L/wallbf_70ipm_v7_70ipm_v7/','ER316L/wallbf_150ipm_v15_150ipm_v15/', | ||
'ER316L/trianglebf_100ipm_v10_100ipm_v10','ER316L/cylinderspiral_100ipm_v10/', | ||
'ER316L/streaming/cylinderspiral_T19000/','ER316L/streaming/cylinderspiral_T25000/', | ||
'ER316L/VPD10/cylinderspiral_50ipm_v5','ER316L/VPD10/cylinderspiral_70ipm_v7', | ||
'ER316L/VPD10/cylinderspiral_110ipm_v11','ER316L/VPD10/cylinderspiral_130ipm_v13'] | ||
|
||
output_dir='../../../recorded_data/yolov8/tip-wire/' | ||
|
||
num_images_per_set=10 | ||
img_counts=0 | ||
#radmonly select 10 images from each set | ||
for data_set in data_sets: | ||
with open(data_dir+data_set+'/ir_recording.pickle', 'rb') as file: | ||
ir_recording = pickle.load(file) | ||
#select random frames | ||
idxs=np.random.choice(range(3000,len(ir_recording)), num_images_per_set, replace=False) | ||
for idx in idxs: | ||
ir_torch_tracking=np.rot90(ir_recording[idx], k=-1) | ||
pixel_threshold=0.77*np.max(ir_torch_tracking) | ||
ir_torch_tracking[ir_torch_tracking>pixel_threshold]=pixel_threshold | ||
ir_torch_tracking_normalized = ((ir_torch_tracking - np.min(ir_torch_tracking)) / (np.max(ir_torch_tracking) - np.min(ir_torch_tracking))) * 255 | ||
#save image | ||
cv2.imwrite(output_dir+str(img_counts)+'.png', ir_torch_tracking_normalized) | ||
img_counts+=1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
train: ../train/images | ||
val: ../valid/images | ||
test: ../test/images | ||
|
||
nc: 2 | ||
names: ['tip_wire_left', 'tip_wire_right'] | ||
|
||
roboflow: | ||
workspace: torchyolov8 | ||
project: tip_wire_yolov8 | ||
version: 1 | ||
license: CC BY 4.0 | ||
url: https://universe.roboflow.com/torchyolov8/tip_wire_yolov8/dataset/1 |
Binary file added
BIN
+3.23 KB
...tip_wire_yolov8_data/train/images/0_png.rf.371c32f27019ceeceaa662cd92d05a15.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.63 KB
...ip_wire_yolov8_data/train/images/10_png.rf.3b0a9d8625ea0ca494e5c1a5b9f90949.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.44 KB
...ip_wire_yolov8_data/train/images/11_png.rf.5db3dcbdbce094ae22d0be0ec973e5ea.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.55 KB
...ip_wire_yolov8_data/train/images/12_png.rf.977c2934d49cb7080218c9f2f437dcf3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.84 KB
...ip_wire_yolov8_data/train/images/13_png.rf.0fa475dac56d821ca001a7f2cfa35fa9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.64 KB
...ip_wire_yolov8_data/train/images/14_png.rf.3e7913352436af11b5e41f787555825b.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.76 KB
...ip_wire_yolov8_data/train/images/15_png.rf.96e833e30b1e9699f9e3677d312652d0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.65 KB
...ip_wire_yolov8_data/train/images/16_png.rf.74bffd011ced6a981a9ab78338612cbf.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.74 KB
...ip_wire_yolov8_data/train/images/17_png.rf.0eda8d94f6e1a6601a6bcc4a45ac01b0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.75 KB
...ip_wire_yolov8_data/train/images/18_png.rf.e7d5dcbc842b516203f22aa668d6d4de.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.79 KB
...ip_wire_yolov8_data/train/images/19_png.rf.9b09593ead5e355a97a4a8ef7e7c0559.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.9 KB
...tip_wire_yolov8_data/train/images/1_png.rf.7d72a97d9045875bcd37fbe722e7e1c1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.43 KB
...ip_wire_yolov8_data/train/images/20_png.rf.afc6c70974df5d0bb34336211e472f61.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.33 KB
...ip_wire_yolov8_data/train/images/21_png.rf.68809b44edd0f55be7c4fdf42be1af95.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.39 KB
...ip_wire_yolov8_data/train/images/22_png.rf.97dcd373a0b67e0f407ca9013d77a4d9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.32 KB
...ip_wire_yolov8_data/train/images/23_png.rf.dafb32f1d394596f33c27266641d6dbe.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.4 KB
...ip_wire_yolov8_data/train/images/24_png.rf.7e7c71f73f9c53c6b6821cfc20ed28fb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.48 KB
...ip_wire_yolov8_data/train/images/25_png.rf.5a22a17d51cc301b5d23b18c29860284.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.31 KB
...ip_wire_yolov8_data/train/images/26_png.rf.33e2805769879df6aabc364c80ee0af8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.38 KB
...ip_wire_yolov8_data/train/images/27_png.rf.09c423a6ec90e49465d15fa7d98b5f9c.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.49 KB
...ip_wire_yolov8_data/train/images/28_png.rf.52c393af424f2f53815cfac7542dea5e.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.37 KB
...ip_wire_yolov8_data/train/images/29_png.rf.a589b018cbfdcb8ab9693b0bb7525c93.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.49 KB
...tip_wire_yolov8_data/train/images/2_png.rf.538addb679406fe40614e72e1c00e702.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.92 KB
...ip_wire_yolov8_data/train/images/30_png.rf.498c6105ba98f1b58c6f25adc273dab0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.84 KB
...ip_wire_yolov8_data/train/images/31_png.rf.f5a891f5843e2947fbe4f75befd851a5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.84 KB
...ip_wire_yolov8_data/train/images/32_png.rf.09aa14446342a8a3dffa5d6cdc949418.jpg
Oops, something went wrong.
Binary file added
BIN
+3.08 KB
...ip_wire_yolov8_data/train/images/33_png.rf.4d622f686e79adecfd50a58c22e7015a.jpg
Oops, something went wrong.
Binary file added
BIN
+2.83 KB
...ip_wire_yolov8_data/train/images/34_png.rf.2c8e678edbe3451b53bd3243dc8481ba.jpg
Oops, something went wrong.
Binary file added
BIN
+3.14 KB
...ip_wire_yolov8_data/train/images/35_png.rf.08c761f8a0442e53112cbbd9f6549695.jpg
Oops, something went wrong.
Binary file added
BIN
+3.02 KB
...ip_wire_yolov8_data/train/images/36_png.rf.2e4c7c0064298f78be0961e294e02f61.jpg
Oops, something went wrong.
Binary file added
BIN
+3.06 KB
...ip_wire_yolov8_data/train/images/37_png.rf.4f6c6b607026381140e367a17308a35f.jpg
Oops, something went wrong.
Binary file added
BIN
+2.98 KB
...ip_wire_yolov8_data/train/images/38_png.rf.d9dc01c0dccdb1839559ce29933db5b2.jpg
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...ip_wire_yolov8_data/train/images/39_png.rf.99c9efb0b57b0f77269c4f117302febf.jpg
Oops, something went wrong.
Binary file added
BIN
+3.33 KB
...tip_wire_yolov8_data/train/images/3_png.rf.02f963d7627a7e40dd3dc3ae79f9f2a9.jpg
Oops, something went wrong.
Binary file added
BIN
+3.37 KB
...ip_wire_yolov8_data/train/images/40_png.rf.049ee4df89d4d6fa923d2f2c07688c5d.jpg
Oops, something went wrong.
Binary file added
BIN
+3.14 KB
...ip_wire_yolov8_data/train/images/41_png.rf.20e0ced9b9fe105f498cdeefd748b94f.jpg
Oops, something went wrong.
Binary file added
BIN
+3.2 KB
...ip_wire_yolov8_data/train/images/42_png.rf.c50e5699a6e39d95d81065dc3573ba45.jpg
Oops, something went wrong.
Binary file added
BIN
+3.5 KB
...ip_wire_yolov8_data/train/images/43_png.rf.44c7ed0d147013c7919fc6988cdac265.jpg
Oops, something went wrong.
Binary file added
BIN
+3.2 KB
...ip_wire_yolov8_data/train/images/44_png.rf.de9da7de039aaca5d39165a8cb97f0fd.jpg
Oops, something went wrong.
Binary file added
BIN
+3.1 KB
...ip_wire_yolov8_data/train/images/45_png.rf.d3325c2a747cf3611a8352c205b1a883.jpg
Oops, something went wrong.
Binary file added
BIN
+3.3 KB
...ip_wire_yolov8_data/train/images/46_png.rf.27f7ecdb40100d9912fbdaf4fc760158.jpg
Oops, something went wrong.
Binary file added
BIN
+3.2 KB
...ip_wire_yolov8_data/train/images/47_png.rf.3386d92c81c583b60309682d95a11eb1.jpg
Oops, something went wrong.
Binary file added
BIN
+3.31 KB
...ip_wire_yolov8_data/train/images/48_png.rf.a21267d9c92f81075f3da2b19e163959.jpg
Oops, something went wrong.
Binary file added
BIN
+3.19 KB
...ip_wire_yolov8_data/train/images/49_png.rf.1f9ac73baef7814f26ae958c74b784b3.jpg
Oops, something went wrong.
Binary file added
BIN
+3.62 KB
...tip_wire_yolov8_data/train/images/4_png.rf.18dca13bd740a2cdaf1a3c7441c48aa5.jpg
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
...ip_wire_yolov8_data/train/images/50_png.rf.787549e7fd81c38019ba7f5609281cb2.jpg
Oops, something went wrong.
Binary file added
BIN
+3.49 KB
...ip_wire_yolov8_data/train/images/51_png.rf.b567ac9ebd321fc7ad006f7b0b0ffdbe.jpg
Oops, something went wrong.
Binary file added
BIN
+3.78 KB
...ip_wire_yolov8_data/train/images/52_png.rf.5382e0f413f6328da7bb6eb39fb1300a.jpg
Oops, something went wrong.
Binary file added
BIN
+3.61 KB
...ip_wire_yolov8_data/train/images/53_png.rf.758644d5d26499545b87528e579ea22e.jpg
Oops, something went wrong.
Binary file added
BIN
+3.76 KB
...ip_wire_yolov8_data/train/images/54_png.rf.8193f2e674ef907ebe4b10f92f386b85.jpg
Oops, something went wrong.
Binary file added
BIN
+3.52 KB
...ip_wire_yolov8_data/train/images/55_png.rf.622d278e006078dc08cf2c0cd7875930.jpg
Oops, something went wrong.
Binary file added
BIN
+3.81 KB
...ip_wire_yolov8_data/train/images/56_png.rf.7110b3440f57d51f77a8b0afe177284d.jpg
Oops, something went wrong.
Binary file added
BIN
+3.79 KB
...ip_wire_yolov8_data/train/images/57_png.rf.fec715f5e6dce5d789bfbf1af1b3f8c8.jpg
Oops, something went wrong.
Binary file added
BIN
+3.75 KB
...ip_wire_yolov8_data/train/images/58_png.rf.1771ba986da36224e68566686d12139f.jpg
Oops, something went wrong.
Binary file added
BIN
+3.52 KB
...ip_wire_yolov8_data/train/images/59_png.rf.ece28247213d67493321f2abc3741570.jpg
Oops, something went wrong.
Binary file added
BIN
+3.3 KB
...tip_wire_yolov8_data/train/images/5_png.rf.3ae750e1abccc011487944849e63031f.jpg
Oops, something went wrong.
Binary file added
BIN
+3.38 KB
...ip_wire_yolov8_data/train/images/60_png.rf.e8f83c2450373c908aaca2172074e7ff.jpg
Oops, something went wrong.
Binary file added
BIN
+3.03 KB
...ip_wire_yolov8_data/train/images/61_png.rf.005775a7ab38e8a9ddf464d1c87cbed7.jpg
Oops, something went wrong.
Binary file added
BIN
+3.2 KB
...ip_wire_yolov8_data/train/images/62_png.rf.6e77210cdc9cfb2e40e2900639c1b69f.jpg
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...ip_wire_yolov8_data/train/images/63_png.rf.3b624cc2a320b43a9e48df5ff4f89190.jpg
Oops, something went wrong.
Binary file added
BIN
+3.21 KB
...ip_wire_yolov8_data/train/images/64_png.rf.5a2e4a3cd1e39b45c245431adab1a146.jpg
Oops, something went wrong.
Binary file added
BIN
+3.05 KB
...ip_wire_yolov8_data/train/images/65_png.rf.1c55d60aa0412e71c0b5a57b02ffcfbe.jpg
Oops, something went wrong.
Binary file added
BIN
+3.13 KB
...ip_wire_yolov8_data/train/images/66_png.rf.ebdd7fbc8c3d91611176ed3476dc9d01.jpg
Oops, something went wrong.
Binary file added
BIN
+3.02 KB
...ip_wire_yolov8_data/train/images/67_png.rf.fec30d46c1c69e884ac0b952ff122786.jpg
Oops, something went wrong.
Binary file added
BIN
+3.03 KB
...ip_wire_yolov8_data/train/images/68_png.rf.ca0410faef39f71c7e5cf9dfe1a5b173.jpg
Oops, something went wrong.
Binary file added
BIN
+3.42 KB
...ip_wire_yolov8_data/train/images/69_png.rf.c971ecb748e0583070a52a0d00b7614c.jpg
Oops, something went wrong.
Binary file added
BIN
+3.5 KB
...tip_wire_yolov8_data/train/images/6_png.rf.eaf44565ebeae0c897ba3a9f7ff2be5d.jpg
Oops, something went wrong.
Binary file added
BIN
+3.3 KB
...ip_wire_yolov8_data/train/images/70_png.rf.118f007748a6697b665714e99cf2e269.jpg
Oops, something went wrong.
Binary file added
BIN
+3.37 KB
...ip_wire_yolov8_data/train/images/71_png.rf.cc88cecf7166f703e3635b6e0837c6d1.jpg
Oops, something went wrong.
Binary file added
BIN
+3.29 KB
...ip_wire_yolov8_data/train/images/72_png.rf.d450f6affaeb6368c00b9d7c24941be3.jpg
Oops, something went wrong.
Binary file added
BIN
+3.34 KB
...ip_wire_yolov8_data/train/images/73_png.rf.8753fc46d9888b17297944124ca9a1e1.jpg
Oops, something went wrong.
Binary file added
BIN
+3.4 KB
...ip_wire_yolov8_data/train/images/74_png.rf.e7664caf1e2bbae7b32590c4178b50f7.jpg
Oops, something went wrong.
Binary file added
BIN
+3.27 KB
...ip_wire_yolov8_data/train/images/75_png.rf.958fb01b5c1a5b7a50e7c28c5eefd47a.jpg
Oops, something went wrong.
Binary file added
BIN
+3.37 KB
...ip_wire_yolov8_data/train/images/76_png.rf.95b901a1356fbe6b3b6e452b8be5a7e0.jpg
Oops, something went wrong.
Binary file added
BIN
+3.27 KB
...ip_wire_yolov8_data/train/images/77_png.rf.1db05d302b265f86a5abbf96f2da57d6.jpg
Oops, something went wrong.
Binary file added
BIN
+3.34 KB
...ip_wire_yolov8_data/train/images/78_png.rf.b3725ef14f11f3cb27e1042afb099999.jpg
Oops, something went wrong.
Binary file added
BIN
+3.38 KB
...ip_wire_yolov8_data/train/images/79_png.rf.efe1ff2f9e543677a793c737e774fee6.jpg
Oops, something went wrong.
Binary file added
BIN
+3.46 KB
...tip_wire_yolov8_data/train/images/7_png.rf.9b42ccacd66ce6d007e15d8829c59393.jpg
Oops, something went wrong.
Binary file added
BIN
+3.74 KB
...ip_wire_yolov8_data/train/images/80_png.rf.04ed8411cb0028a61d5f307a0d9ce664.jpg
Oops, something went wrong.
Binary file added
BIN
+3.6 KB
...ip_wire_yolov8_data/train/images/81_png.rf.4cbe1f683fab31cde93ae143bda1bdcb.jpg
Oops, something went wrong.
Binary file added
BIN
+3.6 KB
...ip_wire_yolov8_data/train/images/82_png.rf.9b02eb4575a8f5f373bddde287fbb719.jpg
Oops, something went wrong.
Binary file added
BIN
+3.85 KB
...ip_wire_yolov8_data/train/images/83_png.rf.a0fac33076eef61603592906c625610c.jpg
Oops, something went wrong.
Binary file added
BIN
+3.57 KB
...ip_wire_yolov8_data/train/images/84_png.rf.804fecfda555664b7cd2b38b2086fabf.jpg
Oops, something went wrong.
Binary file added
BIN
+3.54 KB
...ip_wire_yolov8_data/train/images/85_png.rf.2097f654211bafb126386ba77175303a.jpg
Oops, something went wrong.
Binary file added
BIN
+3.6 KB
...ip_wire_yolov8_data/train/images/86_png.rf.c3ef84bbfb2f1a1db3543a569d691e2a.jpg
Oops, something went wrong.
Binary file added
BIN
+3.78 KB
...ip_wire_yolov8_data/train/images/87_png.rf.e055bf1fabe69fa07ce051dae6546457.jpg
Oops, something went wrong.
Binary file added
BIN
+3.56 KB
...ip_wire_yolov8_data/train/images/88_png.rf.e4cab3ff5a7e902d34ac54d6ab4a71e9.jpg
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
...ip_wire_yolov8_data/train/images/89_png.rf.23c14def2ee1df06f7e0760175e349b7.jpg
Oops, something went wrong.
Binary file added
BIN
+3.21 KB
...tip_wire_yolov8_data/train/images/8_png.rf.da7a0eb91e0734d1a4363ebad2b09f17.jpg
Oops, something went wrong.
Binary file added
BIN
+3.83 KB
...ip_wire_yolov8_data/train/images/90_png.rf.8fd490d1d73bca9e4f2a31c6eeb41b4c.jpg
Oops, something went wrong.
Binary file added
BIN
+3.52 KB
...ip_wire_yolov8_data/train/images/91_png.rf.2407dedd9b6fbe5bb190c2642a1941cb.jpg
Oops, something went wrong.
Binary file added
BIN
+3.56 KB
...ip_wire_yolov8_data/train/images/92_png.rf.53f86d7153e498b93ea06cd40b628584.jpg
Oops, something went wrong.
Binary file added
BIN
+3.78 KB
...ip_wire_yolov8_data/train/images/93_png.rf.f5988e50cfa62e4cd32670ae25d2c3e2.jpg
Oops, something went wrong.
Binary file added
BIN
+3.82 KB
...ip_wire_yolov8_data/train/images/94_png.rf.56f08b0951421f6f670b8cb4381540c4.jpg
Oops, something went wrong.
Binary file added
BIN
+3.85 KB
...ip_wire_yolov8_data/train/images/95_png.rf.26d806ce5fedc7f7d8e09ce6cd3ff758.jpg
Oops, something went wrong.
Binary file added
BIN
+3.88 KB
...ip_wire_yolov8_data/train/images/96_png.rf.22e4518b40269f75ce40119a0803fcdf.jpg
Oops, something went wrong.
Binary file added
BIN
+3.53 KB
...ip_wire_yolov8_data/train/images/97_png.rf.59eddc0fc979bc7b51a3420845b23fc6.jpg
Oops, something went wrong.
Binary file added
BIN
+3.77 KB
...ip_wire_yolov8_data/train/images/98_png.rf.ca589cc34e49f3bf6c48f030fd680e25.jpg
Oops, something went wrong.
Binary file added
BIN
+3.87 KB
...ip_wire_yolov8_data/train/images/99_png.rf.b784b2f5aaa99c7d39ac3124bf3b7313.jpg
Oops, something went wrong.
Binary file added
BIN
+3.57 KB
...tip_wire_yolov8_data/train/images/9_png.rf.2239119dbf80b227a67f28899a7dac6e.jpg
Oops, something went wrong.
Binary file not shown.
2 changes: 2 additions & 0 deletions
2
.../datasets/tip_wire_yolov8_data/train/labels/0_png.rf.371c32f27019ceeceaa662cd92d05a15.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.12904166666666667 0.50953125 0.06395833333333333 0.07684375 | ||
1 0.17454166666666668 0.50984375 0.05358333333333333 0.077 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/10_png.rf.3b0a9d8625ea0ca494e5c1a5b9f90949.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.35112499999999996 0.48940625000000004 0.08208333333333333 0.091625 | ||
1 0.40854166666666664 0.48928125 0.06775 0.09153125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/11_png.rf.5db3dcbdbce094ae22d0be0ec973e5ea.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3238333333333333 0.52815625 0.07733333333333332 0.08090625 | ||
1 0.37825000000000003 0.5278125 0.06083333333333333 0.08103125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/12_png.rf.977c2934d49cb7080218c9f2f437dcf3.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.24308333333333335 0.51084375 0.07570833333333334 0.08690624999999999 | ||
1 0.297 0.5108125 0.069125 0.08740624999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/13_png.rf.0fa475dac56d821ca001a7f2cfa35fa9.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.10112499999999999 0.47768750000000004 0.08604166666666666 0.0926875 | ||
1 0.15883333333333333 0.47775 0.06354166666666666 0.09343749999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/14_png.rf.3e7913352436af11b5e41f787555825b.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.368625 0.4944375 0.08512499999999999 0.0860625 | ||
1 0.43029166666666663 0.49431250000000004 0.07375 0.08746875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/15_png.rf.96e833e30b1e9699f9e3677d312652d0.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.39445833333333336 0.48521875000000003 0.077 0.0843125 | ||
1 0.45108333333333334 0.48490625 0.07012499999999999 0.08384375 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/16_png.rf.74bffd011ced6a981a9ab78338612cbf.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.35683333333333334 0.4944375 0.08375 0.088125 | ||
1 0.4140833333333333 0.49421875000000004 0.06779166666666667 0.08840624999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/17_png.rf.0eda8d94f6e1a6601a6bcc4a45ac01b0.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.691125 0.488125 0.08008333333333333 0.091375 | ||
1 0.7505416666666667 0.48825 0.068375 0.09165625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/18_png.rf.e7d5dcbc842b516203f22aa668d6d4de.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.20433333333333334 0.48606249999999995 0.08791666666666667 0.08909375 | ||
1 0.2625416666666667 0.48603125 0.06366666666666666 0.09015625000000001 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/19_png.rf.9b09593ead5e355a97a4a8ef7e7c0559.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.27395833333333336 0.4803125 0.079375 0.087625 | ||
1 0.33345833333333336 0.4796875 0.06720833333333333 0.0873125 |
2 changes: 2 additions & 0 deletions
2
.../datasets/tip_wire_yolov8_data/train/labels/1_png.rf.7d72a97d9045875bcd37fbe722e7e1c1.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.29129166666666667 0.548375 0.06379166666666666 0.07171875 | ||
1 0.33137500000000003 0.547875 0.048374999999999994 0.0718125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/20_png.rf.afc6c70974df5d0bb34336211e472f61.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.5026666666666667 0.574125 0.07775 0.0655625 | ||
1 0.5559166666666666 0.574125 0.057 0.06728125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/21_png.rf.68809b44edd0f55be7c4fdf42be1af95.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.622625 0.6083125 0.07358333333333333 0.0749375 | ||
1 0.6748333333333334 0.6074375 0.06133333333333334 0.07568749999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/22_png.rf.97dcd373a0b67e0f407ca9013d77a4d9.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.25533333333333336 0.51025 0.08266666666666667 0.08128125 | ||
1 0.31354166666666666 0.5103125000000001 0.06579166666666666 0.08140625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/23_png.rf.dafb32f1d394596f33c27266641d6dbe.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.30366666666666664 0.5075624999999999 0.07891666666666668 0.07828125 | ||
1 0.36166666666666664 0.5076562499999999 0.06883333333333333 0.0801875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/24_png.rf.7e7c71f73f9c53c6b6821cfc20ed28fb.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3869166666666667 0.5989687499999999 0.07795833333333334 0.067 | ||
1 0.442375 0.5988749999999999 0.06254166666666666 0.06778125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/25_png.rf.5a22a17d51cc301b5d23b18c29860284.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.5024166666666666 0.5403125 0.07716666666666666 0.07121875 | ||
1 0.5575416666666667 0.5404687499999999 0.06420833333333334 0.07115625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/26_png.rf.33e2805769879df6aabc364c80ee0af8.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.4358333333333333 0.6039375 0.08029166666666666 0.07421875 | ||
1 0.49262500000000004 0.60371875 0.063375 0.07409375 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/27_png.rf.09c423a6ec90e49465d15fa7d98b5f9c.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3854166666666667 0.522 0.079625 0.0811875 | ||
1 0.44208333333333333 0.52240625 0.06204166666666667 0.08128125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/28_png.rf.52c393af424f2f53815cfac7542dea5e.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.5316666666666666 0.5379375 0.0805 0.075125 | ||
1 0.5920416666666667 0.5378437500000001 0.07216666666666667 0.07503125000000001 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/29_png.rf.a589b018cbfdcb8ab9693b0bb7525c93.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
1 0.4845 0.4988125 0.06254166666666666 0.07240625 | ||
0 0.42933333333333334 0.49906249999999996 0.07445833333333333 0.07240625 |
2 changes: 2 additions & 0 deletions
2
.../datasets/tip_wire_yolov8_data/train/labels/2_png.rf.538addb679406fe40614e72e1c00e702.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.13933333333333334 0.47424999999999995 0.053125 0.06984375000000001 | ||
1 0.17883333333333334 0.47384375 0.052333333333333336 0.07065625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/30_png.rf.498c6105ba98f1b58c6f25adc273dab0.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.40029166666666666 0.60646875 0.0775 0.09625 | ||
1 0.4533333333333333 0.60646875 0.05670833333333333 0.09684374999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/31_png.rf.f5a891f5843e2947fbe4f75befd851a5.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.40354166666666663 0.6285624999999999 0.07079166666666666 0.09590625 | ||
1 0.4532083333333333 0.62840625 0.055125 0.0970625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/32_png.rf.09aa14446342a8a3dffa5d6cdc949418.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.4015 0.6238125 0.07395833333333333 0.09184375 | ||
1 0.4514583333333333 0.62384375 0.051083333333333335 0.09284375 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/33_png.rf.4d622f686e79adecfd50a58c22e7015a.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3973333333333333 0.5621562499999999 0.08 0.0891875 | ||
1 0.455 0.56134375 0.063 0.0916875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/34_png.rf.2c8e678edbe3451b53bd3243dc8481ba.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.399875 0.62384375 0.07816666666666668 0.09090625 | ||
1 0.4548333333333333 0.62325 0.05529166666666666 0.09278125000000001 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/35_png.rf.08c761f8a0442e53112cbbd9f6549695.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3964166666666667 0.534875 0.08029166666666666 0.08340625 | ||
1 0.4560416666666667 0.53403125 0.06704166666666667 0.08878125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/36_png.rf.2e4c7c0064298f78be0961e294e02f61.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3955 0.53615625 0.08025 0.08440625 | ||
1 0.45279166666666665 0.5350312500000001 0.059291666666666666 0.089 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/37_png.rf.4f6c6b607026381140e367a17308a35f.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3983333333333333 0.5223125 0.07483333333333334 0.08265625 | ||
1 0.4547916666666667 0.5199374999999999 0.063375 0.08778125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/38_png.rf.d9dc01c0dccdb1839559ce29933db5b2.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.39475 0.553 0.08329166666666667 0.083875 | ||
1 0.45545833333333335 0.5518125 0.06533333333333333 0.08884375 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/39_png.rf.99c9efb0b57b0f77269c4f117302febf.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.396375 0.51909375 0.07970833333333333 0.08009374999999999 | ||
1 0.4520416666666666 0.518375 0.05854166666666667 0.083125 |
2 changes: 2 additions & 0 deletions
2
.../datasets/tip_wire_yolov8_data/train/labels/3_png.rf.02f963d7627a7e40dd3dc3ae79f9f2a9.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.32745833333333335 0.50409375 0.07383333333333333 0.08453125 | ||
1 0.3842916666666667 0.50409375 0.06816666666666667 0.0858125 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/40_png.rf.049ee4df89d4d6fa923d2f2c07688c5d.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.39566666666666667 0.48390625 0.08520833333333333 0.081875 | ||
1 0.45895833333333336 0.48134375 0.062625 0.08896875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/41_png.rf.20e0ced9b9fe105f498cdeefd748b94f.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3970416666666667 0.47387499999999994 0.08462499999999999 0.07625 | ||
1 0.45766666666666667 0.47253125 0.060250000000000005 0.08009374999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/42_png.rf.c50e5699a6e39d95d81065dc3573ba45.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
1 0.45583333333333337 0.4798125 0.059083333333333335 0.08453125 | ||
0 0.3937083333333333 0.47890625 0.08583333333333334 0.08512499999999999 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/43_png.rf.44c7ed0d147013c7919fc6988cdac265.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.39775 0.5039687500000001 0.087 0.09375 | ||
1 0.4563333333333333 0.50296875 0.056916666666666664 0.097875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/44_png.rf.de9da7de039aaca5d39165a8cb97f0fd.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.39479166666666665 0.426 0.08741666666666667 0.0805 | ||
1 0.45408333333333334 0.42559375 0.06158333333333333 0.0814375 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/45_png.rf.d3325c2a747cf3611a8352c205b1a883.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.39466666666666667 0.42018750000000005 0.08720833333333333 0.08449999999999999 | ||
1 0.453625 0.41974999999999996 0.05754166666666667 0.08571875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/46_png.rf.27f7ecdb40100d9912fbdaf4fc760158.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3958333333333333 0.49034374999999997 0.0895 0.0883125 | ||
1 0.45658333333333334 0.48862500000000003 0.06120833333333333 0.09490625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/47_png.rf.3386d92c81c583b60309682d95a11eb1.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3958333333333333 0.47565625 0.08629166666666667 0.07965625 | ||
1 0.4545 0.47540625 0.058708333333333335 0.08115625 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/48_png.rf.a21267d9c92f81075f3da2b19e163959.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.3964166666666667 0.47665625 0.08583333333333334 0.07843750000000001 | ||
1 0.4517083333333333 0.47696875 0.05358333333333333 0.07875 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/49_png.rf.1f9ac73baef7814f26ae958c74b784b3.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.395625 0.4415 0.08741666666666667 0.07843750000000001 | ||
1 0.45387500000000003 0.441875 0.05875 0.07890625 |
2 changes: 2 additions & 0 deletions
2
.../datasets/tip_wire_yolov8_data/train/labels/4_png.rf.18dca13bd740a2cdaf1a3c7441c48aa5.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.4754583333333333 0.45131249999999995 0.07395833333333333 0.07740625 | ||
1 0.5295 0.45025000000000004 0.062625 0.08246875000000001 |
2 changes: 2 additions & 0 deletions
2
...datasets/tip_wire_yolov8_data/train/labels/50_png.rf.787549e7fd81c38019ba7f5609281cb2.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 0.395625 0.52025 0.08424999999999999 0.06221875 | ||
1 0.45408333333333334 0.52025 0.06220833333333333 0.0631875 |
Oops, something went wrong.