diff --git a/.gitignore b/.gitignore index aa71e14..349f315 100644 --- a/.gitignore +++ b/.gitignore @@ -128,15 +128,20 @@ dmypy.json # node node_modules/ *.tar +*init.pt +*best.pt +*.pt + +/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export.zip /test # /yolov7-setup # /yolov7-tracker-example -/yolov7-tracker-example/cfg/training/yolov7x_dataset1_2024_06_19.yaml -/yolov7-tracker-example/data/dataset1_2024_06_19 -/yolov7-tracker-example/runs -/yolov7-tracker-example/tracker/config_files/dataset1_2024_06_19.yaml -/yolov7-tracker-example/wandb -/yolov7-tracker-example/info_SF.txt -/yolov7-tracker-example/400m.mp4 \ No newline at end of file +# /yolov7-tracker-example/cfg/training/yolov7x_dataset1_2024_06_19.yaml +# /yolov7-tracker-example/data/dataset1_2024_06_19 +# /yolov7-tracker-example/runs +# /yolov7-tracker-example/tracker/config_files/dataset1_2024_06_19.yaml +# /yolov7-tracker-example/wandb +# /yolov7-tracker-example/info_SF.txt +# /yolov7-tracker-example/400m.mp4 \ No newline at end of file diff --git a/yolov7-tracker-example/400m.mp4 b/yolov7-tracker-example/400m.mp4 new file mode 100644 index 0000000..9bcdd10 Binary files /dev/null and b/yolov7-tracker-example/400m.mp4 differ diff --git a/yolov7-tracker-example/cfg/training/yolov7x_dataset1_2024_06_19.yaml b/yolov7-tracker-example/cfg/training/yolov7x_dataset1_2024_06_19.yaml new file mode 100644 index 0000000..d037ead --- /dev/null +++ b/yolov7-tracker-example/cfg/training/yolov7x_dataset1_2024_06_19.yaml @@ -0,0 +1,156 @@ +# parameters +nc: 1 # number of classes +depth_multiple: 1.0 # model depth multiple +width_multiple: 1.0 # layer channel multiple + +# anchors +anchors: + - [15,37, 18,54, 22,54] # P3/8 + - [28,70, 28,85, 31,117] # P4/16 + - [38,119, 41,152, 60,186] # P5/32 + +# yolov7 backbone +backbone: + # [from, number, module, args] + [[-1, 1, Conv, [40, 3, 1]], # 0 + + [-1, 1, Conv, [80, 3, 2]], # 1-P1/2 + [-1, 1, Conv, [80, 3, 1]], + + [-1, 1, Conv, [160, 3, 2]], # 3-P2/4 + [-1, 1, Conv, [64, 1, 1]], + [-2, 1, Conv, [64, 1, 1]], + [-1, 1, Conv, [64, 3, 1]], + [-1, 1, Conv, [64, 3, 1]], + [-1, 1, Conv, [64, 3, 1]], + [-1, 1, Conv, [64, 3, 1]], + [-1, 1, Conv, [64, 3, 1]], + [-1, 1, Conv, [64, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [320, 1, 1]], # 13 + + [-1, 1, MP, []], + [-1, 1, Conv, [160, 1, 1]], + [-3, 1, Conv, [160, 1, 1]], + [-1, 1, Conv, [160, 3, 2]], + [[-1, -3], 1, Concat, [1]], # 18-P3/8 + [-1, 1, Conv, [128, 1, 1]], + [-2, 1, Conv, [128, 1, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [640, 1, 1]], # 28 + + [-1, 1, MP, []], + [-1, 1, Conv, [320, 1, 1]], + [-3, 1, Conv, [320, 1, 1]], + [-1, 1, Conv, [320, 3, 2]], + [[-1, -3], 1, Concat, [1]], # 33-P4/16 + [-1, 1, Conv, [256, 1, 1]], + [-2, 1, Conv, [256, 1, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [1280, 1, 1]], # 43 + + [-1, 1, MP, []], + [-1, 1, Conv, [640, 1, 1]], + [-3, 1, Conv, [640, 1, 1]], + [-1, 1, Conv, [640, 3, 2]], + [[-1, -3], 1, Concat, [1]], # 48-P5/32 + [-1, 1, Conv, [256, 1, 1]], + [-2, 1, Conv, [256, 1, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [1280, 1, 1]], # 58 + ] + +# yolov7 head +head: + [[-1, 1, SPPCSPC, [640]], # 59 + + [-1, 1, Conv, [320, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [43, 1, Conv, [320, 1, 1]], # route backbone P4 + [[-1, -2], 1, Concat, [1]], + + [-1, 1, Conv, [256, 1, 1]], + [-2, 1, Conv, [256, 1, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [320, 1, 1]], # 73 + + [-1, 1, Conv, [160, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [28, 1, Conv, [160, 1, 1]], # route backbone P3 + [[-1, -2], 1, Concat, [1]], + + [-1, 1, Conv, [128, 1, 1]], + [-2, 1, Conv, [128, 1, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [-1, 1, Conv, [128, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [160, 1, 1]], # 87 + + [-1, 1, MP, []], + [-1, 1, Conv, [160, 1, 1]], + [-3, 1, Conv, [160, 1, 1]], + [-1, 1, Conv, [160, 3, 2]], + [[-1, -3, 73], 1, Concat, [1]], + + [-1, 1, Conv, [256, 1, 1]], + [-2, 1, Conv, [256, 1, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [-1, 1, Conv, [256, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [320, 1, 1]], # 102 + + [-1, 1, MP, []], + [-1, 1, Conv, [320, 1, 1]], + [-3, 1, Conv, [320, 1, 1]], + [-1, 1, Conv, [320, 3, 2]], + [[-1, -3, 59], 1, Concat, [1]], + + [-1, 1, Conv, [512, 1, 1]], + [-2, 1, Conv, [512, 1, 1]], + [-1, 1, Conv, [512, 3, 1]], + [-1, 1, Conv, [512, 3, 1]], + [-1, 1, Conv, [512, 3, 1]], + [-1, 1, Conv, [512, 3, 1]], + [-1, 1, Conv, [512, 3, 1]], + [-1, 1, Conv, [512, 3, 1]], + [[-1, -3, -5, -7, -8], 1, Concat, [1]], + [-1, 1, Conv, [640, 1, 1]], # 117 + + [87, 1, Conv, [320, 3, 1]], + [102, 1, Conv, [640, 3, 1]], + [117, 1, Conv, [1280, 3, 1]], + + [[118,119,120], 1, IDetect, [nc, anchors]], # Detect(P3, P4, P5) + ] diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/YOLOV_BDD_Anchors_1280.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/YOLOV_BDD_Anchors_1280.txt new file mode 100644 index 0000000..48a8616 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/YOLOV_BDD_Anchors_1280.txt @@ -0,0 +1,9 @@ +[[ 15. 37.] + [ 18. 54.] + [ 22. 54.] + [ 28. 70.] + [ 28. 85.] + [ 31. 117.] + [ 38. 119.] + [ 41. 152.] + [ 60. 186.]] \ No newline at end of file diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/YOLOV_BDD_Anchors_640.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/YOLOV_BDD_Anchors_640.txt new file mode 100644 index 0000000..c10fbe1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/YOLOV_BDD_Anchors_640.txt @@ -0,0 +1,9 @@ +[[ 8. 19.] + [ 9. 27.] + [11. 27.] + [14. 35.] + [14. 44.] + [16. 60.] + [19. 60.] + [21. 78.] + [30. 94.]] \ No newline at end of file diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/boites.png b/yolov7-tracker-example/data/dataset1_2024_06_19/boites.png new file mode 100644 index 0000000..2776ccd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/boites.png differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/compute_yolov3_anchors.py b/yolov7-tracker-example/data/dataset1_2024_06_19/compute_yolov3_anchors.py new file mode 100644 index 0000000..cba45e0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/compute_yolov3_anchors.py @@ -0,0 +1,126 @@ +import json +import os, sys +import math +import matplotlib.pyplot as plt +import numpy as np +import seaborn as sns; sns.set() # for plot styling +from PIL import Image + +# os.chdir("/media/deniz/02B89600B895F301/BBD100K") +# train_path = "data/labels/train/bdd100k_labels_images_train.json" +# +# with open(train_path,"r") as ftr: +# trlabel = json.load(ftr) +# +# BBDlabeldict = {"bike":0, +# "bus":1, +# "car":2, +# "motor":3, +# "person":4, +# "rider":5, +# "traffic light":6, +# "traffic sign":7, +# "train":8, +# "truck":9, +# "drivable area":[], +# "lane":[]} + +# BBDlabeldict = {"bacterie":0} +# imgsize = 256 +# +# images_path = "data/bacteries/images/train_and_test1" +# # images_path = "data/poulets/images/train_and_test1" + +imgsize = int(input("Image size for train and run? ")) +print("=> imgsize =",imgsize) +# imgsize = 256 + +BBDlabeldict = {"runner":0} + +datasetpath = '/Users/noham/Documents/GitHub/Stage/2024/test/yolov7-tracker/data/dataset2fps/' +images_path = datasetpath+"images" +labels_path = datasetpath+"labels" + +filenames = sorted(os.listdir(images_path)) +print("Nb d'images =",len(filenames)) +w,h = [] , [] +for i,file in enumerate(filenames): + #print(file) + try: + # if True: + im = Image.open(images_path+"/"+file) + img_width = im.width + img_height = im.height + #print(img_width,img_height) + fo = open(images_path.replace("images","labels")+"/"+file.replace("jpg","txt"), "r+") + lines = fo.readlines() + for line in lines: + a = np.array(line.split(" ")).astype(float) + w.append(a[3]*img_width) + h.append(a[4]*img_height) + if (a[3]*img_height<0.001) or (a[4]*img_height<0.001): + print("!! ATTENTION : boite trop petite dans le fichier ",file, "=> il faut vérifier et supprimer la ligne dans le fichier label au format txt !!") + except: + pass +w=np.asarray(w)#+0.001*(np.random.random((len(w),)) - 0.5) +h=np.asarray(h)#+0.001*(np.random.random((len(w),)) - 0.5) +print("h => min =",h.min()," max =",h.max()) +print("w => min =",w.min()," max =",h.max()) +print("Nb objets entourés =",len(h)) + +# sys.exit() +# for ind1 in range(len(trlabel)): +# for ind2 in range(len(trlabel[ind1]["labels"])): +# try: +# a=trlabel[ind1]["labels"][ind2]["box2d"] #traffic sign +# x1,y1,x2,y2 = list(a.values()) +# width = abs(x1-x2) +# height = abs(y1-y2) +# w.append(width) +# h.append(height) +# except: +# pass +# w=np.asarray(w) +# h=np.asarray(h) + +x=[w,h] +x=np.asarray(x) +x=x.transpose() +########################################## K- Means +########################################## + +from sklearn.cluster import KMeans +kmeans3 = KMeans(n_clusters=9) +kmeans3.fit(x) +y_kmeans3 = kmeans3.predict(x) + +########################################## +centers3 = kmeans3.cluster_centers_ + +yolo_anchor_average=[] +for ind in range (9): + yolo_anchor_average.append(np.mean(x[y_kmeans3==ind],axis=0)) + +yolo_anchor_average=np.array(yolo_anchor_average) + +plt.scatter(x[:, 0], x[:, 1], c=y_kmeans3, s=2, cmap='viridis') +plt.scatter(yolo_anchor_average[:, 0], yolo_anchor_average[:, 1], c='red', s=50); +yoloV3anchors = yolo_anchor_average +yoloV3anchors[:, 0] =yolo_anchor_average[:, 0] /1920 *imgsize +yoloV3anchors[:, 1] =yolo_anchor_average[:, 1] /1056 *imgsize +yoloV3anchors = np.rint(yoloV3anchors) +fig, ax = plt.subplots() +for ind in range(9): + rectangle= plt.Rectangle((0.5*imgsize-yoloV3anchors[ind,0]/2,0.5*imgsize-yoloV3anchors[ind,1]/2), yoloV3anchors[ind,0],yoloV3anchors[ind,1] , fc='b',edgecolor='b',fill = None) + ax.add_patch(rectangle) +ax.set_aspect(1.0) +plt.axis([0,imgsize,0,imgsize]) +plt.savefig("boites.png",dpi=150) +plt.show() + +yoloV3anchors.sort(axis=0) +print("Your custom anchor boxes are {}".format(yoloV3anchors)) + +F = open(datasetpath+"YOLOV_BDD_Anchors_"+str(imgsize)+".txt", "w") +F.write("{}".format(yoloV3anchors)) +F.close() diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/dataset.yaml b/yolov7-tracker-example/data/dataset1_2024_06_19/dataset.yaml new file mode 100644 index 0000000..5776a25 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/dataset.yaml @@ -0,0 +1,4 @@ +train: data/dataset1_2024_06_19/liste_images.txt +val: data/dataset1_2024_06_19/liste_images.txt +nc: 1 +names: ['coureur'] diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000000.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000000.jpg new file mode 100644 index 0000000..f6c11b5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000000.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000001.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000001.jpg new file mode 100644 index 0000000..0e5f321 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000001.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000002.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000002.jpg new file mode 100644 index 0000000..7b187ed Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000002.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000003.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000003.jpg new file mode 100644 index 0000000..368cc00 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000003.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000004.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000004.jpg new file mode 100644 index 0000000..c1bf54c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000004.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000005.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000005.jpg new file mode 100644 index 0000000..27c7583 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000005.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000006.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000006.jpg new file mode 100644 index 0000000..8fabae1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000006.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000007.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000007.jpg new file mode 100644 index 0000000..9fd6539 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000007.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000008.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000008.jpg new file mode 100644 index 0000000..867c9af Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000008.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000009.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000009.jpg new file mode 100644 index 0000000..e37094b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000009.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000010.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000010.jpg new file mode 100644 index 0000000..beab281 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000010.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000011.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000011.jpg new file mode 100644 index 0000000..5b6c7f3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000011.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000012.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000012.jpg new file mode 100644 index 0000000..1abac15 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000012.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000013.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000013.jpg new file mode 100644 index 0000000..c5ff59b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000013.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000014.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000014.jpg new file mode 100644 index 0000000..a4ce0ba Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000014.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000015.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000015.jpg new file mode 100644 index 0000000..5c6615e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000015.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000016.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000016.jpg new file mode 100644 index 0000000..5e47631 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000016.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000017.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000017.jpg new file mode 100644 index 0000000..23e2ace Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000017.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000018.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000018.jpg new file mode 100644 index 0000000..83508f4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000018.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000019.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000019.jpg new file mode 100644 index 0000000..522ae04 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000019.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000020.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000020.jpg new file mode 100644 index 0000000..95953ec Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000020.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000021.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000021.jpg new file mode 100644 index 0000000..76f8ce2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000021.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000022.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000022.jpg new file mode 100644 index 0000000..6c8ddd7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000022.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000023.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000023.jpg new file mode 100644 index 0000000..2559516 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000023.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000024.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000024.jpg new file mode 100644 index 0000000..59031fd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000024.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000025.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000025.jpg new file mode 100644 index 0000000..715252b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000025.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000026.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000026.jpg new file mode 100644 index 0000000..6246c87 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000026.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000027.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000027.jpg new file mode 100644 index 0000000..22aa328 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000027.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000028.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000028.jpg new file mode 100644 index 0000000..c1498ea Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000028.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000029.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000029.jpg new file mode 100644 index 0000000..14bec42 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000029.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000030.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000030.jpg new file mode 100644 index 0000000..2f5bc6c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000030.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000031.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000031.jpg new file mode 100644 index 0000000..9f4a86c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000031.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000032.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000032.jpg new file mode 100644 index 0000000..637a80a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000032.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000033.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000033.jpg new file mode 100644 index 0000000..b4c21dd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000033.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000034.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000034.jpg new file mode 100644 index 0000000..298a8c0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000034.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000035.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000035.jpg new file mode 100644 index 0000000..24f68d7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000035.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000036.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000036.jpg new file mode 100644 index 0000000..e933a12 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000036.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000037.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000037.jpg new file mode 100644 index 0000000..d0cc889 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000037.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000038.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000038.jpg new file mode 100644 index 0000000..f5fbfb1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000038.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000039.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000039.jpg new file mode 100644 index 0000000..fe9d4eb Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000039.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000040.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000040.jpg new file mode 100644 index 0000000..1e7eeee Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000040.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000041.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000041.jpg new file mode 100644 index 0000000..709ccd4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000041.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000042.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000042.jpg new file mode 100644 index 0000000..9992e50 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000042.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000043.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000043.jpg new file mode 100644 index 0000000..7352ad1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000043.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000044.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000044.jpg new file mode 100644 index 0000000..f8fdca7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000044.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000045.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000045.jpg new file mode 100644 index 0000000..8cde5ce Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000045.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000046.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000046.jpg new file mode 100644 index 0000000..92a9acf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000046.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000047.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000047.jpg new file mode 100644 index 0000000..da67a8b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000047.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000048.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000048.jpg new file mode 100644 index 0000000..cb5c81c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000048.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000049.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000049.jpg new file mode 100644 index 0000000..a3316d4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000049.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000050.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000050.jpg new file mode 100644 index 0000000..b7ce8f1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000050.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000051.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000051.jpg new file mode 100644 index 0000000..16d088b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000051.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000052.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000052.jpg new file mode 100644 index 0000000..0a1e8f8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000052.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000053.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000053.jpg new file mode 100644 index 0000000..5beee3b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000053.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000054.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000054.jpg new file mode 100644 index 0000000..06bcde8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000054.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000055.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000055.jpg new file mode 100644 index 0000000..366c112 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000055.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000056.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000056.jpg new file mode 100644 index 0000000..e037220 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000056.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000057.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000057.jpg new file mode 100644 index 0000000..30c9ec1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000057.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000058.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000058.jpg new file mode 100644 index 0000000..27716ee Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000058.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000059.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000059.jpg new file mode 100644 index 0000000..590d5c7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000059.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000060.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000060.jpg new file mode 100644 index 0000000..8a1fa4b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000060.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000061.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000061.jpg new file mode 100644 index 0000000..98af85f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000061.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000062.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000062.jpg new file mode 100644 index 0000000..2232a2e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000062.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000063.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000063.jpg new file mode 100644 index 0000000..6d5de4b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000063.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000064.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000064.jpg new file mode 100644 index 0000000..b8a6cdc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000064.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000065.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000065.jpg new file mode 100644 index 0000000..1a2f156 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000065.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000066.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000066.jpg new file mode 100644 index 0000000..30b5cf3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000066.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000067.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000067.jpg new file mode 100644 index 0000000..2ba08ec Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000067.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000068.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000068.jpg new file mode 100644 index 0000000..bebdd9e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000068.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000069.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000069.jpg new file mode 100644 index 0000000..2a5aef0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000069.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000070.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000070.jpg new file mode 100644 index 0000000..4d157b9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000070.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000071.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000071.jpg new file mode 100644 index 0000000..862a616 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000071.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000072.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000072.jpg new file mode 100644 index 0000000..b23a0d2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000072.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000073.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000073.jpg new file mode 100644 index 0000000..1b2d211 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000073.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000074.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000074.jpg new file mode 100644 index 0000000..971bd95 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000074.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000075.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000075.jpg new file mode 100644 index 0000000..2f4f271 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000075.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000076.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000076.jpg new file mode 100644 index 0000000..96a0b9b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000076.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000077.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000077.jpg new file mode 100644 index 0000000..a911f3e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000077.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000078.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000078.jpg new file mode 100644 index 0000000..d54a58f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000078.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000079.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000079.jpg new file mode 100644 index 0000000..f78486c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000079.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000080.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000080.jpg new file mode 100644 index 0000000..bf0bdd8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000080.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000081.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000081.jpg new file mode 100644 index 0000000..fb67e1f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000081.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000082.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000082.jpg new file mode 100644 index 0000000..9f55e95 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000082.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000083.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000083.jpg new file mode 100644 index 0000000..377552b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000083.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000084.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000084.jpg new file mode 100644 index 0000000..266acfb Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000084.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000085.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000085.jpg new file mode 100644 index 0000000..fa24e7d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000085.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000086.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000086.jpg new file mode 100644 index 0000000..953ead0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000086.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000087.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000087.jpg new file mode 100644 index 0000000..07e899e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000087.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000088.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000088.jpg new file mode 100644 index 0000000..a44b0ea Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000088.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000089.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000089.jpg new file mode 100644 index 0000000..4bdb910 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000089.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000090.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000090.jpg new file mode 100644 index 0000000..81eaa0d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000090.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000091.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000091.jpg new file mode 100644 index 0000000..7cf1d59 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000091.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000092.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000092.jpg new file mode 100644 index 0000000..57ad09f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000092.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000093.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000093.jpg new file mode 100644 index 0000000..5c3208d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000093.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000094.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000094.jpg new file mode 100644 index 0000000..d24091e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000094.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000095.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000095.jpg new file mode 100644 index 0000000..c515209 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000095.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000096.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000096.jpg new file mode 100644 index 0000000..8e6bfbf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000096.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000097.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000097.jpg new file mode 100644 index 0000000..0c4fbdc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000097.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000098.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000098.jpg new file mode 100644 index 0000000..c0df587 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000098.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000099.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000099.jpg new file mode 100644 index 0000000..7251256 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000099.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000100.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000100.jpg new file mode 100644 index 0000000..228c6cf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000100.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000101.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000101.jpg new file mode 100644 index 0000000..5b6630e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000101.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000102.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000102.jpg new file mode 100644 index 0000000..b60ce23 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000102.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000103.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000103.jpg new file mode 100644 index 0000000..bd36f1d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000103.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000104.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000104.jpg new file mode 100644 index 0000000..b55b37d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000104.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000105.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000105.jpg new file mode 100644 index 0000000..6119c3b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000105.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000106.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000106.jpg new file mode 100644 index 0000000..b7b2494 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000106.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000107.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000107.jpg new file mode 100644 index 0000000..45f1a4e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000107.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000108.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000108.jpg new file mode 100644 index 0000000..b7126a8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000108.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000109.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000109.jpg new file mode 100644 index 0000000..c477855 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000109.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000110.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000110.jpg new file mode 100644 index 0000000..8f47863 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000110.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000111.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000111.jpg new file mode 100644 index 0000000..7fc5c0d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000111.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000112.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000112.jpg new file mode 100644 index 0000000..bcf6ac5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000112.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000113.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000113.jpg new file mode 100644 index 0000000..f0f799b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000113.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000114.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000114.jpg new file mode 100644 index 0000000..4532010 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000114.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000115.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000115.jpg new file mode 100644 index 0000000..ac267b7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000115.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000116.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000116.jpg new file mode 100644 index 0000000..45bc488 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000116.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000117.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000117.jpg new file mode 100644 index 0000000..b3436ba Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000117.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000118.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000118.jpg new file mode 100644 index 0000000..54bddb5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000118.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000119.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000119.jpg new file mode 100644 index 0000000..a643815 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000119.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000120.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000120.jpg new file mode 100644 index 0000000..6a226a0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000120.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000121.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000121.jpg new file mode 100644 index 0000000..0df25a1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000121.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000122.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000122.jpg new file mode 100644 index 0000000..68a37d4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000122.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000123.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000123.jpg new file mode 100644 index 0000000..c57e835 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000123.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000124.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000124.jpg new file mode 100644 index 0000000..04ea328 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000124.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000125.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000125.jpg new file mode 100644 index 0000000..33ee446 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000125.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000126.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000126.jpg new file mode 100644 index 0000000..793e902 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000126.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000127.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000127.jpg new file mode 100644 index 0000000..a55349b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000127.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000128.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000128.jpg new file mode 100644 index 0000000..15bc796 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000128.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000129.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000129.jpg new file mode 100644 index 0000000..87a913e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000129.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000130.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000130.jpg new file mode 100644 index 0000000..b84d2fb Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000130.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000131.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000131.jpg new file mode 100644 index 0000000..eb13341 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000131.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000132.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000132.jpg new file mode 100644 index 0000000..1b8b280 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000132.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000133.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000133.jpg new file mode 100644 index 0000000..b448ad9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000133.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000134.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000134.jpg new file mode 100644 index 0000000..44ae785 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000134.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000135.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000135.jpg new file mode 100644 index 0000000..354cba9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000135.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000136.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000136.jpg new file mode 100644 index 0000000..01688b6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000136.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000137.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000137.jpg new file mode 100644 index 0000000..c17d23d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000137.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000138.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000138.jpg new file mode 100644 index 0000000..a196282 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000138.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000139.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000139.jpg new file mode 100644 index 0000000..e23adb2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000139.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000140.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000140.jpg new file mode 100644 index 0000000..59be88b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000140.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000141.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000141.jpg new file mode 100644 index 0000000..a1512d1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000141.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000142.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000142.jpg new file mode 100644 index 0000000..ad1a801 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000142.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000143.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000143.jpg new file mode 100644 index 0000000..7657bec Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000143.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000144.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000144.jpg new file mode 100644 index 0000000..7412686 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000144.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000145.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000145.jpg new file mode 100644 index 0000000..d987c33 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000145.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000146.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000146.jpg new file mode 100644 index 0000000..9dc0c14 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000146.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000147.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000147.jpg new file mode 100644 index 0000000..715d187 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000147.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000148.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000148.jpg new file mode 100644 index 0000000..79d0947 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000148.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000149.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000149.jpg new file mode 100644 index 0000000..e0a4083 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000149.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000150.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000150.jpg new file mode 100644 index 0000000..7cf5820 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000150.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000151.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000151.jpg new file mode 100644 index 0000000..fc7774a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000151.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000152.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000152.jpg new file mode 100644 index 0000000..032a57d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000152.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000153.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000153.jpg new file mode 100644 index 0000000..c717a42 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000153.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000154.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000154.jpg new file mode 100644 index 0000000..a376290 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000154.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000155.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000155.jpg new file mode 100644 index 0000000..974f52e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000155.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000156.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000156.jpg new file mode 100644 index 0000000..1752d5d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000156.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000157.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000157.jpg new file mode 100644 index 0000000..223f302 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000157.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000158.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000158.jpg new file mode 100644 index 0000000..036353b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000158.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000159.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000159.jpg new file mode 100644 index 0000000..6a86a0d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000159.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000160.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000160.jpg new file mode 100644 index 0000000..c23ce31 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000160.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000161.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000161.jpg new file mode 100644 index 0000000..065b762 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000161.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000162.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000162.jpg new file mode 100644 index 0000000..3ed6b95 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000162.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000163.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000163.jpg new file mode 100644 index 0000000..8d74fc8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000163.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000164.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000164.jpg new file mode 100644 index 0000000..12b4ba4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000164.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000165.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000165.jpg new file mode 100644 index 0000000..af00460 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000165.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000166.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000166.jpg new file mode 100644 index 0000000..98c1a3f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000166.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000167.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000167.jpg new file mode 100644 index 0000000..20b3f81 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000167.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000168.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000168.jpg new file mode 100644 index 0000000..3599b05 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000168.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000169.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000169.jpg new file mode 100644 index 0000000..b9dffa5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000169.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000170.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000170.jpg new file mode 100644 index 0000000..ac319b1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000170.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000171.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000171.jpg new file mode 100644 index 0000000..34d05e0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000171.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000172.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000172.jpg new file mode 100644 index 0000000..faa46cf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000172.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000173.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000173.jpg new file mode 100644 index 0000000..79b33f7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000173.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000174.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000174.jpg new file mode 100644 index 0000000..e8c182b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000174.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000175.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000175.jpg new file mode 100644 index 0000000..09fffd6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000175.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000176.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000176.jpg new file mode 100644 index 0000000..cf9ee35 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000176.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000177.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000177.jpg new file mode 100644 index 0000000..f6dbb4c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000177.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000178.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000178.jpg new file mode 100644 index 0000000..24199dc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000178.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000179.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000179.jpg new file mode 100644 index 0000000..20ea596 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000179.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000180.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000180.jpg new file mode 100644 index 0000000..8883222 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000180.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000181.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000181.jpg new file mode 100644 index 0000000..bbbe389 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000181.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000182.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000182.jpg new file mode 100644 index 0000000..d562c13 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000182.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000183.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000183.jpg new file mode 100644 index 0000000..2842d20 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000183.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000184.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000184.jpg new file mode 100644 index 0000000..3d2e239 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000184.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000185.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000185.jpg new file mode 100644 index 0000000..feaf782 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000185.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000186.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000186.jpg new file mode 100644 index 0000000..ca9cc89 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000186.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000187.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000187.jpg new file mode 100644 index 0000000..feccda5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000187.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000188.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000188.jpg new file mode 100644 index 0000000..5a1ef2b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000188.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000189.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000189.jpg new file mode 100644 index 0000000..63fc36f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000189.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000190.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000190.jpg new file mode 100644 index 0000000..9c9ec4f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000190.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000191.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000191.jpg new file mode 100644 index 0000000..540be01 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000191.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000192.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000192.jpg new file mode 100644 index 0000000..5c3f6d3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000192.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000193.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000193.jpg new file mode 100644 index 0000000..a4d4f8d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000193.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000194.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000194.jpg new file mode 100644 index 0000000..290395c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000194.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000195.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000195.jpg new file mode 100644 index 0000000..bd02f64 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000195.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000196.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000196.jpg new file mode 100644 index 0000000..5ca7cb9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000196.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000197.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000197.jpg new file mode 100644 index 0000000..73a7281 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000197.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000198.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000198.jpg new file mode 100644 index 0000000..6b7e434 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000198.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000199.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000199.jpg new file mode 100644 index 0000000..1e7b6ce Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000199.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000200.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000200.jpg new file mode 100644 index 0000000..c5535b9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000200.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000201.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000201.jpg new file mode 100644 index 0000000..779ba75 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000201.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000202.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000202.jpg new file mode 100644 index 0000000..2294991 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000202.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000203.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000203.jpg new file mode 100644 index 0000000..be87a89 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000203.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000204.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000204.jpg new file mode 100644 index 0000000..cafba0c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000204.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000205.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000205.jpg new file mode 100644 index 0000000..8e665e1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000205.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000206.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000206.jpg new file mode 100644 index 0000000..f8c6639 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000206.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000207.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000207.jpg new file mode 100644 index 0000000..3ec26e0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000207.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000208.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000208.jpg new file mode 100644 index 0000000..8a5e3f3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000208.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000209.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000209.jpg new file mode 100644 index 0000000..a3e4923 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000209.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000210.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000210.jpg new file mode 100644 index 0000000..81dbb8e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000210.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000211.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000211.jpg new file mode 100644 index 0000000..baae1ab Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000211.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000212.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000212.jpg new file mode 100644 index 0000000..68b83b7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000212.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000213.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000213.jpg new file mode 100644 index 0000000..4636746 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000213.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000214.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000214.jpg new file mode 100644 index 0000000..f977c55 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000214.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000215.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000215.jpg new file mode 100644 index 0000000..ce06101 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000215.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000216.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000216.jpg new file mode 100644 index 0000000..dbbd7f0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000216.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000217.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000217.jpg new file mode 100644 index 0000000..3bd69ef Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000217.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000218.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000218.jpg new file mode 100644 index 0000000..6c0996a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000218.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000219.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000219.jpg new file mode 100644 index 0000000..9253c99 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000219.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000220.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000220.jpg new file mode 100644 index 0000000..bded9e5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000220.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000221.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000221.jpg new file mode 100644 index 0000000..4cc1cc4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000221.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000222.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000222.jpg new file mode 100644 index 0000000..7356a34 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000222.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000223.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000223.jpg new file mode 100644 index 0000000..3b21b14 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000223.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000224.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000224.jpg new file mode 100644 index 0000000..f025bf7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000224.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000225.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000225.jpg new file mode 100644 index 0000000..59a3fc4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000225.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000226.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000226.jpg new file mode 100644 index 0000000..c737e90 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000226.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000227.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000227.jpg new file mode 100644 index 0000000..82c62f1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000227.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000228.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000228.jpg new file mode 100644 index 0000000..b9a11a0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000228.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000229.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000229.jpg new file mode 100644 index 0000000..7e00e8b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000229.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000230.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000230.jpg new file mode 100644 index 0000000..82b64de Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000230.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000231.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000231.jpg new file mode 100644 index 0000000..4fb0f61 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000231.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000232.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000232.jpg new file mode 100644 index 0000000..62e7a77 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000232.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000233.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000233.jpg new file mode 100644 index 0000000..55bbc48 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000233.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000234.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000234.jpg new file mode 100644 index 0000000..9a6c7df Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000234.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000235.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000235.jpg new file mode 100644 index 0000000..9954f9a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000235.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000236.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000236.jpg new file mode 100644 index 0000000..2d81fce Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000236.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000237.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000237.jpg new file mode 100644 index 0000000..10c00d6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000237.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000238.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000238.jpg new file mode 100644 index 0000000..da9cbb2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000238.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000239.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000239.jpg new file mode 100644 index 0000000..deca757 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000239.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000240.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000240.jpg new file mode 100644 index 0000000..7a1ac33 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000240.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000241.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000241.jpg new file mode 100644 index 0000000..f909cb1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000241.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000242.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000242.jpg new file mode 100644 index 0000000..3fc1cd1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000242.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000243.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000243.jpg new file mode 100644 index 0000000..457cf1a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000243.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000244.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000244.jpg new file mode 100644 index 0000000..c51e75b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000244.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000245.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000245.jpg new file mode 100644 index 0000000..9318b35 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000245.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000246.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000246.jpg new file mode 100644 index 0000000..6f67114 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000246.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000247.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000247.jpg new file mode 100644 index 0000000..d8d201d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000247.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000248.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000248.jpg new file mode 100644 index 0000000..0b852d6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000248.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000249.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000249.jpg new file mode 100644 index 0000000..a2bec91 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000249.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000250.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000250.jpg new file mode 100644 index 0000000..54c8234 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000250.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000251.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000251.jpg new file mode 100644 index 0000000..d109b17 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000251.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000252.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000252.jpg new file mode 100644 index 0000000..e03202c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000252.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000253.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000253.jpg new file mode 100644 index 0000000..dfd2732 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000253.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000254.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000254.jpg new file mode 100644 index 0000000..24d3a98 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000254.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000255.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000255.jpg new file mode 100644 index 0000000..8253dae Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000255.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000256.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000256.jpg new file mode 100644 index 0000000..7e06138 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000256.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000257.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000257.jpg new file mode 100644 index 0000000..8d25117 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000257.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000258.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000258.jpg new file mode 100644 index 0000000..cebdea5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000258.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000259.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000259.jpg new file mode 100644 index 0000000..93cfdc2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000259.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000260.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000260.jpg new file mode 100644 index 0000000..2445056 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000260.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000261.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000261.jpg new file mode 100644 index 0000000..85802c5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000261.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000262.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000262.jpg new file mode 100644 index 0000000..1d53752 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000262.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000263.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000263.jpg new file mode 100644 index 0000000..c5a9f11 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000263.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000264.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000264.jpg new file mode 100644 index 0000000..a3dc340 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000264.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000265.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000265.jpg new file mode 100644 index 0000000..c4f50b3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000265.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000266.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000266.jpg new file mode 100644 index 0000000..f2effdf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000266.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000267.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000267.jpg new file mode 100644 index 0000000..623038e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000267.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000268.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000268.jpg new file mode 100644 index 0000000..aa37732 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000268.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000269.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000269.jpg new file mode 100644 index 0000000..25864de Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000269.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000270.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000270.jpg new file mode 100644 index 0000000..540b6f0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000270.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000271.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000271.jpg new file mode 100644 index 0000000..ce46419 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000271.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000272.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000272.jpg new file mode 100644 index 0000000..497040e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000272.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000273.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000273.jpg new file mode 100644 index 0000000..ce5c7cf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000273.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000274.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000274.jpg new file mode 100644 index 0000000..8397082 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000274.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000275.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000275.jpg new file mode 100644 index 0000000..7b13052 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000275.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000276.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000276.jpg new file mode 100644 index 0000000..eaac1c1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000276.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000277.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000277.jpg new file mode 100644 index 0000000..bc206e2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000277.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000278.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000278.jpg new file mode 100644 index 0000000..80bf5dd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000278.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000279.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000279.jpg new file mode 100644 index 0000000..7f5aefe Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000279.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000280.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000280.jpg new file mode 100644 index 0000000..9e69843 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000280.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000281.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000281.jpg new file mode 100644 index 0000000..f413a55 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000281.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000282.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000282.jpg new file mode 100644 index 0000000..45a894d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000282.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000283.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000283.jpg new file mode 100644 index 0000000..efccfcd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000283.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000284.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000284.jpg new file mode 100644 index 0000000..26b4f14 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000284.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000285.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000285.jpg new file mode 100644 index 0000000..dd5eb3d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000285.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000286.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000286.jpg new file mode 100644 index 0000000..646b4be Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000286.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000287.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000287.jpg new file mode 100644 index 0000000..304f0ea Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000287.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000288.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000288.jpg new file mode 100644 index 0000000..0a7be71 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000288.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000289.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000289.jpg new file mode 100644 index 0000000..1aa6228 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000289.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000290.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000290.jpg new file mode 100644 index 0000000..fe0cfc7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000290.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000291.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000291.jpg new file mode 100644 index 0000000..db434f7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000291.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000292.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000292.jpg new file mode 100644 index 0000000..9ad4ef9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000292.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000293.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000293.jpg new file mode 100644 index 0000000..a57211f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000293.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000294.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000294.jpg new file mode 100644 index 0000000..fa562a2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000294.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000295.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000295.jpg new file mode 100644 index 0000000..88c0de0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000295.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000296.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000296.jpg new file mode 100644 index 0000000..8614abc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000296.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000297.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000297.jpg new file mode 100644 index 0000000..b6b1d62 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000297.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000298.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000298.jpg new file mode 100644 index 0000000..38a3687 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000298.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000299.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000299.jpg new file mode 100644 index 0000000..e0dad94 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000299.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000300.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000300.jpg new file mode 100644 index 0000000..f6f760d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000300.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000301.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000301.jpg new file mode 100644 index 0000000..399f742 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000301.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000302.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000302.jpg new file mode 100644 index 0000000..8501317 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000302.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000303.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000303.jpg new file mode 100644 index 0000000..4b1c16f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000303.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000304.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000304.jpg new file mode 100644 index 0000000..61ef228 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000304.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000305.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000305.jpg new file mode 100644 index 0000000..1af6364 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000305.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000306.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000306.jpg new file mode 100644 index 0000000..4eae5e9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000306.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000307.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000307.jpg new file mode 100644 index 0000000..978d43d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000307.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000308.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000308.jpg new file mode 100644 index 0000000..64fbe0e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000308.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000309.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000309.jpg new file mode 100644 index 0000000..5683599 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000309.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000310.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000310.jpg new file mode 100644 index 0000000..ad78230 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/images/dataset1/image_000001000310.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000000.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000000.txt new file mode 100644 index 0000000..21df2f7 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000000.txt @@ -0,0 +1,6 @@ +0 0.18043568866320517 0.682223169427169 0.0953555030681643 0.198830387048554 +0 0.5893958076448829 0.6369015208461829 0.04192355117139334 0.16666666666666666 +0 0.45910403702026814 0.33719392408404436 0.05425400739827374 0.1491228404798006 +0 0.5030826140567201 0.42272022314238966 0.036991368680641186 0.13888891119706004 +0 0.5819975715383208 0.4885097302888569 0.09782159431354039 0.14473684210526316 +0 0.5544595400884325 0.5579541524251302 0.10850801479654748 0.09649122807017543 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000001.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000001.txt new file mode 100644 index 0000000..11f956d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000001.txt @@ -0,0 +1,7 @@ +0 0.5487053397257438 0.6398255197625412 0.08220306659891338 0.16666666666666666 +0 0.52322237177048 0.5762290285344709 0.06083022563289921 0.13596491228070176 +0 0.5433621294842401 0.47096583717747736 0.06987253511290073 0.12134505154793723 +0 0.47513363011521276 0.4329541524251302 0.07151664611590629 0.1388888442725466 +0 0.43608716031038075 0.3474278366356565 0.08055903085504007 0.12280701754385964 +0 0.29634197719588085 0.36789566173888094 0.06083022563289921 0.15204680593390216 +0 0.16440609556826064 0.6661413092362254 0.053431951896770954 0.1754385964912281 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000002.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000002.txt new file mode 100644 index 0000000..35f39ff --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000002.txt @@ -0,0 +1,5 @@ +0 0.14960954809600416 0.6668722922341865 0.0797369753535373 0.16520470067074425 +0 0.5100698976716631 0.6456734506707442 0.08384710234278668 0.1754385964912281 +0 0.44471847966919703 0.4314921864292077 0.06000817013139642 0.12719298245614036 +0 0.42252365846081225 0.3620477308306777 0.03863547968364674 0.12573101646021795 +0 0.28565559434243987 0.3788605740195826 0.07891491985203453 0.1593567028380277 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000003.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000003.txt new file mode 100644 index 0000000..d5553c3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000003.txt @@ -0,0 +1,5 @@ +0 0.4849979574671509 0.6661412757739686 0.043567586915266646 0.12865494845206277 +0 0.4418413606730695 0.6025447845458984 0.09699961407116985 0.09795319406609786 +0 0.4200575672154362 0.4461120471619723 0.07151664611590629 0.10380112497430098 +0 0.26633787331539954 0.38617053784822164 0.0632963545078414 0.1593567028380277 +0 0.3978627460070515 0.3569307829204359 0.05178791615289766 0.08333333333333333 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000004.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000004.txt new file mode 100644 index 0000000..89ff2e5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000004.txt @@ -0,0 +1,6 @@ +0 0.443485434046509 0.6515214150412041 0.07233862635827683 0.11988301862750138 +0 0.3727908246173224 0.38470853839004254 0.039457497555583386 0.11549712063973411 +0 0.39868476387898816 0.4548839769865337 0.05507606289977651 0.11549712063973411 +0 0.25852857182851996 0.41029334486576546 0.04767775153408215 0.14327487610934073 +0 0.46526922750414235 0.47388983609383567 0.04849976940601881 0.04532161511872944 +0 0.445951525291885 0.5484512396026077 0.04767771390451603 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000005.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000005.txt new file mode 100644 index 0000000..f9af85d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000005.txt @@ -0,0 +1,7 @@ +0 0.24208796979760713 0.40810036240962516 0.04603367816064273 0.13888891119706004 +0 0.3707357423079146 0.3905564692982456 0.06165228113440198 0.10087719298245615 +0 0.37977807060269925 0.47900678400407765 0.04849980703558492 0.10818708988658168 +0 0.43033295994769183 0.5140945033023232 0.06247433663590475 0.0994151600620203 +0 0.4110152577354347 0.668334258230109 0.05178791615289766 0.11549705371522066 +0 0.39375260020301905 0.582807975902892 0.0715166837454724 0.07894736842105264 +0 0.832716823065178 0.5952348541795162 0.07480479286278514 0.15935676976254112 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000006.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000006.txt new file mode 100644 index 0000000..d12e96a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000006.txt @@ -0,0 +1,5 @@ +0 0.24249897873357545 0.41906524122807015 0.0632963545078414 0.13157894736842107 +0 0.39046447227092324 0.6405565027605024 0.06658446362515413 0.13888891119706004 +0 0.36826965106253856 0.4811997664602179 0.0468557336621455 0.09795326099061129 +0 0.362926440821035 0.3964044336687054 0.03123713068838625 0.07163740459241366 +0 0.41800250372081155 0.513363520304362 0.047677789163648274 0.08040933441697505 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000007.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000007.txt new file mode 100644 index 0000000..d293498 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000007.txt @@ -0,0 +1,6 @@ +0 0.7764077521722796 0.5988898360938356 0.06411837237977805 0.12865494845206277 +0 0.41882452159274813 0.5031295910216215 0.03452527743526511 0.1067251908151727 +0 0.3900534445201719 0.5638021167955901 0.036169313179138414 0.08479529932925577 +0 0.3916975178936113 0.6464044336687055 0.03288116643225956 0.08625733224969162 +0 0.3633374685717864 0.4029833810371265 0.033703297192894575 0.10233915897837856 +0 0.25647350833389526 0.4212582571464673 0.06822853699859356 0.12426898353978208 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000008.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000008.txt new file mode 100644 index 0000000..915b6c1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000008.txt @@ -0,0 +1,6 @@ +0 0.7706535141800246 0.6230126431113795 0.04438964241676942 0.14766084102162144 +0 0.38306619853479507 0.6186266447368421 0.05672009864364982 0.13596491228070176 +0 0.38840940877629854 0.46950383771929827 0.023016876709887484 0.09210526315789473 +0 0.29880806844125696 0.4176032752321478 0.029593094944512947 0.10818708988658168 +0 0.12946980919702722 0.580614959984495 0.03288120406182568 0.10672512389065927 +0 0.4282778588235011 0.5162874857584635 0.023838856952258014 0.08333333333333333 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000009.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000009.txt new file mode 100644 index 0000000..d3b77e2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000009.txt @@ -0,0 +1,5 @@ +0 0.7546239587146462 0.6098547149122807 0.05507606289977651 0.12719298245614036 +0 0.38429924415748307 0.6076617324561404 0.029593094944512947 0.14035087719298245 +0 0.41348134898081074 0.5835389254385965 0.05672009864364982 0.12719298245614036 +0 0.39662970038436346 0.46877288818359375 0.021372840966014182 0.09649122807017543 +0 0.13563501849568432 0.580614959984495 0.036991368680641186 0.11549705371522066 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000010.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000010.txt new file mode 100644 index 0000000..b214fc6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000010.txt @@ -0,0 +1,7 @@ +0 0.750924784217016 0.6200886776572779 0.029593094944512947 0.13596491228070176 +0 0.3847102719082344 0.5981588196336177 0.045211697918272196 0.12426898353978208 +0 0.40649406536586774 0.5542991705108107 0.03288116643225956 0.08918126424153645 +0 0.432799051193068 0.5148254863002844 0.03781342418214396 0.10380119189881441 +0 0.3970406905055487 0.4534219775283546 0.02712700369913687 0.08040933441697505 +0 0.31607070715888946 0.40517636349326686 0.04110149566989057 0.10672512389065927 +0 0.13152489150643495 0.5638021167955901 0.02219482120838471 0.11695908663565652 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000011.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000011.txt new file mode 100644 index 0000000..f51bddd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000011.txt @@ -0,0 +1,7 @@ +0 0.7476366750997033 0.6127787138286389 0.052609971654400435 0.1330409802888569 +0 0.3699137056211949 0.5725740131578948 0.028771077072576295 0.12280701754385964 +0 0.4060830376151164 0.5725740131578948 0.043567586915266646 0.12280701754385964 +0 0.4381422614345715 0.4819307494581791 0.017262638717632554 0.0643275076882881 +0 0.3982737737578029 0.46219394081517273 0.023016876709887484 0.07456140350877193 +0 0.3242910175817374 0.4073693794116639 0.03288120406182568 0.12280701754385964 +0 0.13440199168777936 0.5411412757739686 0.03616935080870453 0.11257312172337583 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000012.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000012.txt new file mode 100644 index 0000000..08cefc6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000012.txt @@ -0,0 +1,5 @@ +0 0.750924821846582 0.6157027127449972 0.047677789163648274 0.13596491228070176 +0 0.3658035410023794 0.5733050296181126 0.06000820776096255 0.15935676976254112 +0 0.40443900187124304 0.5528372045148883 0.03041515044601572 0.11257312172337583 +0 0.4077271109885558 0.4278372045148883 0.035347257677635635 0.09064329716197231 +0 0.32963420900845797 0.3810535899379798 0.032059186189889025 0.10526315789473684 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000013.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000013.txt new file mode 100644 index 0000000..a749562 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000013.txt @@ -0,0 +1,7 @@ +0 0.36251543188506663 0.5711120471619723 0.04356762454483277 0.1608186688339501 +0 0.4040279741204917 0.5521061880546705 0.03781334892301171 0.13450294628477932 +0 0.7501028039746455 0.5996208190917969 0.04438964241676942 0.11549712063973411 +0 0.33621044605786643 0.37886060748183936 0.045211660288706074 0.11842105263157895 +0 0.42827785882350106 0.3715506436532004 0.03041515044601572 0.08625726532517818 +0 0.4069050931166191 0.4256442220587479 0.018906674461505856 0.07163740459241366 +0 0.4311549778196285 0.4746208190917969 0.02466091245376079 0.08771929824561404 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000014.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000014.txt new file mode 100644 index 0000000..5d6fd6c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000014.txt @@ -0,0 +1,8 @@ +0 0.4340320591861899 0.4899716962847794 0.02712700369913687 0.1125730547988624 +0 0.4015618828751156 0.5287143974973445 0.031237205947518498 0.10233915897837856 +0 0.36991368680641185 0.5740360126160738 0.05178791615289766 0.16081873575846353 +0 0.44389646179726033 0.3664336957429585 0.03534733293676788 0.09356722915381717 +0 0.41101525773543457 0.3964044336687054 0.032059186189889025 0.09795319406609786 +0 0.3444307752954975 0.3664336957429585 0.04192358880095946 0.12865494845206277 +0 0.7636662681946478 0.6208196271929824 0.05014388040902436 0.16666666666666666 +0 0.12494863564224337 0.5272523980391652 0.017262638717632554 0.1549708048502604 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000015.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000015.txt new file mode 100644 index 0000000..01cd7b7 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000015.txt @@ -0,0 +1,7 @@ +0 0.7640772959453992 0.6047377670020389 0.05096593591052713 0.15204680593390216 +0 0.4570489358960774 0.36131674783271656 0.030415075186883477 0.08333333333333333 +0 0.42581180520769113 0.40298341449938324 0.017262638717632554 0.06140350877192982 +0 0.3588163138317856 0.3671646787409197 0.03781342418214396 0.1301169144479852 +0 0.36744759556103573 0.5579541524251302 0.04192355117139334 0.14912280701754385 +0 0.415125384724684 0.5455272406862494 0.03863547968364674 0.13304091336434348 +0 0.44841761653726114 0.46365590681109514 0.031237205947518498 0.0804094013414885 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000016.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000016.txt new file mode 100644 index 0000000..7a9779b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000016.txt @@ -0,0 +1,7 @@ +0 0.7677764328134633 0.6244746425695586 0.06000817013139642 0.15350877192982457 +0 0.46732432862833306 0.36935766119706004 0.04274560667289611 0.11403508771929825 +0 0.37073572349313155 0.3481588196336178 0.03534729530720176 0.12426898353978208 +0 0.43403209681575605 0.40956236186780426 0.028771039443010172 0.08333333333333333 +0 0.4130703212300594 0.5235974161248458 0.0328812416913918 0.11549705371522066 +0 0.374845869297164 0.5491822226005688 0.05178791615289766 0.1345028793602659 +0 0.14344431998256396 0.4972816266511616 0.05754215414515259 0.12426898353978208 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000017.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000017.txt new file mode 100644 index 0000000..f2da1b4 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000017.txt @@ -0,0 +1,5 @@ +0 0.3621044041343152 0.5374862938596491 0.03288120406182568 0.13157894736842107 +0 0.4163584303473721 0.5374863273219059 0.05096593591052713 0.12865494845206277 +0 0.37320181473850766 0.35327576754385964 0.04027947779795392 0.12280701754385964 +0 0.46937939212295776 0.3540067840040776 0.035347257677635635 0.10087719298245615 +0 0.7644882860665845 0.6281295910216215 0.05178791615289766 0.17251466449938324 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000018.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000018.txt new file mode 100644 index 0000000..27f31b3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000018.txt @@ -0,0 +1,7 @@ +0 0.7607891491985204 0.6215506436532005 0.059186189889025895 0.16812869958710253 +0 0.4804768027271501 0.35108278508771934 0.041101570929022814 0.10087719298245615 +0 0.37895605273076255 0.3415798722651967 0.04192358880095946 0.09356722915381717 +0 0.42087962271693896 0.5206734506707443 0.036991368680641186 0.1330409802888569 +0 0.3674475955610358 0.5411413092362254 0.05178791615289766 0.17105263157894737 +0 0.4595150271414535 0.4731588530958744 0.035347257677635635 0.11403508771929825 +0 0.1319358816276202 0.47388983609383567 0.029593094944512947 0.1593567028380277 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000019.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000019.txt new file mode 100644 index 0000000..6bcf377 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000019.txt @@ -0,0 +1,7 @@ +0 0.7772297700442162 0.6427494852166427 0.05754215414515259 0.15497073792574698 +0 0.43156596794081387 0.5214044336687055 0.05178791615289766 0.14619880810118557 +0 0.37772298829329143 0.5389482933178282 0.03781342418214396 0.15497073792574698 +0 0.46526922750414224 0.4329541524251302 0.03534733293676788 0.1388888442725466 +0 0.506370760803599 0.37008864419502124 0.04356766217439889 0.14766084102162144 +0 0.40279492849780363 0.34304187172337586 0.04521162265913995 0.1374269452011376 +0 0.13686808293315544 0.4716968536376953 0.03288120406182568 0.12573101646021795 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000020.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000020.txt new file mode 100644 index 0000000..86509d5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000020.txt @@ -0,0 +1,7 @@ +0 0.13686808293315544 0.47681380154793723 0.03288120406182568 0.17105263157894737 +0 0.4143033292231813 0.3481588363647461 0.04192355117139334 0.14473687556751988 +0 0.5117139710451025 0.36424067982456143 0.027949059200639642 0.14473684210526316 +0 0.47390054686295857 0.44172608224969157 0.04110149566989057 0.13596491228070176 +0 0.4336210690650047 0.5148255197625412 0.031237205947518498 0.11842105263157895 +0 0.38553228978017107 0.5550301869710287 0.048499844665151046 0.16959066558302494 +0 0.7780517879161529 0.6266675915634423 0.06905055487053022 0.15497073792574698 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000021.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000021.txt new file mode 100644 index 0000000..fec4f6b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000021.txt @@ -0,0 +1,7 @@ +0 0.7866831449045353 0.6369015208461828 0.05014388040902436 0.19298245614035087 +0 0.5215782983970407 0.33719392408404436 0.03452527743526511 0.13157898083067776 +0 0.4849979574671509 0.420527274148506 0.03370322193376233 0.14035087719298245 +0 0.43855325155575675 0.5170185022186815 0.057542078886020344 0.14912280701754385 +0 0.3781339972292598 0.5221354501289234 0.045211660288706074 0.1505847730134663 +0 0.1381011285558435 0.4585389254385965 0.04356762454483277 0.14912280701754385 +0 0.42951094207575524 0.33865590681109514 0.02466091245376079 0.13157894736842107 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000022.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000022.txt new file mode 100644 index 0000000..1c41fcf --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000022.txt @@ -0,0 +1,7 @@ +0 0.13851213749181182 0.44538106416401113 0.03123713068838625 0.14619880810118557 +0 0.38471025309345136 0.5140945033023232 0.053431989526337084 0.1754385964912281 +0 0.4488286442880125 0.5082465389318633 0.03863540442451449 0.14619880810118557 +0 0.4866420308405903 0.45561499344675166 0.033703297192894575 0.16666666666666666 +0 0.5322647188800478 0.3496208190917969 0.03452527743526511 0.13596491228070176 +0 0.43156600557037994 0.3181880649767424 0.03041515044601572 0.11988305208975808 +0 0.78873820839916 0.6142407132868182 0.042745531413763874 0.16520470067074425 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000023.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000023.txt new file mode 100644 index 0000000..31b7fc2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000023.txt @@ -0,0 +1,7 @@ +0 0.4837649118444628 0.41467930977804623 0.021372765706881937 0.09064329716197231 +0 0.5363748834988633 0.3306149599844949 0.03123713068838625 0.12426898353978208 +0 0.4426634161745723 0.30283720451488827 0.0328812416913918 0.12134505154793723 +0 0.3810110974106042 0.49581966065523925 0.03945745992601726 0.1681286326625891 +0 0.44841761653726103 0.5097085383900425 0.04767771390451603 0.1637427346748218 +0 0.13604604624643574 0.43514713488127055 0.03452527743526511 0.1608186688339501 +0 0.7891492361499114 0.6098547149122807 0.05014388040902436 0.1798245614035088 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000024.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000024.txt new file mode 100644 index 0000000..fadf6a2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000024.txt @@ -0,0 +1,8 @@ +0 0.3740238702400104 0.4965506436532004 0.05672013627321594 0.18128659432394462 +0 0.4451295074199484 0.49070267928274053 0.0328812416913918 0.14327487610934073 +0 0.13481300062374768 0.42345123960260755 0.03863540442451449 0.1374268782766242 +0 0.7870941726552867 0.6025447845458984 0.04438964241676942 0.17397663049530565 +0 0.4928072589540305 0.4110243278637267 0.03288116643225956 0.08333333333333333 +0 0.544184184985743 0.3233050296181127 0.02712700369913687 0.11842105263157895 +0 0.5055487429316623 0.36131674783271656 0.025482967955263565 0.08333333333333333 +0 0.45417185452951603 0.3006442053276196 0.029593094944512947 0.11111112226519669 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000025.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000025.txt new file mode 100644 index 0000000..de60fc4 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000025.txt @@ -0,0 +1,7 @@ +0 0.5569256313338086 0.3247670123451635 0.041101570929022814 0.1330409468266002 +0 0.782983970406905 0.6032757675438597 0.05425400739827374 0.18421052631578946 +0 0.5084258242982236 0.3496208190917969 0.036169313179138414 0.09795326099061129 +0 0.4952733501994066 0.42052724068624925 0.02466091245376079 0.10818715681109513 +0 0.4586930092695168 0.48997169628477927 0.06494042788128082 0.15350877192982457 +0 0.37443487917597873 0.48997169628477927 0.029593094944512947 0.15935676976254112 +0 0.1352240283744991 0.39348046821460386 0.03452527743526511 0.1242690504642955 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000026.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000026.txt new file mode 100644 index 0000000..1694998 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000026.txt @@ -0,0 +1,5 @@ +0 0.14221127435987593 0.41467930977804623 0.03863540442451449 0.15497073792574698 +0 0.3769009516065717 0.49070267928274053 0.06247429900633863 0.18713452523214774 +0 0.464858237382957 0.48777871382863897 0.047677789163648274 0.16666666666666666 +0 0.7862721171537839 0.61935766119706 0.0624742613767725 0.19005852414850605 +0 0.5187012170304793 0.3905565027605023 0.035347257677635635 0.13011698137249864 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000027.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000027.txt new file mode 100644 index 0000000..45e65ef --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000027.txt @@ -0,0 +1,7 @@ +0 0.7846280437803445 0.6025447845458984 0.05096586065139488 0.18274856031986705 +0 0.576243371175632 0.3306149767156233 0.04192355117139334 0.1710526650412041 +0 0.4775996837310227 0.2867553108616879 0.03370322193376233 0.13304091336434348 +0 0.511302943294351 0.42198924014442846 0.033703297192894575 0.13157894736842107 +0 0.45992605489220484 0.4870477308306778 0.0674065191266569 0.19152049014442846 +0 0.3769009704213548 0.4848547483745374 0.03945745992601726 0.17836259540758634 +0 0.13974518311449985 0.3956734506707442 0.036991368680641186 0.17251466449938324 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000028.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000028.txt new file mode 100644 index 0000000..9d80b80 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000028.txt @@ -0,0 +1,8 @@ +0 0.7817509624137832 0.5974278366356566 0.04849976940601881 0.19883045397306742 +0 0.5799425080436961 0.32184303015993354 0.029593094944512947 0.13304091336434348 +0 0.4866420308405903 0.29260327523214774 0.036991368680641186 0.13596491228070176 +0 0.5400740203669274 0.3905565027605023 0.040279515427520035 0.15643277084618284 +0 0.5039046695582228 0.41614130923622533 0.033703297192894575 0.14035087719298245 +0 0.4582819815187655 0.4651179062692743 0.03781334892301171 0.17397663049530565 +0 0.36744763319060186 0.4885097302888569 0.06000824539052867 0.18859649122807018 +0 0.13892314642778014 0.3890945033023232 0.04356762454483277 0.18859649122807018 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000029.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000029.txt new file mode 100644 index 0000000..3251601 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000029.txt @@ -0,0 +1,8 @@ +0 0.7718865974322788 0.6047378004642955 0.040279515427520035 0.21052631578947367 +0 0.5922729642705764 0.33573190789473684 0.05425400739827374 0.16666666666666666 +0 0.5359638557481119 0.3583927489163583 0.02548289269613132 0.10964912280701754 +0 0.5071928163051017 0.3971354501289234 0.0468557336621455 0.14327487610934073 +0 0.4537607891491985 0.4760828185499761 0.06165228113440198 0.17836259540758634 +0 0.3719687691158196 0.47169682017543857 0.037813386552577835 0.18421052631578946 +0 0.49691742357284596 0.27798339776825487 0.02630494819763409 0.10087722644471285 +0 0.13686808293315544 0.3942114846748218 0.04110153329945669 0.15789473684210528 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000030.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000030.txt new file mode 100644 index 0000000..6a199a7 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000030.txt @@ -0,0 +1,8 @@ +0 0.7677764328134634 0.5703810641640111 0.048499844665151046 0.21783627961811267 +0 0.5955610733878892 0.32038104743288276 0.0328812416913918 0.1418128766511616 +0 0.5010275505620954 0.28017636349326686 0.0328812416913918 0.11988301862750138 +0 0.5445951751069281 0.3773986080236602 0.03288116643225956 0.14766084102162144 +0 0.5084258619277897 0.4015214150412041 0.02466091245376079 0.14327487610934073 +0 0.4591039993907021 0.48850969682660017 0.04274560667289611 0.18274856031986705 +0 0.3703247145571632 0.4965506436532004 0.06083022563289921 0.22222217760587995 +0 0.13974518311449985 0.3942114846748218 0.043567586915266646 0.15789473684210528 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000031.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000031.txt new file mode 100644 index 0000000..ac27685 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000031.txt @@ -0,0 +1,8 @@ +0 0.7731196430549669 0.5988898360938356 0.04110149566989057 0.21345031470583195 +0 0.6103576208601458 0.32184303015993354 0.03781342418214396 0.14181284318890489 +0 0.5536375222164959 0.3561997664602179 0.027949059200639642 0.10526315789473684 +0 0.5306206455066084 0.4095623284055476 0.027949059200639642 0.14181284318890489 +0 0.5187012170304793 0.28017636349326686 0.02383893221139026 0.09356722915381717 +0 0.46198111838682954 0.4833927489163582 0.048499844665151046 0.1754385964912281 +0 0.3727908058025393 0.4811997664602179 0.04274560667289611 0.19736842105263158 +0 0.14138925648793926 0.39494246767278296 0.04192355117139334 0.18274856031986705 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000032.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000032.txt new file mode 100644 index 0000000..10e78ad --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000032.txt @@ -0,0 +1,8 @@ +0 0.7759967244215282 0.5923108887254146 0.045211697918272196 0.2032163519608347 +0 0.633374459940467 0.343772854721337 0.042745531413763874 0.15643277084618284 +0 0.5659679784433762 0.37812959102162147 0.04274560667289611 0.16666666666666666 +0 0.5347308101254239 0.3013752050567092 0.042745531413763874 0.10087719298245615 +0 0.5380189568723027 0.4139482933178283 0.03945745992601726 0.15643277084618284 +0 0.48540898521790227 0.4958196271929824 0.041101570929022814 0.18859649122807018 +0 0.37607895254941814 0.4870477308306778 0.052609971654400435 0.2002924199689899 +0 0.1570078218321324 0.3971354501289234 0.0468557336621455 0.15497073792574698 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000033.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000033.txt new file mode 100644 index 0000000..9592945 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000033.txt @@ -0,0 +1,8 @@ +0 0.4792437571044621 0.48485474837453746 0.05178791615289766 0.1637426677503084 +0 0.3769009516065718 0.4665798722651967 0.04767775153408215 0.1505847730134663 +0 0.15988494082825988 0.4124863273219058 0.05425400739827374 0.16520470067074425 +0 0.7751747065495915 0.60546875 0.05836420964665536 0.19736842105263158 +0 0.5758323434248805 0.3876325038441441 0.03781342418214396 0.14181284318890489 +0 0.5445951751069282 0.29625825714646725 0.021372840966014182 0.07309943751284952 +0 0.5351418378761752 0.43003015350877194 0.03863540442451449 0.16228070175438597 +0 0.6424168070500347 0.3466968536376953 0.04274560667289611 0.13011698137249864 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000034.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000034.txt new file mode 100644 index 0000000..c071220 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000034.txt @@ -0,0 +1,8 @@ +0 0.7657213693188386 0.6113167143704599 0.047677789163648274 0.21198828178539614 +0 0.6444718705446595 0.34304187172337586 0.04192355117139334 0.14912280701754385 +0 0.5782984346702567 0.3920185022186815 0.03123713068838625 0.15350877192982457 +0 0.5491163674764951 0.3021062047857987 0.02712700369913687 0.08771933170787075 +0 0.5450062028576796 0.432223169427169 0.025482967955263565 0.15497073792574698 +0 0.48335392172327757 0.49435766119706004 0.06494042788128082 0.1798245614035088 +0 0.37813401604404284 0.48850969682660017 0.04356766217439889 0.17397663049530565 +0 0.15536374845869297 0.3956734506707442 0.0468557336621455 0.18421052631578946 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000035.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000035.txt new file mode 100644 index 0000000..aa9455f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000035.txt @@ -0,0 +1,8 @@ +0 0.7595561412053985 0.6186266781990988 0.053431951896770954 0.2032163519608347 +0 0.6510480887792849 0.362778713828639 0.032059186189889025 0.1564327039216694 +0 0.5811755160368179 0.3971354501289234 0.025482967955263565 0.14327487610934073 +0 0.5433621294842401 0.4197962576882881 0.02877111470214242 0.1330409802888569 +0 0.47020140999489446 0.4797377670020388 0.05507606289977651 0.1593567028380277 +0 0.5552815579603692 0.293334258230109 0.02630494819763409 0.08479529932925577 +0 0.37895605273076255 0.47827576754385964 0.04192358880095946 0.19736842105263158 +0 0.16152897657213316 0.39494246767278296 0.03945745992601726 0.14181284318890489 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000036.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000036.txt new file mode 100644 index 0000000..4028a9c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000036.txt @@ -0,0 +1,8 @@ +0 0.15454173058675633 0.3971354166666667 0.045211697918272196 0.1754385964912281 +0 0.3658035410023794 0.47388983609383567 0.055076025270210396 0.18274856031986705 +0 0.7640772959453992 0.607661765918397 0.05425400739827374 0.18713452523214774 +0 0.4808878304779015 0.501667625025699 0.043567586915266646 0.206140350877193 +0 0.6613235191411067 0.35766176591839705 0.029593094944512947 0.14327487610934073 +0 0.5647349328206881 0.3064921529669511 0.015618602973759249 0.09356722915381717 +0 0.5930949821425131 0.38982548630028446 0.03781342418214396 0.15204680593390216 +0 0.5487053397257438 0.4409950657894737 0.036169313179138414 0.18421052631578946 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000037.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000037.txt new file mode 100644 index 0000000..524cf5e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000037.txt @@ -0,0 +1,8 @@ +0 0.5926839543917618 0.40663836295144595 0.030415075186883477 0.15058483993797972 +0 0.5721332065568164 0.3116091343394497 0.020550785464511407 0.09502926207425302 +0 0.5470612663523042 0.42345123960260767 0.03616938843827065 0.15204680593390216 +0 0.4751335924856466 0.49362667819909883 0.04849976940601881 0.1900584572239926 +0 0.37443487917597873 0.4848547483745374 0.05425400739827374 0.198830387048554 +0 0.16440609556826064 0.4146793097780461 0.0468557336621455 0.17836259540758634 +0 0.7554459765865829 0.6098547483745375 0.0468557336621455 0.18567249231171193 +0 0.669954838499923 0.36350969682660017 0.032059186189889025 0.16959066558302494 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000038.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000038.txt new file mode 100644 index 0000000..3777652 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000038.txt @@ -0,0 +1,8 @@ +0 0.666666691753044 0.35546878346225674 0.036991368680641186 0.15643277084618284 +0 0.7472256849785179 0.6091237319143195 0.040279515427520035 0.198830387048554 +0 0.5787094624210081 0.30356818751284953 0.02712700369913687 0.07017543859649122 +0 0.5898068730252004 0.39201846875642476 0.01972872996300863 0.1505847730134663 +0 0.5552815579603692 0.4307611699689899 0.0328812416913918 0.16959059865851153 +0 0.4710234654963973 0.49801264311137955 0.06000824539052867 0.1900584572239926 +0 0.37073572349313155 0.4848547483745374 0.045211660288706074 0.198830387048554 +0 0.16070695870019652 0.39640446713096217 0.03452527743526511 0.16228070175438597 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000039.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000039.txt new file mode 100644 index 0000000..5106521 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000039.txt @@ -0,0 +1,8 @@ +0 0.74599263935583 0.6135096968266002 0.036169313179138414 0.198830387048554 +0 0.6847513483426133 0.36862667819909883 0.040279515427520035 0.1593567028380277 +0 0.5861076985275702 0.30722316942716904 0.025482967955263565 0.0774854024251302 +0 0.5988491825052019 0.41175531086168793 0.03452527743526511 0.16081873575846353 +0 0.5565146412126233 0.4461120471619724 0.04192355117139334 0.16228070175438597 +0 0.4763666381083347 0.49289566173888094 0.055898043142147046 0.2032163519608347 +0 0.37073572349313155 0.4892407132868181 0.050143842779458235 0.20467838488127055 +0 0.15865189520557182 0.413217310319867 0.05178791615289766 0.18713445830763434 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000040.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000040.txt new file mode 100644 index 0000000..25bf6d9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000040.txt @@ -0,0 +1,8 @@ +0 0.1664611778776684 0.3942114846748218 0.03288120406182568 0.14035087719298245 +0 0.6863954217160527 0.3715506436532004 0.03863547968364674 0.14473684210526316 +0 0.7410604568650778 0.5915799057274534 0.047677789163648274 0.18421052631578946 +0 0.6033703372452026 0.41175534432394456 0.028771039443010172 0.12280701754385964 +0 0.5959720635090744 0.31453309979355126 0.028771039443010172 0.05994147585149397 +0 0.5540485123376812 0.4154102927760074 0.04849976940601881 0.1242690504642955 +0 0.4837649118444628 0.49947460910730196 0.05096586065139488 0.1812865273994312 +0 0.3727908058025393 0.4965506436532004 0.04274560667289611 0.2017543859649123 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000041.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000041.txt new file mode 100644 index 0000000..50f1cbd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000041.txt @@ -0,0 +1,8 @@ +0 0.17385945161379662 0.4029833810371265 0.042745569043329996 0.17836259540758634 +0 0.3703247145571632 0.47900678400407765 0.04110149566989057 0.19005852414850605 +0 0.4800658126059648 0.5023985745614035 0.036991368680641186 0.18421052631578946 +0 0.5667899963153128 0.45122899507221426 0.041101570929022814 0.20760231687311542 +0 0.6189889025893958 0.4329541524251302 0.04192355117139334 0.16228070175438597 +0 0.6017262638717632 0.309416135152181 0.036991368680641186 0.07602340296695108 +0 0.7398274112423897 0.6105857313724986 0.043567586915266646 0.20467831795675712 +0 0.6859843939653014 0.3832465723941201 0.04110149566989057 0.16228070175438597 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000042.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000042.txt new file mode 100644 index 0000000..23ba8b7 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000042.txt @@ -0,0 +1,8 @@ +0 0.17303741492707692 0.41467930977804623 0.04274560667289611 0.18713452523214774 +0 0.3707357423079146 0.4833927489163583 0.05672009864364982 0.2280701754385965 +0 0.47883272935371074 0.48850969682660017 0.04110149566989057 0.1769005624871505 +0 0.5684340696887523 0.4380711003353721 0.03781342418214396 0.17251459757486978 +0 0.6148787756001465 0.4139482933178283 0.04356766217439889 0.1593567028380277 +0 0.6115906288532675 0.30283718778375995 0.02712700369913687 0.06286550823010897 +0 0.7003699513163726 0.3832465723941201 0.03534733293676788 0.18859649122807018 +0 0.7414714469862631 0.6135096968266002 0.040279515427520035 0.20467838488127055 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000043.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000043.txt new file mode 100644 index 0000000..71da4cd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000043.txt @@ -0,0 +1,8 @@ +0 0.17673655179514103 0.4073693794116639 0.040279515427520035 0.1754385964912281 +0 0.373612842489259 0.47681380154793723 0.04110153329945669 0.18567255923622533 +0 0.4837649118444629 0.48850969682660017 0.03781342418214396 0.1769005624871505 +0 0.5725441966780017 0.4314921529669511 0.0328812416913918 0.1769005624871505 +0 0.6193999303401472 0.4161412757739686 0.04603367816064273 0.1637426677503084 +0 0.6263871763255241 0.35327576754385964 0.04192355117139334 0.14912280701754385 +0 0.7065351794298127 0.37301264311137955 0.03781342418214396 0.13304091336434348 +0 0.7348952287516377 0.5901179062692742 0.04849976940601881 0.18713452523214774 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000044.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000044.txt new file mode 100644 index 0000000..53d4f4d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000044.txt @@ -0,0 +1,7 @@ +0 0.18249075215782984 0.4037143974973445 0.0468557336621455 0.18567249231171193 +0 0.3785450061652281 0.4709658706397341 0.05425400739827374 0.2149122807017544 +0 0.48951914983671785 0.49508864419502124 0.04274560667289611 0.1900584572239926 +0 0.699547933444436 0.3598547483745374 0.05178791615289766 0.15643277084618284 +0 0.6235100949589627 0.40590734649122806 0.03945745992601726 0.18421052631578946 +0 0.5700781054326256 0.4424570652476528 0.04110149566989057 0.1637426677503084 +0 0.7320181097555102 0.6025447845458984 0.0624742613767725 0.22660820944267407 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000045.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000045.txt new file mode 100644 index 0000000..b67da44 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000045.txt @@ -0,0 +1,8 @@ +0 0.7135224254151896 0.381784572935941 0.030415075186883477 0.17397663049530565 +0 0.6436498150431567 0.3342699418988145 0.036991368680641186 0.11988308555201481 +0 0.6296753230724029 0.4263752050567091 0.048499844665151046 0.1637427346748218 +0 0.5750102879233777 0.44538106416401113 0.05096586065139488 0.18713452523214774 +0 0.4849979574671509 0.4972816266511616 0.05014388040902436 0.19152049014442846 +0 0.37854504379479426 0.487778713828639 0.04274560667289611 0.21345024778131855 +0 0.18290177990858122 0.4212582236842105 0.04274560667289611 0.206140350877193 +0 0.7283189728874461 0.6018138015479372 0.035347257677635635 0.23099410743044133 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000046.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000046.txt new file mode 100644 index 0000000..380c80e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000046.txt @@ -0,0 +1,7 @@ +0 0.17879163410454876 0.39348046821460386 0.046033715790208846 0.17397656357079222 +0 0.3666255776890991 0.48631671437045987 0.043567586915266646 0.198830387048554 +0 0.48869713196478115 0.5104395213880036 0.03945745992601726 0.1769005624871505 +0 0.5819975339087546 0.4556149599844949 0.05178791615289766 0.20467838488127055 +0 0.6309083686950909 0.44830502961811264 0.042745531413763874 0.1959063881321957 +0 0.6452939260461622 0.3408488892672355 0.0468557336621455 0.14181291011341832 +0 0.7213317269020693 0.60546875 0.055898043142147046 0.206140350877193 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000047.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000047.txt new file mode 100644 index 0000000..a1063d5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000047.txt @@ -0,0 +1,8 @@ +0 0.4800657749763987 0.4987436261093408 0.05507606289977651 0.21198834870990954 +0 0.3653925320664111 0.48631674783271656 0.047677789163648274 0.21052631578947367 +0 0.17920264304051708 0.40736934594940727 0.0468557336621455 0.1812865273994312 +0 0.5667899963153129 0.43734011733741096 0.04932182490752158 0.17105263157894737 +0 0.6222770493362747 0.4241822226005688 0.04356766217439889 0.15350877192982457 +0 0.715166498788629 0.3715506436532004 0.043567586915266646 0.17397656357079222 +0 0.6383066424312192 0.34523485417951616 0.04932182490752158 0.13596491228070176 +0 0.7139334531659409 0.593772854721337 0.047677789163648274 0.2002924199689899 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000048.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000048.txt new file mode 100644 index 0000000..05e889a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000048.txt @@ -0,0 +1,8 @@ +0 0.702014024689812 0.5813459764447129 0.04192355117139334 0.20467838488127055 +0 0.7098232885471255 0.36643366228070173 0.03288116643225956 0.14912280701754385 +0 0.6374846245592825 0.35181380154793723 0.036169313179138414 0.14912280701754385 +0 0.6136457299774584 0.4007903985809862 0.04438964241676942 0.16520470067074425 +0 0.5692560875606889 0.40883134540758637 0.03288116643225956 0.23391817327131303 +0 0.4619811183868296 0.487047697368421 0.04521162265913995 0.17105263157894737 +0 0.3547061492129701 0.47388983609383567 0.041101570929022814 0.2032163519608347 +0 0.1664611778776684 0.38982548630028446 0.042745569043329996 0.19590645505670917 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000049.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000049.txt new file mode 100644 index 0000000..2ede30d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000049.txt @@ -0,0 +1,8 @@ +0 0.6954377688256204 0.5879248903508771 0.053431951896770954 0.2149122807017544 +0 0.7106453440486282 0.3752056255675199 0.03945745992601726 0.17836259540758634 +0 0.6399506781750924 0.37666759156344226 0.04438964241676942 0.17251459757486978 +0 0.6140567577282098 0.4197962576882881 0.03534733293676788 0.15350877192982457 +0 0.5602137404511213 0.41687225877192985 0.04274560667289611 0.16228070175438597 +0 0.4689684020017725 0.506053556475723 0.03452527743526511 0.2002924199689899 +0 0.3431977108580263 0.4746208190917969 0.055898043142147046 0.19005852414850605 +0 0.16892725030826142 0.4146793097780461 0.04438964241676942 0.20467838488127055 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000050.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000050.txt new file mode 100644 index 0000000..2b5a101 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000050.txt @@ -0,0 +1,8 @@ +0 0.6818742669760519 0.595965870639734 0.05096586065139488 0.21929824561403508 +0 0.7110563341698135 0.37666759156344226 0.035347257677635635 0.14619880810118557 +0 0.6424167694204685 0.35546875 0.03945745992601726 0.12719298245614036 +0 0.62022198584165 0.4292992039730674 0.036169313179138414 0.1754385964912281 +0 0.5581586769564966 0.43953309979355126 0.05178791615289766 0.17251466449938324 +0 0.46239210850801477 0.5009366085654811 0.04438964241676942 0.20467831795675712 +0 0.34895193003549824 0.4819307494581791 0.05096589828096101 0.198830387048554 +0 0.16481710450422898 0.3964044336687054 0.042745569043329996 0.17397663049530565 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000051.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000051.txt new file mode 100644 index 0000000..57a4b3f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000051.txt @@ -0,0 +1,8 @@ +0 0.16070695870019652 0.4059073799534848 0.05096586065139488 0.18713452523214774 +0 0.3362104648726495 0.4724278366356565 0.04192355117139334 0.20029235304447643 +0 0.4570489358960774 0.5184804682146039 0.05343202715590321 0.1959063881321957 +0 0.5635018871980002 0.4731588196336178 0.04603367816064273 0.20467838488127055 +0 0.6818742293464858 0.5966968536376953 0.04932182490752158 0.22953214143451892 +0 0.7143444432871263 0.4059073799534848 0.03863540442451449 0.19590645505670917 +0 0.6395396880539073 0.3861705043859649 0.04192355117139334 0.1798245614035088 +0 0.6111796387320824 0.43514713488127055 0.03781334892301171 0.20760238379762883 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000052.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000052.txt new file mode 100644 index 0000000..dc7daf3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000052.txt @@ -0,0 +1,8 @@ +0 0.6740649654891724 0.5857319413569937 0.05343202715590321 0.2251461765222382 +0 0.712700407543253 0.38763253730640074 0.03863540442451449 0.19736842105263158 +0 0.6391286603031558 0.3810535899379798 0.03781342418214396 0.14912280701754385 +0 0.6033703372452026 0.41029334486576546 0.043567586915266646 0.16959066558302494 +0 0.5581586769564966 0.44684306362219023 0.0468557336621455 0.19298245614035087 +0 0.4496506621599492 0.4987436261093407 0.06329639213740752 0.2149122807017544 +0 0.3378545194313059 0.5002056255675199 0.058364172017089246 0.24415206909179688 +0 0.15906290414154015 0.42710622151692706 0.037813386552577835 0.206140350877193 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000053.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000053.txt new file mode 100644 index 0000000..f381078 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000053.txt @@ -0,0 +1,8 @@ +0 0.7176325900340051 0.3832465723941201 0.04849976940601881 0.18859649122807018 +0 0.6489930252846602 0.3671646787409197 0.04110149566989057 0.16812869958710253 +0 0.6173448668455225 0.4278372045148883 0.035347257677635635 0.20467838488127055 +0 0.6757090388626117 0.5850009248967757 0.05507606289977651 0.22953214143451892 +0 0.561035795952624 0.43222313596491224 0.047677789163648274 0.19298245614035087 +0 0.457870953768014 0.5133635203043619 0.040279515427520035 0.21198828178539614 +0 0.3325113280045854 0.4541529939885725 0.06083030089203144 0.22222224453039338 +0 0.1602959309494451 0.4176032752321478 0.0468557336621455 0.21345024778131855 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000054.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000054.txt new file mode 100644 index 0000000..a0711ba --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000054.txt @@ -0,0 +1,8 @@ +0 0.7303740740116369 0.3942114512125651 0.04438964241676942 0.19590645505670917 +0 0.6814632392253006 0.5791529939885726 0.04521162265913995 0.21198828178539614 +0 0.6625565271342285 0.3737436261093407 0.03041515044601572 0.1608186688339501 +0 0.6206329759628353 0.41687229223418654 0.045211697918272196 0.1769005624871505 +0 0.5733662521795045 0.44538106416401113 0.04110149566989057 0.19590645505670917 +0 0.46115906288532676 0.49070271274499727 0.04192355117139334 0.2368421052631579 +0 0.3493629577862496 0.48046878346225674 0.046855771291711625 0.22222224453039338 +0 0.17550350617245297 0.41833425823010895 0.05096586065139488 0.2032163519608347 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000055.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000055.txt new file mode 100644 index 0000000..981fca1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000055.txt @@ -0,0 +1,8 @@ +0 0.7546239587146462 0.3942114512125651 0.05507606289977651 0.18713452523214774 +0 0.6732429476172357 0.3715506436532004 0.05507606289977651 0.17105263157894737 +0 0.6313193964458423 0.41979625768828804 0.05507606289977651 0.18859649122807018 +0 0.6863954217160527 0.5776909945303934 0.04521162265913995 0.22660814251816064 +0 0.5819975339087546 0.4461120471619724 0.04192355117139334 0.20906428286903783 +0 0.46568025525489365 0.5023985745614035 0.05425400739827374 0.21929824561403508 +0 0.35429514027700176 0.4716968536376953 0.04192358880095946 0.21637424669767683 +0 0.17920264304051708 0.4110243278637267 0.03863540442451449 0.18859649122807018 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000056.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000056.txt new file mode 100644 index 0000000..d32bb80 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000056.txt @@ -0,0 +1,8 @@ +0 0.6831072749691739 0.5601471348812705 0.04192355117139334 0.2149122807017544 +0 0.7624332602015259 0.40663836295144606 0.05425400739827374 0.206140350877193 +0 0.6880394950894921 0.3854395213880037 0.043567586915266646 0.1900584572239926 +0 0.6309083686950909 0.42491323906078676 0.04767771390451603 0.1754385964912281 +0 0.5885737897729462 0.43953309979355126 0.05014388040902436 0.20467831795675712 +0 0.4751335924856466 0.4921646787409197 0.04849976940601881 0.21637431362219026 +0 0.3505959845941546 0.4629249238131339 0.055898043142147046 0.21637424669767683 +0 0.1796136707912685 0.41833429169236575 0.04932182490752158 0.206140350877193 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000057.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000057.txt new file mode 100644 index 0000000..27d315f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000057.txt @@ -0,0 +1,8 @@ +0 0.6724208921157329 0.5871939408151727 0.045211697918272196 0.24561403508771928 +0 0.7554459765865829 0.3971354166666667 0.036991368680641186 0.19298245614035087 +0 0.6769420844852998 0.38470853839004254 0.05096586065139488 0.17690062941166393 +0 0.6329634698192818 0.4154102927760074 0.04192355117139334 0.17397656357079222 +0 0.5762433335460658 0.4380711003353721 0.05507606289977651 0.20467838488127055 +0 0.4562268803945746 0.5023986080236602 0.05672009864364982 0.21637424669767683 +0 0.3510069935301229 0.4709658706397341 0.045211660288706074 0.206140350877193 +0 0.17303741492707692 0.4015213815789474 0.04932182490752158 0.2017543859649123 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000058.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000058.txt new file mode 100644 index 0000000..cc7aab9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000058.txt @@ -0,0 +1,8 @@ +0 0.7575010400812077 0.3949424342105263 0.04603367816064273 0.2149122807017544 +0 0.6843403205918619 0.4022523980391653 0.04438964241676942 0.20906428286903783 +0 0.6683107651264836 0.5769599780701754 0.045211697918272196 0.2280701754385965 +0 0.6317304241965938 0.4300301869710286 0.04438964241676942 0.2002924199689899 +0 0.5861076985275702 0.4344161518833093 0.04849976940601881 0.2032163519608347 +0 0.4566379457748921 0.5009366085654812 0.06411837237977805 0.21345024778131855 +0 0.34730787547684183 0.462924923813134 0.05096593591052713 0.23391810634679963 +0 0.16481712331901205 0.3971354501289234 0.05425400739827374 0.18713452523214774 \ No newline at end of file diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000059.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000059.txt new file mode 100644 index 0000000..7b3adde --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000059.txt @@ -0,0 +1,8 @@ +0 0.7575010400812077 0.3927494852166427 0.04110149566989057 0.19590645505670917 +0 0.6789971479799244 0.38032257347776177 0.04356766217439889 0.17397656357079222 +0 0.6173448668455225 0.41029334486576546 0.035347257677635635 0.1812865273994312 +0 0.5729552244287531 0.4424570652476528 0.04521162265913995 0.20760231687311542 +0 0.4418413606730695 0.4841237319143195 0.05096586065139488 0.2002924199689899 +0 0.32593507214039386 0.46950387118155495 0.0674065191266569 0.2529239989163583 +0 0.16769422350035643 0.41833425823010895 0.03863544205408061 0.2207602116099575 +0 0.66296755488498 0.5703810641640111 0.055898118401279284 0.2792397883900425 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000060.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000060.txt new file mode 100644 index 0000000..3992641 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000060.txt @@ -0,0 +1,8 @@ +0 0.7418824747370145 0.3817845729359409 0.04932182490752158 0.1769005624871505 +0 0.6818742293464858 0.3861705043859649 0.04932182490752158 0.2149122807017544 +0 0.6580353723942278 0.5382173103198671 0.03945745992601726 0.20321641888534814 +0 0.6165228489735859 0.43368516888534814 0.045211697918272196 0.2017543859649123 +0 0.5659679784433762 0.4314921529669511 0.047677789163648274 0.19152049014442846 +0 0.43937526942769345 0.4972816266511616 0.055898043142147046 0.22953214143451892 +0 0.3222359352723297 0.45122899507221426 0.043567586915266646 0.22222224453039338 +0 0.16358405888154093 0.4110243278637267 0.050143842779458235 0.19736842105263158 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000061.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000061.txt new file mode 100644 index 0000000..36fd213 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000061.txt @@ -0,0 +1,8 @@ +0 0.7595561035758324 0.39274948521664266 0.0468557336621455 0.198830387048554 +0 0.6794081381011098 0.3890945033023232 0.05425400739827374 0.19152042321991505 +0 0.623921122709714 0.413217310319867 0.03041515044601572 0.1549708048502604 +0 0.6572133545222911 0.5630711003353721 0.05096586065139488 0.23538013926723547 +0 0.5709001233045623 0.4446500477037932 0.03452527743526511 0.23538013926723547 +0 0.43690921581188347 0.4870477308306778 0.04438964241676942 0.17397663049530565 +0 0.33004521794442626 0.46000092489677563 0.037813386552577835 0.2485380340040776 +0 0.16276202219482122 0.39640446713096217 0.04192355117139334 0.1798245614035088 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000062.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000062.txt new file mode 100644 index 0000000..cfaf1c3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000062.txt @@ -0,0 +1,8 @@ +0 0.6420057792992833 0.562340117337411 0.04356766217439889 0.23391817327131303 +0 0.7607891491985204 0.40005941558302494 0.03452527743526511 0.18713445830763434 +0 0.6884504852106774 0.39348045148347555 0.04603367816064273 0.22660817598041735 +0 0.6144677854789611 0.42345123960260755 0.04438964241676942 0.198830387048554 +0 0.5700781054326256 0.4278372045148883 0.03781342418214396 0.19590645505670917 +0 0.43608716031038064 0.4907026792827406 0.0624742613767725 0.23099417435495478 +0 0.3201808529629219 0.4592699418988145 0.04767775153408215 0.23538007234272204 +0 0.1574188495828838 0.4197962576882881 0.04438964241676942 0.2324561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000063.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000063.txt new file mode 100644 index 0000000..6b3199c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000063.txt @@ -0,0 +1,8 @@ +0 0.7644883236961506 0.3985974161248458 0.053431951896770954 0.21345031470583195 +0 0.6946157133241175 0.3890945033023232 0.05836413438752312 0.206140350877193 +0 0.6169338767243372 0.3869015208461829 0.04438964241676942 0.14035087719298245 +0 0.633374459940467 0.5455272406862494 0.04767771390451603 0.21198828178539614 +0 0.5655569506926248 0.4461120471619723 0.05178791615289766 0.23538007234272204 +0 0.432799051193068 0.4848547483745374 0.052609971654400435 0.22222224453039338 +0 0.3164817160948578 0.4563459764447129 0.050143842779458235 0.23830407125908032 +0 0.163584077696324 0.4139482933178283 0.05672009864364982 0.1944444221362733 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000064.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000064.txt new file mode 100644 index 0000000..c6fbc4e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000064.txt @@ -0,0 +1,8 @@ +0 0.7685984883149661 0.39859741612484584 0.0468557336621455 0.20760231687311542 +0 0.6942047232029324 0.38909448657119483 0.052609971654400435 0.22660817598041735 +0 0.6378956146804678 0.5352933448657655 0.045211697918272196 0.2032163519608347 +0 0.6243321128308994 0.39128748575846356 0.0328812416913918 0.10818708988658168 +0 0.5622688415753122 0.4263752050567091 0.06329631687827528 0.2017543859649123 +0 0.44225238842382086 0.47608278508771934 0.04027944016838779 0.21929824561403508 +0 0.3181257894682972 0.46000092489677563 0.0632963545078414 0.22222224453039338 +0 0.1656391411909487 0.4022523980391653 0.04603367816064273 0.2149122807017544 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000065.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000065.txt new file mode 100644 index 0000000..e729116 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000065.txt @@ -0,0 +1,8 @@ +0 0.7648993138173359 0.3890945033023232 0.04110149566989057 0.20029235304447643 +0 0.6929716775802444 0.3927494852166427 0.04849976940601881 0.21637424669767683 +0 0.6218660592150894 0.3854395213880037 0.04932182490752158 0.11695908663565652 +0 0.6267982040762755 0.5462582571464673 0.055898043142147046 0.23391810634679963 +0 0.5667899963153129 0.432223169427169 0.05096593591052713 0.21345031470583195 +0 0.4274558409515644 0.4885097302888569 0.05507598764064427 0.2324561403508772 +0 0.3173037527815775 0.4534219775283546 0.05178791615289766 0.22953214143451892 +0 0.16563914119094866 0.4168722922341865 0.04932182490752158 0.23538013926723547 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000066.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000066.txt new file mode 100644 index 0000000..49c9a98 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000066.txt @@ -0,0 +1,8 @@ +0 0.7661323594400239 0.3942114846748218 0.043567586915266646 0.2017543859649123 +0 0.6966708144483084 0.3898255197625411 0.05096586065139488 0.21052631578947367 +0 0.6140567577282099 0.37447464256955865 0.045211697918272196 0.10964912280701754 +0 0.6103575832305795 0.532369379411664 0.05425400739827374 0.206140350877193 +0 0.562268803945746 0.4110243278637267 0.032059186189889025 0.20321641888534814 +0 0.41964653946468483 0.4797378004642955 0.055898043142147046 0.2149122807017544 +0 0.30908346117351265 0.4519599780701755 0.05178791615289766 0.25 +0 0.16152899538691623 0.40298341449938324 0.042745569043329996 0.2017543859649123 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000067.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000067.txt new file mode 100644 index 0000000..86fc6e6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000067.txt @@ -0,0 +1,8 @@ +0 0.5967941190105772 0.5265213815789475 0.045211697918272196 0.2236842105263158 +0 0.7579120678319591 0.3869015208461829 0.04356766217439889 0.18421052631578946 +0 0.6855733662145499 0.37812959102162147 0.0468557336621455 0.16666666666666666 +0 0.610768648610897 0.3722816266511616 0.036991368680641186 0.11695908663565652 +0 0.5474722941030556 0.4241822226005688 0.053431951896770954 0.22076027853447094 +0 0.41471435697393266 0.4914336957429585 0.04603367816064273 0.23538013926723547 +0 0.2983970595052886 0.4314921864292077 0.0632963545078414 0.2236842105263158 +0 0.15248666709213163 0.4051763969555236 0.03945745992601726 0.19736842105263158 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000068.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000068.txt new file mode 100644 index 0000000..3477ca0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000068.txt @@ -0,0 +1,8 @@ +0 0.4993835148182222 0.7246208190917969 0.03781342418214396 0.11988308555201481 +0 0.7439375382316392 0.3408488892672355 0.025482967955263565 0.10380112497430098 +0 0.6892725407121802 0.3247669956140351 0.03123713068838625 0.10964912280701754 +0 0.6292642953216515 0.388363520304362 0.04110149566989057 0.09941522698653371 +0 0.5852856806556335 0.4022523980391653 0.036991368680641186 0.11842105263157895 +0 0.45663790814532595 0.4855857313724986 0.02630494819763409 0.1125730547988624 +0 0.4163584303473721 0.3678956952011376 0.0279489839415074 0.08771929824561404 +0 0.3921085080147966 0.21877285472133706 0.032059186189889025 0.07894736842105264 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000069.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000069.txt new file mode 100644 index 0000000..54aa818 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000069.txt @@ -0,0 +1,8 @@ +0 0.7464036671065813 0.3474278366356565 0.036991368680641186 0.11403508771929825 +0 0.7024250148109972 0.3474278366356565 0.029593094944512947 0.10818708988658168 +0 0.6292642953216515 0.3876325038441441 0.03123713068838625 0.12134505154793723 +0 0.5881627620221949 0.3715506436532004 0.03945745992601726 0.10087719298245615 +0 0.4570489358960773 0.47169682017543857 0.036991368680641186 0.08771929824561404 +0 0.4241677318342517 0.392749451754386 0.03370322193376233 0.13157894736842107 +0 0.39868476387898816 0.2392406798245614 0.025482967955263565 0.10526315789473684 +0 0.5002055326901588 0.7085389589008533 0.03781334892301171 0.09941522698653371 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000070.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000070.txt new file mode 100644 index 0000000..b0f6ae3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000070.txt @@ -0,0 +1,8 @@ +0 0.7529798853412069 0.34084888926723544 0.02877111470214242 0.09795326099061129 +0 0.7011919691883092 0.3284219775283546 0.02712700369913687 0.10818715681109513 +0 0.6300863508231542 0.3905564692982456 0.027949059200639642 0.09210526315789473 +0 0.5914509087690736 0.37081966065523914 0.029593094944512947 0.0818713673374109 +0 0.5002055326901587 0.7019600115324321 0.04767771390451603 0.14766084102162144 +0 0.46280313625876623 0.48485471491228066 0.040279515427520035 0.14912280701754385 +0 0.4237567040835003 0.381784572935941 0.03452527743526511 0.12134505154793723 +0 0.4040279741204917 0.2421646620097913 0.026305023456766337 0.099415193524277 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000071.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000071.txt new file mode 100644 index 0000000..bd5db9b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000071.txt @@ -0,0 +1,8 @@ +0 0.756679022209271 0.3583927489163583 0.03781334892301171 0.1301169144479852 +0 0.7040690881844367 0.3474278366356565 0.027949059200639642 0.12280701754385964 +0 0.6407727336765953 0.38251555593390213 0.026305023456766337 0.1169590197111431 +0 0.5955610357583231 0.3920185022186815 0.03452527743526511 0.10087719298245615 +0 0.5059597330528476 0.6771062215169271 0.03781342418214396 0.10964912280701754 +0 0.4784217392325255 0.48046878346225663 0.045211697918272196 0.11988301862750138 +0 0.432799051193068 0.3649716962847794 0.027949059200639642 0.08771929824561404 +0 0.4106042299846832 0.23704771409954942 0.03123713068838625 0.08625729878743489 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000072.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000072.txt new file mode 100644 index 0000000..2e6b8ba --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000072.txt @@ -0,0 +1,8 @@ +0 0.7587340857038957 0.33865590681109514 0.03534733293676788 0.102339225902892 +0 0.7024250148109972 0.34523485417951616 0.03288116643225956 0.09502919514973958 +0 0.6436498526727228 0.36789566173888094 0.028771039443010172 0.09356722915381717 +0 0.5902178631463857 0.38251555593390213 0.018906749720638102 0.08187130041289747 +0 0.498150469195534 0.656638362951446 0.040279515427520035 0.10380112497430098 +0 0.46814634650026965 0.4819307494581791 0.04438964241676942 0.11111108880293998 +0 0.4286888865742525 0.3583927489163583 0.03781334892301171 0.07748533550061679 +0 0.4110152577354347 0.22315881963361772 0.02712700369913687 0.06725143968013295 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000073.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000073.txt new file mode 100644 index 0000000..72ac5b5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000073.txt @@ -0,0 +1,8 @@ +0 0.7587341233334618 0.3459658371774774 0.032059186189889025 0.12865494845206277 +0 0.704480078305622 0.33207695944267407 0.03534733293676788 0.10087719298245615 +0 0.6366626066873459 0.3605857313724986 0.02466091245376079 0.07602343642920778 +0 0.5955610733878892 0.36570267928274053 0.03123713068838625 0.11257312172337583 +0 0.5026716239355349 0.6529833810371265 0.03781334892301171 0.12573101646021795 +0 0.4669133008775817 0.4709658371774774 0.02383893221139026 0.10672512389065927 +0 0.43403209681575605 0.38470853839004254 0.025482967955263565 0.07748533550061679 +0 0.4167694580981235 0.25532255674663346 0.028771039443010172 0.0906432636997156 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000074.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000074.txt new file mode 100644 index 0000000..ca5b4f9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000074.txt @@ -0,0 +1,8 @@ +0 0.7501027663450793 0.3357319413569936 0.0328812416913918 0.11695908663565652 +0 0.6979038224414303 0.33500092489677563 0.036991368680641186 0.08625733224969162 +0 0.6362515789365946 0.3773986080236602 0.028771039443010172 0.09502926207425302 +0 0.5959720635090744 0.3869015208461829 0.03370322193376233 0.11403508771929825 +0 0.4899301775874692 0.6420184687564248 0.032059186189889025 0.10672512389065927 +0 0.4640361818814542 0.47900678400407753 0.036169313179138414 0.1169590197111431 +0 0.42951094207575524 0.38763250384414405 0.02466091245376079 0.09502926207425302 +0 0.4134813113512446 0.2633635035732336 0.023838856952258014 0.08040936787923177 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000075.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000075.txt new file mode 100644 index 0000000..743b48e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000075.txt @@ -0,0 +1,8 @@ +0 0.7480477028504546 0.33865590681109514 0.02877111470214242 0.0994151600620203 +0 0.6991369056936845 0.35546878346225674 0.027949059200639642 0.11257312172337583 +0 0.6255651584535874 0.3942114846748218 0.025482967955263565 0.10526315789473684 +0 0.5848746905344482 0.3788605740195827 0.03945745992601726 0.10380119189881441 +0 0.4845869673459656 0.6500594155830249 0.03781342418214396 0.11111115572745339 +0 0.4517057256545739 0.46877288818359375 0.03123713068838625 0.07894736842105264 +0 0.42170164058887566 0.3971354501289234 0.028771039443010172 0.08479529932925577 +0 0.40896015661124385 0.29698924014442846 0.03288116643225956 0.10964912280701754 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000076.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000076.txt new file mode 100644 index 0000000..b34113a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000076.txt @@ -0,0 +1,8 @@ +0 0.7464036671065815 0.3678956952011376 0.02712700369913687 0.12280701754385964 +0 0.6929716775802442 0.37081966065523914 0.028771039443010172 0.10233915897837856 +0 0.6235100949589627 0.3869015208461829 0.03288116643225956 0.08771929824561404 +0 0.5918619365198251 0.3993284325850638 0.025482967955263565 0.08040933441697505 +0 0.48047680272715015 0.6361705378482215 0.03616938843827065 0.09795319406609786 +0 0.45376078914919854 0.48266176591839716 0.02712700369913687 0.08040933441697505 +0 0.4159474402261868 0.39494246767278307 0.02219482120838471 0.0687134726005688 +0 0.40813813873930715 0.28602431113259835 0.018084694219135326 0.05555554440146999 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000077.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000077.txt new file mode 100644 index 0000000..cd873ae --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000077.txt @@ -0,0 +1,8 @@ +0 0.7439375382316391 0.3481588196336177 0.03370322193376233 0.08040933441697505 +0 0.6822852947268034 0.37447460910730196 0.04192355117139334 0.10672512389065927 +0 0.6210440037135866 0.41029334486576546 0.029593094944512947 0.09941522698653371 +0 0.5811755160368179 0.41175534432394456 0.03370322193376233 0.08771929824561404 +0 0.47431157461370993 0.6493284325850637 0.033703297192894575 0.13888891119706004 +0 0.4471845709145731 0.4746208190917969 0.033703297192894575 0.08187130041289747 +0 0.415125384724684 0.432223169427169 0.032059186189889025 0.09941522698653371 +0 0.4069050931166191 0.3108781346103601 0.03534733293676788 0.11403512118155495 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000078.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000078.txt new file mode 100644 index 0000000..ea14bd9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000078.txt @@ -0,0 +1,8 @@ +0 0.7529798853412069 0.318919064705832 0.030415075186883477 0.09210526315789473 +0 0.7085902429244374 0.33426992516768606 0.035347257677635635 0.10818712334883841 +0 0.6378956146804678 0.37228166011341834 0.028771039443010172 0.09649122807017543 +0 0.5939170000144498 0.388363520304362 0.03288116643225956 0.10818715681109513 +0 0.5014385783128469 0.6559073799534847 0.03863547968364674 0.1374268782766242 +0 0.46814634650026965 0.46950387118155495 0.04767771390451603 0.11549705371522066 +0 0.4352651048088779 0.39786643312688463 0.029593094944512947 0.1301169144479852 +0 0.4200575672154362 0.25093660856548106 0.02877111470214242 0.11988308555201481 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000079.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000079.txt new file mode 100644 index 0000000..18bbcd1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000079.txt @@ -0,0 +1,8 @@ +0 0.7402384013635751 0.3649716962847794 0.03781342418214396 0.1257309495357045 +0 0.6868064494668041 0.3620477308306778 0.03123713068838625 0.09941522698653371 +0 0.6263872139550901 0.40590734649122806 0.025482967955263565 0.08771929824561404 +0 0.5824085992890722 0.40005941558302494 0.03452527743526511 0.08771929824561404 +0 0.46814634650026976 0.6303225734777618 0.042745531413763874 0.1067251908151727 +0 0.44471847966919703 0.5038606074818394 0.02712700369913687 0.11403508771929825 +0 0.41265929347930796 0.4219892401444285 0.033703297192894575 0.102339225902892 +0 0.4015618828751156 0.3050301702399003 0.031237205947518498 0.06725147314238966 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000080.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000080.txt new file mode 100644 index 0000000..801f8bc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000080.txt @@ -0,0 +1,8 @@ +0 0.7291409907593827 0.3459658706397341 0.03370322193376233 0.08771929824561404 +0 0.6876284673387407 0.3664336957429585 0.03288116643225956 0.10818715681109513 +0 0.6177558945962739 0.4059073799534848 0.0328812416913918 0.11695908663565652 +0 0.582408561659506 0.4059073799534848 0.03123713068838625 0.11695908663565652 +0 0.47184548336833376 0.6120476973684211 0.036991368680641186 0.09649122807017543 +0 0.44389646179726033 0.4855857313724986 0.03041515044601572 0.10380112497430098 +0 0.4167694580981234 0.4081003289473685 0.03041515044601572 0.07456140350877193 +0 0.4040279741204917 0.32257402988902306 0.03616938843827065 0.08479533279151247 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000081.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000081.txt new file mode 100644 index 0000000..ac08a07 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000081.txt @@ -0,0 +1,8 @@ +0 0.7303740740116369 0.337193907352916 0.03945745992601726 0.09941522698653371 +0 0.6810522114745492 0.36862667819909883 0.03123713068838625 0.0774854024251302 +0 0.6157007934720831 0.399328399122807 0.03041515044601572 0.10087719298245615 +0 0.5713111510553137 0.3964044336687054 0.03534733293676788 0.08625733224969162 +0 0.46937939212295776 0.6069307829204359 0.035347257677635635 0.10087719298245615 +0 0.43608716031038075 0.4833927489163583 0.0279489839415074 0.08479536625376918 +0 0.4011508551243642 0.43222313596491235 0.028771039443010172 0.07894736842105264 +0 0.3916975178936113 0.33938688980905635 0.023016801450755242 0.0774854024251302 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000082.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000082.txt new file mode 100644 index 0000000..d5048c5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000082.txt @@ -0,0 +1,8 @@ +0 0.7262638717632552 0.33865590681109514 0.029593094944512947 0.0994151600620203 +0 0.6802301936026126 0.3635097302888569 0.031237205947518498 0.09649122807017543 +0 0.6235100949589627 0.39348046821460386 0.0279489839415074 0.1125730547988624 +0 0.5750102879233777 0.4044453804953057 0.0328812416913918 0.102339225902892 +0 0.46896836437220646 0.601082818549976 0.04110149566989057 0.10672512389065927 +0 0.4410193428011328 0.48631674783271656 0.03288116643225956 0.09649122807017543 +0 0.4048499919924283 0.4197962576882881 0.027949059200639642 0.06871340567605537 +0 0.393752581388236 0.33134597644471286 0.023838856952258014 0.07602336950469435 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000083.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000083.txt new file mode 100644 index 0000000..11cf732 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000083.txt @@ -0,0 +1,8 @@ +0 0.7287300006381974 0.3247670290762918 0.0328812416913918 0.10380119189881441 +0 0.6802301936026125 0.36277871382863897 0.03616938843827065 0.1125730547988624 +0 0.6173448668455225 0.38397755539208134 0.036991368680641186 0.09356722915381717 +0 0.572955224428753 0.38251555593390213 0.02219482120838471 0.06432744076377468 +0 0.4702014476244606 0.6149716962847793 0.02219482120838471 0.1286550153765762 +0 0.4414303705518843 0.4731588530958744 0.040279515427520035 0.10526315789473684 +0 0.40731612086737057 0.40883134540758637 0.029593094944512947 0.07309937058833607 +0 0.3925195357655479 0.3218430468910619 0.03123713068838625 0.10087722644471285 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000084.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000084.txt new file mode 100644 index 0000000..28cca7b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000084.txt @@ -0,0 +1,8 @@ +0 0.39087550002167465 0.35619976646021795 0.023016876709887484 0.08771929824561404 +0 0.3999178471312423 0.45269099453039335 0.029593094944512947 0.08187130041289747 +0 0.43978629717844486 0.5031295910216215 0.02877111470214242 0.09795326099061129 +0 0.4739005844925247 0.6259366085654811 0.03452527743526511 0.12134498462342379 +0 0.5696670776818743 0.4146793097780461 0.02712700369913687 0.11988301862750138 +0 0.7295520185101341 0.35327580100611633 0.029593094944512947 0.10818715681109513 +0 0.6843403205918619 0.37008864419502124 0.029593094944512947 0.09795319406609786 +0 0.6148787756001465 0.40079043204324294 0.03863547968364674 0.08333333333333333 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000085.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000085.txt new file mode 100644 index 0000000..50b8a68 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000085.txt @@ -0,0 +1,8 @@ +0 0.7229757626459425 0.34523485417951616 0.036169313179138414 0.09502919514973958 +0 0.6785861202291732 0.38105355647572303 0.03123713068838625 0.10233915897837856 +0 0.617755894596274 0.41979625768828804 0.03123713068838625 0.10380112497430098 +0 0.5733662521795045 0.43368513542309145 0.027949059200639642 0.09064329716197231 +0 0.46280317388833236 0.6142406798245614 0.0468557336621455 0.12719298245614036 +0 0.4352651424384441 0.5009366085654811 0.027949059200639642 0.08771929824561404 +0 0.4015618828751156 0.4614629243549548 0.03616938843827065 0.08771929824561404 +0 0.38265517078404365 0.37812959102162147 0.027949059200639642 0.08187130041289747 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000086.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000086.txt new file mode 100644 index 0000000..4e2c059 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000086.txt @@ -0,0 +1,8 @@ +0 0.7262638717632552 0.35181380154793723 0.029593094944512947 0.08187130041289747 +0 0.6777641023572365 0.38763250384414405 0.02466091245376079 0.11257312172337583 +0 0.6189889025893958 0.4190652746903269 0.032059186189889025 0.09941522698653371 +0 0.5721332065568164 0.42710622151692706 0.025482967955263565 0.09210526315789473 +0 0.4677353563790844 0.6171646787409197 0.032059186189889025 0.1242690504642955 +0 0.43238802344231664 0.5155565027605024 0.02877111470214242 0.10233915897837856 +0 0.3974517182563001 0.4614629243549548 0.023016876709887484 0.08771929824561404 +0 0.3867653354028592 0.3810535899379798 0.02466091245376079 0.07894736842105264 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000087.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000087.txt new file mode 100644 index 0000000..258da7e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000087.txt @@ -0,0 +1,8 @@ +0 0.7303740363820708 0.34450387118155495 0.02630494819763409 0.09356722915381717 +0 0.6785861202291731 0.3869015208461829 0.036169313179138414 0.1257309495357045 +0 0.6181668847174592 0.41614130923622533 0.028771039443010172 0.09649122807017543 +0 0.5688450974395037 0.42856818751284953 0.02712700369913687 0.08333333333333333 +0 0.46115910051489284 0.6178956617388809 0.03370322193376233 0.08479529932925577 +0 0.42909987669543775 0.49947460910730196 0.032059186189889025 0.06725143968013295 +0 0.3953966547616754 0.46804187172337586 0.02055071020537916 0.08625726532517818 +0 0.3834772262855464 0.388363520304362 0.018084694219135326 0.0643275076882881 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000088.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000088.txt new file mode 100644 index 0000000..4170e34 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000088.txt @@ -0,0 +1,8 @@ +0 0.7307850641328222 0.3664336957429585 0.02877111470214242 0.09356722915381717 +0 0.6781750924784217 0.38982548630028446 0.032059186189889025 0.11111108880293998 +0 0.6140567200986436 0.42564422205874797 0.036991368680641186 0.09502926207425302 +0 0.5700781054326256 0.44245706524765277 0.036169313179138414 0.11988301862750138 +0 0.4632141640095176 0.6091237319143196 0.03452527743526511 0.09356722915381717 +0 0.4307439500688771 0.5170185022186815 0.03041515044601572 0.09649122807017543 +0 0.39498562701092405 0.495088677657278 0.021372765706881937 0.10526315789473684 +0 0.38224418066285837 0.4183342916923657 0.023838856952258014 0.10087719298245615 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000089.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000089.txt new file mode 100644 index 0000000..7a5b945 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000089.txt @@ -0,0 +1,8 @@ +0 0.7357172466235744 0.37081966065523914 0.030415075186883477 0.09941522698653371 +0 0.676120028983797 0.40005941558302494 0.03123713068838625 0.10818708988658168 +0 0.6181668847174591 0.42637520505670923 0.03041515044601572 0.09064323023745888 +0 0.5778874069195052 0.43734011733741096 0.02712700369913687 0.08625726532517818 +0 0.46444720963220565 0.6142407132868182 0.032059186189889025 0.09502926207425302 +0 0.4401973249291962 0.5206734506707443 0.021372765706881937 0.07163747151692708 +0 0.3953966547616754 0.49508867765727793 0.030415075186883477 0.08771929824561404 +0 0.38142216279092167 0.4241822226005688 0.032059186189889025 0.10087719298245615 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000090.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000090.txt new file mode 100644 index 0000000..8e7101d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000090.txt @@ -0,0 +1,8 @@ +0 0.7422935024877659 0.3664336957429585 0.03863540442451449 0.0818713673374109 +0 0.68310731259874 0.39348046821460386 0.03534733293676788 0.0891813311660499 +0 0.6259761862043388 0.42637520505670923 0.03288116643225956 0.08479536625376918 +0 0.5787094247914419 0.4402640827915125 0.023838856952258014 0.09502926207425302 +0 0.4697904198737091 0.5981588196336177 0.023016876709887484 0.09502926207425302 +0 0.43485411468769264 0.544065274690327 0.033703297192894575 0.10380119189881441 +0 0.3986848015085543 0.5206734506707442 0.032059186189889025 0.1242690504642955 +0 0.38306619853479507 0.43734011733741096 0.033703297192894575 0.07456140350877193 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000091.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000091.txt new file mode 100644 index 0000000..72f65cb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000091.txt @@ -0,0 +1,8 @@ +0 0.7476366750997033 0.38105355647572303 0.027949059200639642 0.09356722915381717 +0 0.6863954217160527 0.41906524122807015 0.035347257677635635 0.10526315789473684 +0 0.6259761862043388 0.44684303015993354 0.029593094944512947 0.09941522698653371 +0 0.5856966707768188 0.45561499344675166 0.029593094944512947 0.10526315789473684 +0 0.47307852899102193 0.6135096968266002 0.0279489839415074 0.09941522698653371 +0 0.43855325155575675 0.5279833810371265 0.029593094944512947 0.08918126424153645 +0 0.3999178471312423 0.5140945033023232 0.01972872996300863 0.102339225902892 +0 0.38429924415748307 0.4366091343394497 0.029593094944512947 0.07309943751284952 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000092.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000092.txt new file mode 100644 index 0000000..25f595a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000092.txt @@ -0,0 +1,8 @@ +0 0.7513358495973336 0.3942114846748218 0.02712700369913687 0.08771929824561404 +0 0.6888615129614288 0.4059073799534848 0.02877111470214242 0.10233915897837856 +0 0.6313193964458423 0.45049801207425305 0.020550785464511407 0.08625726532517818 +0 0.5803534981648812 0.4724278366356565 0.032059186189889025 0.08625726532517818 +0 0.4775996837310227 0.6200886441950213 0.03370322193376233 0.09502926207425302 +0 0.4389642793065082 0.5535681875128495 0.023838856952258014 0.09064323023745888 +0 0.4011508551243642 0.5228664331268845 0.018906674461505856 0.08187130041289747 +0 0.3838882540362978 0.4556149599844949 0.017262638717632554 0.06725143968013295 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000093.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000093.txt new file mode 100644 index 0000000..848ba72 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000093.txt @@ -0,0 +1,8 @@ +0 0.7558569667077683 0.41175534432394456 0.02466091245376079 0.08771929824561404 +0 0.7053021338071248 0.443919064705832 0.045211697918272196 0.0994151600620203 +0 0.64036174355541 0.4746208190917969 0.032059186189889025 0.07602343642920778 +0 0.589395845274449 0.48119976646021795 0.03534733293676788 0.09502919514973958 +0 0.4837649118444629 0.6171646787409197 0.03123713068838625 0.07456140350877193 +0 0.45581589027338937 0.5696500477037932 0.03781334892301171 0.10233915897837856 +0 0.41019320223393185 0.5455272406862494 0.02548289269613132 0.08918126424153645 +0 0.3888203988974838 0.4768138015479373 0.018906674461505856 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000094.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000094.txt new file mode 100644 index 0000000..306c8dc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000094.txt @@ -0,0 +1,8 @@ +0 0.7661323594400239 0.41906524122807015 0.03370322193376233 0.07894736842105264 +0 0.7057131615578761 0.45269099453039335 0.03452527743526511 0.08187130041289747 +0 0.6457049161673474 0.49581966065523914 0.03452527743526511 0.0774854024251302 +0 0.5976161368825139 0.5045915904798005 0.02548289269613132 0.08918126424153645 +0 0.48910812208596643 0.6537143974973444 0.02712700369913687 0.11549705371522066 +0 0.4574599636468287 0.5667260822496917 0.02630494819763409 0.08187130041289747 +0 0.4147143946034988 0.5586851688853481 0.02466091245376079 0.06578947368421054 +0 0.39662970038436346 0.5097085383900425 0.021372840966014182 0.08479536625376918 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000095.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000095.txt new file mode 100644 index 0000000..f08dcad --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000095.txt @@ -0,0 +1,8 @@ +0 0.7722975875534641 0.4292992039730674 0.036169313179138414 0.08771929824561404 +0 0.7147554710378776 0.4702348541795162 0.029593094944512947 0.09356729607833059 +0 0.6452939260461622 0.49581966065523914 0.02712700369913687 0.0774854024251302 +0 0.6054254383693936 0.5067845729359409 0.03123713068838625 0.10818715681109513 +0 0.49198524108209385 0.6390945033023231 0.03123713068838625 0.09210526315789473 +0 0.4595150271414535 0.5908488892672354 0.02383893221139026 0.09210526315789473 +0 0.4130703212300594 0.5725740466201514 0.02630494819763409 0.09941522698653371 +0 0.3962187102631782 0.5309073799534847 0.032059186189889025 0.09795319406609786 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000096.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000096.txt new file mode 100644 index 0000000..2dea91d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000096.txt @@ -0,0 +1,8 @@ +0 0.7727086153042155 0.4468430301599336 0.04192355117139334 0.10818715681109513 +0 0.7110563341698135 0.47681380154793723 0.030415075186883477 0.0891813311660499 +0 0.6415947891780981 0.49728166011341834 0.03945745992601726 0.11842105263157895 +0 0.6037813649959541 0.5016675915634423 0.021372840966014182 0.08918126424153645 +0 0.48951914983671774 0.6537143974973444 0.0328812416913918 0.08625733224969162 +0 0.46074807276414154 0.5776909945303934 0.031237205947518498 0.07456140350877193 +0 0.4180024660912454 0.5711120471619723 0.02466091245376079 0.09356729607833059 +0 0.3937526190178021 0.524328399122807 0.017262638717632554 0.06140350877192982 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000097.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000097.txt new file mode 100644 index 0000000..062a9bb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000097.txt @@ -0,0 +1,8 @@ +0 0.7784628532964704 0.4548839769865337 0.036991368680641186 0.07748533550061679 +0 0.7135224254151896 0.4855857313724987 0.04356766217439889 0.08625726532517818 +0 0.6502261085369143 0.5067845729359409 0.02712700369913687 0.09356722915381717 +0 0.602548319373266 0.5104395548502604 0.02548289269613132 0.08333333333333333 +0 0.4874640487125269 0.6529833810371264 0.03370322193376233 0.11988301862750138 +0 0.4582819815187654 0.6091237319143196 0.03288116643225956 0.10233915897837856 +0 0.4110152577354347 0.5769600115324321 0.02712700369913687 0.06725143968013295 +0 0.39416360913898735 0.5477202566046463 0.031237205947518498 0.08771929824561404 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000098.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000098.txt new file mode 100644 index 0000000..639ae4b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000098.txt @@ -0,0 +1,8 @@ +0 0.780517879161529 0.4548839769865337 0.03452527743526511 0.06578947368421054 +0 0.7118783520417502 0.49581966065523914 0.03370322193376233 0.09795319406609786 +0 0.6481710074127235 0.524328399122807 0.026305023456766337 0.09649122807017543 +0 0.5984381923840166 0.5374863273219058 0.036991368680641186 0.09941522698653371 +0 0.49034116770865444 0.6559073799534848 0.0279489839415074 0.09941522698653371 +0 0.4586930092695168 0.6083927489163583 0.025482967955263565 0.07456140350877193 +0 0.41019320223393185 0.5959658371774774 0.02712700369913687 0.07309943751284952 +0 0.3912864901428599 0.5374863273219058 0.023838856952258014 0.055555577863726696 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000099.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000099.txt new file mode 100644 index 0000000..9c7c4a3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000099.txt @@ -0,0 +1,8 @@ +0 0.7788738434176558 0.46584888926723556 0.0279489839415074 0.08479536625376918 +0 0.7131113976644382 0.495088677657278 0.03123713068838625 0.09649122807017543 +0 0.6448828982954107 0.5214044671309621 0.02630494819763409 0.08771929824561404 +0 0.60008222812789 0.5279833810371265 0.02383893221139026 0.08918126424153645 +0 0.4895191122071517 0.642749451754386 0.02466091245376079 0.09649122807017543 +0 0.4603370826429563 0.5923108887254146 0.02712700369913687 0.08040933441697505 +0 0.40649406536586774 0.580614959984495 0.026305023456766337 0.059941542776007405 +0 0.3851212620294197 0.5462582571464673 0.021372765706881937 0.055555577863726696 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000100.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000100.txt new file mode 100644 index 0000000..9d69b91 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000100.txt @@ -0,0 +1,8 @@ +0 0.3834772262855464 0.5572231694271691 0.018084694219135326 0.08040933441697505 +0 0.40032883725242757 0.6010827850877193 0.02383893221139026 0.09210526315789473 +0 0.7755857343003429 0.4585389254385965 0.023016876709887484 0.08771929824561404 +0 0.7073571973017494 0.4936266447368421 0.02466091245376079 0.10526315789473684 +0 0.6411837237977804 0.5126325373064008 0.036991368680641186 0.09649122807017543 +0 0.594327990135635 0.5250594155830249 0.032059186189889025 0.07748533550061679 +0 0.48170984834983815 0.6427494852166427 0.02548289269613132 0.10818715681109513 +0 0.45417185452951603 0.6003518020897581 0.02466091245376079 0.09941522698653371 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000101.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000101.txt new file mode 100644 index 0000000..1207a51 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000101.txt @@ -0,0 +1,8 @@ +0 0.7751747065495915 0.4702348541795161 0.033703297192894575 0.07017543859649122 +0 0.7090012706751888 0.4899716962847794 0.023016876709887484 0.1242690504642955 +0 0.6411837614273466 0.5301763634932669 0.028771039443010172 0.09064329716197231 +0 0.5943280277652011 0.5374862938596492 0.025482967955263565 0.07894736842105264 +0 0.48170984834983815 0.6273986080236602 0.02055071020537916 0.08040933441697505 +0 0.4504727176614519 0.6032758010061164 0.02219482120838471 0.10233915897837856 +0 0.3990957916297395 0.5974278366356566 0.01808461896000308 0.08771929824561404 +0 0.3806001072894189 0.5725740466201514 0.02219482120838471 0.0818713673374109 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000102.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000102.txt new file mode 100644 index 0000000..f2f0243 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000102.txt @@ -0,0 +1,8 @@ +0 0.7706535518095908 0.48777871382863897 0.027949059200639642 0.11111115572745339 +0 0.7131114352940042 0.5031295910216215 0.029593094944512947 0.09795326099061129 +0 0.6424168070500347 0.5214044671309621 0.0328812416913918 0.08771929824561404 +0 0.5951500456371378 0.5418722922341865 0.02548289269613132 0.08479529932925577 +0 0.48623100308983896 0.6295915570175439 0.021372765706881937 0.09649122807017543 +0 0.45211675340532526 0.6061997664602179 0.02712700369913687 0.08187130041289747 +0 0.4040279741204917 0.5966968536376953 0.031237205947518498 0.0774854024251302 +0 0.37813401604404284 0.5711120471619723 0.02055071020537916 0.06140350877192982 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000103.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000103.txt new file mode 100644 index 0000000..c32f207 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000103.txt @@ -0,0 +1,8 @@ +0 0.7842170160295932 0.47754478454589844 0.017262638717632554 0.09356722915381717 +0 0.7048911060563733 0.5104395548502604 0.021372840966014182 0.09210526315789473 +0 0.6399507158046587 0.5316383629514461 0.036169313179138414 0.09649122807017543 +0 0.5914509087690737 0.5455272406862492 0.031237205947518498 0.08625733224969162 +0 0.48170984834983815 0.6383635203043619 0.036991368680641186 0.09356722915381717 +0 0.4537608267787646 0.6091237319143196 0.018906674461505856 0.10233915897837856 +0 0.405672009864365 0.6127787138286389 0.03452527743526511 0.09795326099061129 +0 0.3810111350401703 0.5835389589008533 0.018084694219135326 0.0774854024251302 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000104.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000104.txt new file mode 100644 index 0000000..948827b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000104.txt @@ -0,0 +1,8 @@ +0 0.7850390715310959 0.47827576754385964 0.02219482120838471 0.08333333333333333 +0 0.7139334155363748 0.5082465723941201 0.02466091245376079 0.07894736842105264 +0 0.6428278348007861 0.5331003289473684 0.032059186189889025 0.07017543859649122 +0 0.5955610733878892 0.5418722922341865 0.03123713068838625 0.0818713673374109 +0 0.48705302096177555 0.6317845729359409 0.029593094944512947 0.08625733224969162 +0 0.4549938724014527 0.5901179062692742 0.01644058321612978 0.09941522698653371 +0 0.403205956248555 0.6230126431113796 0.02630494819763409 0.12426898353978208 +0 0.3756679247986668 0.594503871181555 0.02712700369913687 0.0818713673374109 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000105.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000105.txt new file mode 100644 index 0000000..ff3bf4e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000105.txt @@ -0,0 +1,8 @@ +0 0.7809289069122805 0.5016675915634423 0.020550785464511407 0.06286547476785224 +0 0.7106453440486282 0.5228664331268846 0.029593094944512947 0.09649122807017543 +0 0.6403617059258438 0.5491822226005688 0.03041515044601572 0.08187130041289747 +0 0.5906288532675709 0.5367553108616879 0.02466091245376079 0.07163740459241366 +0 0.482531903851341 0.6376325373064008 0.02712700369913687 0.10087719298245615 +0 0.45088370778263726 0.6091237653765762 0.023016801450755242 0.09649122807017543 +0 0.3941636091389874 0.6200886776572779 0.026305023456766337 0.09210526315789473 +0 0.37155779780941744 0.5784219775283546 0.017262638717632554 0.07602336950469435 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000106.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000106.txt new file mode 100644 index 0000000..6a23d5b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000106.txt @@ -0,0 +1,8 @@ +0 0.3670366054398505 0.5930418717233759 0.021372840966014182 0.09064323023745888 +0 0.3929305635162993 0.61935766119706 0.02548289269613132 0.07602343642920778 +0 0.4734895567417733 0.6259366085654812 0.028771039443010172 0.10087719298245615 +0 0.443485434046509 0.6171646787409197 0.026305023456766337 0.08333333333333333 +0 0.5844636251541308 0.5535681875128495 0.02219482120838471 0.08479536625376918 +0 0.778051787916153 0.48266176591839705 0.01972872996300863 0.08625733224969162 +0 0.706946169550998 0.5111705378482216 0.028771039443010172 0.09941522698653371 +0 0.6313193588162762 0.5477202231423897 0.02712700369913687 0.09356722915381717 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000107.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000107.txt new file mode 100644 index 0000000..7b98ebf --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000107.txt @@ -0,0 +1,8 @@ +0 0.7714755696815274 0.5067845729359409 0.026305023456766337 0.09064329716197231 +0 0.705713161557876 0.5177494852166427 0.029593094944512947 0.08625733224969162 +0 0.6304973409443395 0.5411412757739686 0.040279515427520035 0.08040933441697505 +0 0.5803534981648814 0.5491822226005688 0.02055071020537916 0.06725150660464639 +0 0.4714344556175825 0.6178956617388809 0.027949059200639642 0.07309943751284952 +0 0.4381422238050054 0.6069307494581792 0.023838856952258014 0.09795319406609786 +0 0.38224418066285837 0.6113167478327166 0.020550785464511407 0.06578947368421054 +0 0.35840526726625116 0.6040067840040776 0.020550747834945284 0.07748533550061679 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000108.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000108.txt new file mode 100644 index 0000000..32395fb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000108.txt @@ -0,0 +1,8 @@ +0 0.7657213693188386 0.4987436261093407 0.027949059200639642 0.07748533550061679 +0 0.6995478958148698 0.5221354501289234 0.03534733293676788 0.08918126424153645 +0 0.633374459940467 0.5360243278637267 0.03616938843827065 0.08187130041289747 +0 0.570489133183377 0.5623401173374108 0.02548289269613132 0.09356729607833059 +0 0.46814634650026965 0.6178956617388809 0.026305023456766337 0.08479529932925577 +0 0.43608716031038075 0.6083927489163583 0.02466091245376079 0.09502919514973958 +0 0.3793670616667309 0.6259366085654811 0.021372840966014182 0.10380112497430098 +0 0.35100701234490594 0.5952348541795162 0.02219482120838471 0.08625726532517818 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000109.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000109.txt new file mode 100644 index 0000000..6d3a19d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000109.txt @@ -0,0 +1,8 @@ +0 0.7677764328134633 0.49289566173888083 0.02548289269613132 0.07163740459241366 +0 0.6966707768187422 0.5279833810371265 0.029593094944512947 0.08040933441697505 +0 0.6276202595777782 0.5455272406862494 0.021372765706881937 0.0687134726005688 +0 0.5741882700514411 0.5469892401444285 0.01972872996300863 0.05994147585149397 +0 0.476777665859086 0.6310535899379798 0.036991368680641186 0.09649122807017543 +0 0.4340320591861898 0.599620819091797 0.02219482120838471 0.08625726532517818 +0 0.3769009704213548 0.6230126431113796 0.03452527743526511 0.08040933441697505 +0 0.3493629389714666 0.5893868898090564 0.012330456226880395 0.0687134726005688 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000110.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000110.txt new file mode 100644 index 0000000..fa9e318 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000110.txt @@ -0,0 +1,8 @@ +0 0.7731196430549668 0.49655064365320045 0.023016876709887484 0.08479536625376918 +0 0.700780979067124 0.5221354501289234 0.03452527743526511 0.09502926207425302 +0 0.6341964778124036 0.5499132390607867 0.02630494819763409 0.09210526315789473 +0 0.5700781054326256 0.5469892401444285 0.027949059200639642 0.09210526315789473 +0 0.4751335924856466 0.6186266447368421 0.028771039443010172 0.10087719298245615 +0 0.43403209681575605 0.6149716962847793 0.03534733293676788 0.09064323023745888 +0 0.3773119981721062 0.6405565027605024 0.025482967955263565 0.09502926207425302 +0 0.34607481103937077 0.6259366085654811 0.023838894581824137 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000111.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000111.txt new file mode 100644 index 0000000..623ad2d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000111.txt @@ -0,0 +1,8 @@ +0 0.7768187422934648 0.49947464256955865 0.02219482120838471 0.09649122807017543 +0 0.7040690881844367 0.5301763634932668 0.03123713068838625 0.06725143968013295 +0 0.6292642953216515 0.5426032752321478 0.027949059200639642 0.08625726532517818 +0 0.5696671153114403 0.5542991705108108 0.028771039443010172 0.11257312172337583 +0 0.4714344556175825 0.6113167478327166 0.03123713068838625 0.08333333333333333 +0 0.4373202059330688 0.6032758010061164 0.02055071020537916 0.11111108880293998 +0 0.37648998030016956 0.6259366085654812 0.032059186189889025 0.08625726532517818 +0 0.3493629389714666 0.6069307494581792 0.017262638717632554 0.08040933441697505 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000112.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000112.txt new file mode 100644 index 0000000..06f6a9a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000112.txt @@ -0,0 +1,8 @@ +0 0.35182903021684264 0.6208196606552392 0.020550785464511407 0.0643275076882881 +0 0.37484590692673014 0.6295915570175439 0.015618602973759249 0.09649122807017543 +0 0.7801068890403438 0.49435766119706004 0.02548289269613132 0.06871340567605537 +0 0.7061241516790614 0.5206734506707442 0.030415075186883477 0.09210526315789473 +0 0.6309083686950909 0.5279834144993832 0.023016801450755242 0.07456140350877193 +0 0.5696671153114403 0.5572231694271691 0.040279515427520035 0.08040933441697505 +0 0.4702014476244606 0.6149716962847793 0.02712700369913687 0.07602343642920778 +0 0.436498150431566 0.594503871181555 0.017262638717632554 0.07309943751284952 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000113.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000113.txt new file mode 100644 index 0000000..8c711e9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000113.txt @@ -0,0 +1,8 @@ +0 0.7833949981576565 0.49362667819909883 0.020550785464511407 0.07602336950469435 +0 0.7065351794298127 0.5177494852166427 0.01644058321612978 0.08625733224969162 +0 0.6309083686950909 0.5374863273219058 0.03288116643225956 0.09941522698653371 +0 0.5725442343075678 0.5433342916923657 0.02466091245376079 0.07017543859649122 +0 0.4747226023644613 0.594503871181555 0.018084694219135326 0.09356722915381717 +0 0.43937526942769345 0.601082818549976 0.027949059200639642 0.10672512389065927 +0 0.3703247145571632 0.6157026792827405 0.018084694219135326 0.07163740459241366 +0 0.34525277435265106 0.6047378004642956 0.02219482120838471 0.09649122807017543 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000114.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000114.txt new file mode 100644 index 0000000..7b30070 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000114.txt @@ -0,0 +1,8 @@ +0 0.7751747065495915 0.47754478454589844 0.02548289269613132 0.07602336950469435 +0 0.7032470326829339 0.5023986080236602 0.023016876709887484 0.08479529932925577 +0 0.6325524044389643 0.5228664331268845 0.03945745992601726 0.08187130041289747 +0 0.5709001609341284 0.5382173103198671 0.021372765706881937 0.07748533550061679 +0 0.47020140999489446 0.5857319413569936 0.025482967955263565 0.07309943751284952 +0 0.43485411468769264 0.5798839769865337 0.02877111470214242 0.08771929824561404 +0 0.3686806599985069 0.6157027127449972 0.026304985827200218 0.08333333333333333 +0 0.3382655283672742 0.593772854721337 0.018084694219135326 0.0774854024251302 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000115.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000115.txt new file mode 100644 index 0000000..17b4c56 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000115.txt @@ -0,0 +1,8 @@ +0 0.7776407977949676 0.4738898360938357 0.013974567229885942 0.0687134726005688 +0 0.7065351418002466 0.4928956952011376 0.03452527743526511 0.06578947368421054 +0 0.6235100949589627 0.5097085383900425 0.026305023456766337 0.06432744076377468 +0 0.5659679784433762 0.5250594155830249 0.02630494819763409 0.08333333333333333 +0 0.46526926513370837 0.575498012074253 0.032059186189889025 0.09649122807017543 +0 0.4266338230796277 0.5528372045148883 0.03370322193376233 0.09502926207425302 +0 0.3596383317037223 0.6120476973684211 0.01972872996300863 0.07894736842105264 +0 0.3333333458765221 0.5842699418988144 0.01972872996300863 0.06725150660464639 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000116.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000116.txt new file mode 100644 index 0000000..0fe78f3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000116.txt @@ -0,0 +1,7 @@ +0 0.7731196430549668 0.4621939408151727 0.03123713068838625 0.06578947368421054 +0 0.6921496220787415 0.48119976646021795 0.028771039443010172 0.07748533550061679 +0 0.6206330135924014 0.49728166011341834 0.02712700369913687 0.06578947368421054 +0 0.5618578138245607 0.5067845729359409 0.01808461896000308 0.0643275076882881 +0 0.4623921461375809 0.5601471348812707 0.018084694219135326 0.06871340567605537 +0 0.43074395006887717 0.5557611699689898 0.028771039443010172 0.0804094013414885 +0 0.3501849944729693 0.5784219775283546 0.03041515044601572 0.055555577863726696 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000117.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000117.txt new file mode 100644 index 0000000..567f3f8 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000117.txt @@ -0,0 +1,8 @@ +0 0.7657213316892725 0.4483050296181127 0.02466091245376079 0.08479536625376918 +0 0.6950267410748691 0.46584888926723544 0.031237205947518498 0.07894736842105264 +0 0.6165228489735859 0.4753518020897581 0.020550785464511407 0.07163740459241366 +0 0.5565146035830572 0.4892407132868181 0.020550785464511407 0.06725143968013295 +0 0.45293880890682797 0.5469892401444285 0.032059186189889025 0.07456140350877193 +0 0.4212906128381243 0.5447962576882881 0.01972872996300863 0.07309937058833607 +0 0.34278668310727495 0.5586851354230914 0.02712700369913687 0.051169612951446 +0 0.3160707071588895 0.5616091343394497 0.02466091245376079 0.07163740459241366 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000118.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000118.txt new file mode 100644 index 0000000..e99cb27 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000118.txt @@ -0,0 +1,7 @@ +0 0.7653103415680873 0.43587811787923175 0.018906749720638102 0.09795319406609786 +0 0.6892725407121802 0.46877288818359375 0.03123713068838625 0.07894736842105264 +0 0.6157007934720831 0.48046878346225674 0.028771039443010172 0.08479529932925577 +0 0.551582421092305 0.4921646787409197 0.025482967955263565 0.07894736842105264 +0 0.4541718168999499 0.5382173103198671 0.03123713068838625 0.09210526315789473 +0 0.41800250372081144 0.5272523980391653 0.0328812416913918 0.102339225902892 +0 0.3394985739899622 0.5579541524251302 0.023838856952258014 0.06432744076377468 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000119.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000119.txt new file mode 100644 index 0000000..1730b8d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000119.txt @@ -0,0 +1,8 @@ +0 0.7657213693188386 0.4424570987099095 0.023016876709887484 0.07017543859649122 +0 0.6954377688256204 0.4548839769865337 0.03041515044601572 0.07748533550061679 +0 0.6128237121055218 0.4709658706397341 0.027949059200639642 0.08333333333333333 +0 0.552815466714993 0.4848547483745374 0.01644058321612978 0.06725143968013295 +0 0.4570489358960773 0.5294453804953057 0.015618527714627004 0.0804094013414885 +0 0.41718048584887485 0.5331003624096251 0.02466091245376079 0.08479529932925577 +0 0.342786701922058 0.5484512396026076 0.030415112816449603 0.059941542776007405 +0 0.31072751573216906 0.5564921864292077 0.01890671209107198 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000120.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000120.txt new file mode 100644 index 0000000..b5fe4a3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000120.txt @@ -0,0 +1,8 @@ +0 0.31237157029082535 0.5477202566046464 0.010686420483007091 0.06140350877192982 +0 0.3382655283672742 0.5681880817078707 0.01644058321612978 0.06725143968013295 +0 0.7743526886776549 0.44538106416401113 0.025482967955263565 0.07309943751284952 +0 0.693793695452181 0.45780794244063533 0.04192355117139334 0.08040933441697505 +0 0.6169338767243373 0.47681380154793723 0.02466091245376079 0.07163747151692708 +0 0.5519934488430563 0.4833927489163582 0.01808461896000308 0.05263157894736842 +0 0.45581589027338937 0.5331003624096251 0.029593094944512947 0.0818713673374109 +0 0.41882452159274813 0.5089775553920813 0.021372840966014182 0.07163740459241366 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000121.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000121.txt new file mode 100644 index 0000000..bbf27d2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000121.txt @@ -0,0 +1,7 @@ +0 0.7727086153042155 0.4446500477037932 0.02548289269613132 0.0774854024251302 +0 0.6962597866975571 0.46950387118155495 0.018906749720638102 0.0774854024251302 +0 0.6189889402189619 0.4782758010061164 0.025482967955263565 0.07163740459241366 +0 0.5487053397257438 0.49581966065523914 0.01644058321612978 0.059941542776007405 +0 0.4595150271414535 0.5316383629514461 0.02383893221139026 0.07894736842105264 +0 0.4175914759700602 0.5338313454075864 0.02383893221139026 0.06871340567605537 +0 0.3353884281859298 0.5462582571464674 0.013974529600319821 0.04678364803916529 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000122.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000122.txt new file mode 100644 index 0000000..195dfe8 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000122.txt @@ -0,0 +1,8 @@ +0 0.7755856966707768 0.45269099453039335 0.02466091245376079 0.06725150660464639 +0 0.6958487589468056 0.476082818549976 0.027949059200639642 0.07602336950469435 +0 0.6202219482120839 0.48485474837453746 0.01972872996300863 0.05847950985557155 +0 0.5561035758323059 0.49728166011341834 0.01972872996300863 0.06578947368421054 +0 0.4595150271414535 0.5309073464912281 0.02055071020537916 0.07456140350877193 +0 0.42170160295930953 0.5265214150412041 0.02219482120838471 0.07163740459241366 +0 0.3345663914992101 0.5499132390607867 0.025482967955263565 0.04824561403508772 +0 0.30785039673604153 0.5521061880546705 0.018084656589569207 0.04093565020644874 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000123.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000123.txt new file mode 100644 index 0000000..8a0b618 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000123.txt @@ -0,0 +1,8 @@ +0 0.7788738434176558 0.45707695944267407 0.031237205947518498 0.07017543859649122 +0 0.6974928323202451 0.47681380154793723 0.01808461896000308 0.06578947368421054 +0 0.6210440037135866 0.48777871382863897 0.03288116643225956 0.07309937058833607 +0 0.551582421092305 0.5002056255675199 0.020550785464511407 0.0687134726005688 +0 0.4570489358960773 0.5331003289473684 0.02548289269613132 0.08771929824561404 +0 0.4200575672154362 0.5265213815789473 0.02712700369913687 0.09210526315789473 +0 0.33497740043517843 0.5638021167955901 0.023016839080321365 0.05847950985557155 +0 0.3041512598679775 0.5506442220587479 0.020550747834945284 0.07602336950469435 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000124.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000124.txt new file mode 100644 index 0000000..d9f3339 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000124.txt @@ -0,0 +1,8 @@ +0 0.7751747065495916 0.45853895890085317 0.030415075186883477 0.0643275076882881 +0 0.6991368680641183 0.4709658371774774 0.029593094944512947 0.08040933441697505 +0 0.6198109580908986 0.49070267928274053 0.02712700369913687 0.0818713673374109 +0 0.552815466714993 0.5009366085654811 0.023016876709887484 0.07017543859649122 +0 0.45581589027338937 0.5331003624096251 0.026305023456766337 0.07602336950469435 +0 0.4163584303473721 0.5287143974973444 0.02466091245376079 0.0818713673374109 +0 0.3300452367592093 0.5608781178792318 0.01972872996300863 0.055555577863726696 +0 0.30250720530932107 0.574036012616074 0.023838856952258014 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000125.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000125.txt new file mode 100644 index 0000000..83a781f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000125.txt @@ -0,0 +1,8 @@ +0 0.7784628156669042 0.46219394081517273 0.018906674461505856 0.07456140350877193 +0 0.6991369056936845 0.476082818549976 0.04110149566989057 0.0643275076882881 +0 0.62022198584165 0.48119976646021795 0.0328812416913918 0.07456140350877193 +0 0.5450062028576796 0.4907026792827406 0.028771039443010172 0.07309943751284952 +0 0.45376082677876467 0.5221354166666666 0.03863540442451449 0.08333333333333333 +0 0.41389233910199597 0.5082465723941201 0.0279489839415074 0.07017543859649122 +0 0.32799015444980156 0.561609100877193 0.028771077072576295 0.06578947368421054 +0 0.29510893157319285 0.5564921864292077 0.018906674461505856 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000126.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000126.txt new file mode 100644 index 0000000..8581969 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000126.txt @@ -0,0 +1,7 @@ +0 0.7809289069122805 0.4614629243549548 0.023838856952258014 0.05555551093921327 +0 0.6954377311960542 0.4738898360938357 0.02712700369913687 0.08040933441697505 +0 0.6157007934720831 0.4797377670020388 0.025482967955263565 0.07163740459241366 +0 0.5470612663523042 0.49289566173888083 0.021372840966014182 0.07163740459241366 +0 0.45211675340532526 0.5265213815789473 0.032059186189889025 0.09210526315789473 +0 0.41265929347930796 0.5221354501289234 0.033703297192894575 0.08918126424153645 +0 0.32922318125770655 0.5352933448657655 0.029593094944512947 0.06286547476785224 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000127.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000127.txt new file mode 100644 index 0000000..43c6848 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000127.txt @@ -0,0 +1,8 @@ +0 0.7764077521722796 0.46438688980905635 0.021372840966014182 0.06725143968013295 +0 0.6966707768187423 0.46731088872541454 0.03452527743526511 0.07602336950469435 +0 0.6165228489735859 0.4746208190917969 0.020550785464511407 0.08479536625376918 +0 0.5491163298469289 0.48997169628477927 0.03041515044601572 0.05409361186780428 +0 0.45006165228113443 0.5162874857584635 0.01972872996300863 0.07748533550061679 +0 0.4134813113512446 0.5067845729359409 0.023838856952258014 0.06725143968013295 +0 0.3242910175817374 0.557223169427169 0.03288120406182568 0.08625733224969162 +0 0.2918208036410971 0.5542992039730675 0.020550747834945284 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000128.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000128.txt new file mode 100644 index 0000000..0fea431 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000128.txt @@ -0,0 +1,8 @@ +0 0.2852445665916885 0.5455272741485061 0.017262638717632554 0.05701754385964913 +0 0.32346898089501774 0.5433342916923657 0.02630494819763409 0.04385964912280702 +0 0.41101522010586855 0.5111705043859649 0.020550785464511407 0.07017543859649122 +0 0.7842170536591593 0.4607319413569936 0.020550785464511407 0.06286547476785224 +0 0.6987258779429332 0.4680418717233758 0.02055071020537916 0.06578947368421054 +0 0.6157008311016492 0.4665798722651967 0.02219482120838471 0.07163740459241366 +0 0.5450062028576796 0.4870476973684211 0.028771039443010172 0.05701754385964913 +0 0.45211675340532526 0.5126325373064008 0.035347257677635635 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000129.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000129.txt new file mode 100644 index 0000000..3a59c90 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000129.txt @@ -0,0 +1,7 @@ +0 0.7903822817725994 0.4563459764447128 0.036169313179138414 0.07163740459241366 +0 0.7003699136868063 0.4680418717233758 0.036991368680641186 0.09210526315789473 +0 0.6210440037135866 0.48046878346225674 0.021372840966014182 0.0818713673374109 +0 0.5466502762311191 0.49070271274499727 0.017262638717632554 0.05263157894736842 +0 0.4517057256545739 0.5075155559339022 0.021372765706881937 0.06286554169236568 +0 0.415125384724684 0.506053556475723 0.02219482120838471 0.07163740459241366 +0 0.28729964890109627 0.5323693459494072 0.013152474098817046 0.04239768312688459 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000130.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000130.txt new file mode 100644 index 0000000..4a706ba --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000130.txt @@ -0,0 +1,8 @@ +0 0.7879161528976572 0.45049801207425305 0.014796547472256474 0.06578947368421054 +0 0.7011919691883092 0.4731588530958744 0.030415075186883477 0.07017543859649122 +0 0.622688077087026 0.4746208190917969 0.03123713068838625 0.07309937058833607 +0 0.5454171929788648 0.48412376537657614 0.021372765706881937 0.03070175438596491 +0 0.4533497990280133 0.5023986080236602 0.01972872996300863 0.07309943751284952 +0 0.4159474025966207 0.49581966065523925 0.023838856952258014 0.06286547476785224 +0 0.3173037527815775 0.5301763634932668 0.020550785464511407 0.06725143968013295 +0 0.2856555943424399 0.5352933448657655 0.02466091245376079 0.07163740459241366 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000131.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000131.txt new file mode 100644 index 0000000..7855cb1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000131.txt @@ -0,0 +1,8 @@ +0 0.7899712540218481 0.4614629243549548 0.032059186189889025 0.06725150660464639 +0 0.7003699513163725 0.4665799057274534 0.040279515427520035 0.07456140350877193 +0 0.6193999679697133 0.4702348541795162 0.029593094944512947 0.06432744076377468 +0 0.5445951751069281 0.47754478454589844 0.014796547472256474 0.04970758003101015 +0 0.4517057256545739 0.5082465389318633 0.03123713068838625 0.09064329716197231 +0 0.4138923391019961 0.49801264311137955 0.01644065847526202 0.05847950985557155 +0 0.320180871777705 0.5345623284055476 0.029593094944512947 0.06725143968013295 +0 0.2881216667730329 0.5338313454075864 0.023016839080321365 0.07456140350877193 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000132.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000132.txt new file mode 100644 index 0000000..33a091b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000132.txt @@ -0,0 +1,8 @@ +0 0.787505162776472 0.46804187172337586 0.02383893221139026 0.06871340567605537 +0 0.7016029593094945 0.4731588530958744 0.014796547472256474 0.07017543859649122 +0 0.6218660592150894 0.4695038711815549 0.02466091245376079 0.08625733224969162 +0 0.5478832842242409 0.4819307494581792 0.021372765706881937 0.055555577863726696 +0 0.45293877127726195 0.5060535564757229 0.020550785464511407 0.08625733224969162 +0 0.41101522010586855 0.5016676250256991 0.020550785464511407 0.05701754385964913 +0 0.31401562484948176 0.5184804682146039 0.020550747834945284 0.040935717130962175 +0 0.27661324723287223 0.5206734506707443 0.021372765706881937 0.04532168204324288 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000133.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000133.txt new file mode 100644 index 0000000..6175a41 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000133.txt @@ -0,0 +1,8 @@ +0 0.2790793384782483 0.5287143974973444 0.01972872996300863 0.0643275076882881 +0 0.7924373452672241 0.46584888926723556 0.02055071020537916 0.040935717130962175 +0 0.7065351794298127 0.47754478454589844 0.04110149566989057 0.07309943751284952 +0 0.621455031464338 0.475351802089758 0.025482967955263565 0.08625733224969162 +0 0.5474722941030556 0.48412376537657625 0.018906674461505856 0.05701754385964913 +0 0.4562268803945747 0.5053225734777618 0.02712700369913687 0.07602343642920778 +0 0.41389233910199597 0.5002056255675199 0.031237205947518498 0.08918126424153645 +0 0.3181257894682973 0.5243284325850637 0.015618565344193125 0.07602336950469435 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000134.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000134.txt new file mode 100644 index 0000000..d8f619b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000134.txt @@ -0,0 +1,9 @@ +0 0.7907933095233508 0.4746208190917969 0.02219482120838471 0.05263157894736842 +0 0.7488697207223913 0.49435766119706004 0.025482967955263565 0.07456140350877193 +0 0.7073571973017494 0.47900678400407765 0.023016801450755242 0.07894736842105264 +0 0.6230991048377774 0.47681380154793723 0.036991368680641186 0.07748533550061679 +0 0.5433621294842401 0.4841237319143195 0.02055071020537916 0.08040933441697505 +0 0.45581589027338937 0.5089775553920813 0.014796547472256474 0.08040933441697505 +0 0.4143033668527473 0.49801264311137955 0.03041515044601572 0.07309943751284952 +0 0.3127825792267937 0.512632503844144 0.018084656589569207 0.055555577863726696 +0 0.27661324723287223 0.5126325373064008 0.013152511728383168 0.03508771929824561 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000135.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000135.txt new file mode 100644 index 0000000..85896e0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000135.txt @@ -0,0 +1,8 @@ +0 0.2741471559874961 0.5250594155830249 0.01644058321612978 0.051169546026932564 +0 0.310727515732169 0.5287143974973445 0.023838894581824137 0.05847950985557155 +0 0.7961364821352883 0.4702348541795161 0.01644065847526202 0.07602343642920778 +0 0.7044801159351881 0.47973776700203885 0.02219482120838471 0.06286547476785224 +0 0.6230990672082114 0.48412373191431946 0.023838856952258014 0.08625733224969162 +0 0.5474722941030556 0.48924067982456143 0.023838856952258014 0.07894736842105264 +0 0.4591039993907021 0.49947460910730196 0.03123713068838625 0.07309943751284952 +0 0.4089601566112438 0.512632503844144 0.02466091245376079 0.09356722915381717 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000136.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000136.txt new file mode 100644 index 0000000..e12eea8 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000136.txt @@ -0,0 +1,7 @@ +0 0.7986025733806643 0.4782758010061164 0.03781334892301171 0.0687134726005688 +0 0.7053020961775586 0.47754478454589844 0.036991368680641186 0.06725143968013295 +0 0.6263872139550901 0.4753518020897581 0.028771039443010172 0.0774854024251302 +0 0.5466502386015529 0.4892407132868181 0.023838856952258014 0.06725143968013295 +0 0.45376082677876467 0.5038605740195826 0.023838856952258014 0.07602336950469435 +0 0.4130703212300594 0.49508864419502124 0.03123713068838625 0.0818713673374109 +0 0.3152486892869529 0.5265214150412041 0.02466091245376079 0.08625733224969162 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000137.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000137.txt new file mode 100644 index 0000000..fa8283e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000137.txt @@ -0,0 +1,8 @@ +0 0.805178829244856 0.48777871382863897 0.02630494819763409 0.04970764695552357 +0 0.7114673619205649 0.48631671437045987 0.0328812416913918 0.055555577863726696 +0 0.6288533052004663 0.4892407132868181 0.020550785464511407 0.07309943751284952 +0 0.550349375469617 0.4965506436532004 0.027949059200639642 0.05847957678008498 +0 0.4623921461375809 0.5045915570175439 0.02630494819763409 0.07456140350877193 +0 0.4163584303473721 0.5075155559339022 0.0279489839415074 0.07456140350877193 +0 0.31237157029082535 0.538948326780085 0.02219482120838471 0.07017543859649122 +0 0.27743528391959194 0.5279834144993832 0.0164406208456959 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000138.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000138.txt new file mode 100644 index 0000000..5ff8cb0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000138.txt @@ -0,0 +1,8 @@ +0 0.8027127003699137 0.48631671437045987 0.03452527743526511 0.09064329716197231 +0 0.7090012706751888 0.4855857313724987 0.0328812416913918 0.07456140350877193 +0 0.6259761862043388 0.48485474837453746 0.0279489839415074 0.05847950985557155 +0 0.5474722941030556 0.4863167478327165 0.015618602973759249 0.07017543859649122 +0 0.46444720963220565 0.5053225734777618 0.04192355117139334 0.08187130041289747 +0 0.4143033668527473 0.501667625025699 0.03041515044601572 0.08333333333333333 +0 0.31976984402695363 0.5418722587719298 0.018906674461505856 0.06140350877192982 +0 0.2770242561688405 0.5272523980391652 0.02548293032569744 0.07602343642920778 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000139.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000139.txt new file mode 100644 index 0000000..3ca2ebd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000139.txt @@ -0,0 +1,8 @@ +0 0.8105220018567932 0.49435766119706004 0.020550785464511407 0.051169546026932564 +0 0.7209206991513178 0.49508864419502124 0.02712700369913687 0.0818713673374109 +0 0.6317304241965938 0.4987436261093408 0.02466091245376079 0.06871340567605537 +0 0.5491163674764951 0.5009366085654812 0.02712700369913687 0.06140350877192982 +0 0.4632141640095176 0.5119015208461829 0.023016801450755242 0.06871340567605537 +0 0.4200575672154362 0.495088677657278 0.02219482120838471 0.06140350877192982 +0 0.318947826155017 0.5119015208461829 0.032059186189889025 0.05701754385964913 +0 0.2790793384782483 0.5148254863002845 0.01644058321612978 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000140.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000140.txt new file mode 100644 index 0000000..ea4b5ed --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000140.txt @@ -0,0 +1,7 @@ +0 0.8105220018567932 0.5045915904798005 0.020550785464511407 0.0774854024251302 +0 0.7233867903966938 0.49947464256955865 0.02219482120838471 0.07894736842105264 +0 0.6309083686950909 0.4921646787409197 0.02466091245376079 0.07309937058833607 +0 0.5511713933415537 0.48119976646021795 0.03452527743526511 0.06871340567605537 +0 0.47020140999489446 0.5016675915634423 0.020550785464511407 0.07163740459241366 +0 0.42704481320081306 0.5016675915634423 0.021372765706881937 0.05409354494329084 +0 0.3152486892869529 0.5287143974973445 0.02466091245376079 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000141.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000141.txt new file mode 100644 index 0000000..4b7c37e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000141.txt @@ -0,0 +1,7 @@ +0 0.8191533212156095 0.5009366085654811 0.03123713068838625 0.07017543859649122 +0 0.7184546079059417 0.4987436261093407 0.030415075186883477 0.07163747151692708 +0 0.6387176701819706 0.4950886441950212 0.045211697918272196 0.07602336950469435 +0 0.5552815955899353 0.49801264311137955 0.014796547472256474 0.05847950985557155 +0 0.475544620236398 0.5075155559339021 0.026305023456766337 0.07748533550061679 +0 0.4266338230796277 0.4965506436532004 0.015618602973759249 0.06140350877192982 +0 0.3259350721403938 0.5170184687564248 0.021372765706881937 0.04970758003101015 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000142.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000142.txt new file mode 100644 index 0000000..8f8575f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000142.txt @@ -0,0 +1,7 @@ +0 0.8199753767171124 0.513363520304362 0.02630494819763409 0.08040933441697505 +0 0.7274969173859434 0.49947460910730196 0.032059186189889025 0.07602336950469435 +0 0.6452939260461622 0.5104395213880036 0.032059186189889025 0.0774854024251302 +0 0.5655569506926248 0.4907026792827406 0.032059186189889025 0.07309943751284952 +0 0.47842170160295927 0.5053225734777618 0.02219482120838471 0.07309937058833607 +0 0.42457872195543694 0.5133635203043619 0.036169313179138414 0.07163740459241366 +0 0.31483766153620146 0.531638362951446 0.028771039443010172 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000143.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000143.txt new file mode 100644 index 0000000..1a34dde --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000143.txt @@ -0,0 +1,7 @@ +0 0.817098257720985 0.5214044671309621 0.02383893221139026 0.06140350877192982 +0 0.7299630462608855 0.5155565027605024 0.03534733293676788 0.09064329716197231 +0 0.6436498150431567 0.49947460910730196 0.02712700369913687 0.06725143968013295 +0 0.5659679784433763 0.49947464256955865 0.03123713068838625 0.06140350877192982 +0 0.4792437571044621 0.5075155559339022 0.030415075186883477 0.06286554169236568 +0 0.42992193219694047 0.4987436261093407 0.018906749720638102 0.05409361186780428 +0 0.32346898089501774 0.5155564692982456 0.02630494819763409 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000144.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000144.txt new file mode 100644 index 0000000..bbec899 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000144.txt @@ -0,0 +1,6 @@ +0 0.823263485834425 0.5257903985809861 0.031237205947518498 0.0643275076882881 +0 0.721331689272503 0.5119015208461829 0.03945745992601726 0.08625726532517818 +0 0.6395396880539073 0.49508864419502124 0.030415075186883477 0.06725143968013295 +0 0.558569704707248 0.5060535899379798 0.018084694219135326 0.06578947368421054 +0 0.475544620236398 0.5038606074818394 0.0279489839415074 0.07894736842105264 +0 0.42992193219694047 0.49435766119706004 0.02877111470214242 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000145.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000145.txt new file mode 100644 index 0000000..408b1f6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000145.txt @@ -0,0 +1,6 @@ +0 0.816276202219482 0.5184804682146039 0.02712700369913687 0.05847957678008498 +0 0.7348951911220716 0.5104395548502604 0.02712700369913687 0.06578947368421054 +0 0.6366625690577797 0.4987436261093407 0.036169313179138414 0.0804094013414885 +0 0.5614468237033755 0.4965506436532004 0.02712700369913687 0.05555551093921327 +0 0.476777665859086 0.5023986080236602 0.04027944016838779 0.06725143968013295 +0 0.4286888865742524 0.4870477308306778 0.023016801450755242 0.0774854024251302 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000146.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000146.txt new file mode 100644 index 0000000..aec525e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000146.txt @@ -0,0 +1,7 @@ +0 0.8232634858344252 0.5265214150412041 0.03288116643225956 0.0687134726005688 +0 0.7320181097555102 0.5133634868421052 0.05096593591052713 0.08333333333333333 +0 0.6387176325524045 0.5045915904798005 0.02712700369913687 0.07163740459241366 +0 0.5614467860738094 0.48631671437045987 0.0139744919707537 0.04093565020644874 +0 0.475544620236398 0.5053225734777618 0.021372840966014182 0.05555551093921327 +0 0.43033295994769194 0.5067845394736843 0.018084694219135326 0.06140350877192982 +0 0.3173037527815775 0.5221354166666666 0.02219482120838471 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000147.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000147.txt new file mode 100644 index 0000000..a7929bf --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000147.txt @@ -0,0 +1,7 @@ +0 0.3181257706535142 0.5097085383900425 0.036991368680641186 0.05263157894736842 +0 0.8294287139478653 0.5352933448657655 0.033703297192894575 0.08625733224969162 +0 0.7279079451366947 0.5177494852166428 0.0328812416913918 0.08918126424153645 +0 0.6354295234350917 0.4958196271929824 0.025482967955263565 0.06578947368421054 +0 0.5581586769564966 0.5002056255675199 0.02219482120838471 0.05409354494329084 +0 0.47801071148177404 0.4914336957429585 0.0279489839415074 0.05409354494329084 +0 0.4286888865742525 0.48266176591839716 0.03452527743526511 0.0687134726005688 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000148.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000148.txt new file mode 100644 index 0000000..3eb8807 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000148.txt @@ -0,0 +1,7 @@ +0 0.8269626227024892 0.5301763969555235 0.030415075186883477 0.06140350877192982 +0 0.7328401276274469 0.513363520304362 0.04274560667289611 0.0687134726005688 +0 0.6407727336765953 0.506053556475723 0.021372840966014182 0.07163740459241366 +0 0.5676120518168156 0.4914336957429585 0.02466091245376079 0.06286547476785224 +0 0.4775996837310227 0.5104395548502604 0.025482967955263565 0.06578947368421054 +0 0.43074395006887717 0.49581966065523914 0.028771039443010172 0.059941542776007405 +0 0.27332511930077646 0.499474609107302 0.026304985827200218 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000149.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000149.txt new file mode 100644 index 0000000..856b287 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000149.txt @@ -0,0 +1,7 @@ +0 0.8261406048305526 0.5491822226005688 0.03041515044601572 0.07017543859649122 +0 0.7336621831289496 0.5250594155830249 0.04274560667289611 0.08625726532517818 +0 0.6457049161673474 0.5221354501289234 0.01972872996300863 0.0774854024251302 +0 0.5721331689272503 0.5250594155830249 0.02712700369913687 0.06286554169236568 +0 0.4792437571044621 0.5009366085654811 0.030415075186883477 0.07017543859649122 +0 0.4336210690650047 0.4914336957429585 0.01644065847526202 0.051169612951446 +0 0.32100288964964163 0.5023986080236602 0.023016876709887484 0.06725143968013295 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000150.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000150.txt new file mode 100644 index 0000000..e2120b6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000150.txt @@ -0,0 +1,7 @@ +0 0.832716823065178 0.5689190647058321 0.03041515044601572 0.07456140350877193 +0 0.7410604192355117 0.5360243278637267 0.029593094944512947 0.09356729607833059 +0 0.6477599796619721 0.5199424676727831 0.023838856952258014 0.06725143968013295 +0 0.5676120141872495 0.5126325373064008 0.0328812416913918 0.06140350877192982 +0 0.4891081220859664 0.5075155559339021 0.032059186189889025 0.06578947368421054 +0 0.43526514243844405 0.5111705378482216 0.0328812416913918 0.055555577863726696 +0 0.3255240632044255 0.49289566173888094 0.023838894581824137 0.04532161511872944 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000151.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000151.txt new file mode 100644 index 0000000..fc09620 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000151.txt @@ -0,0 +1,7 @@ +0 0.8310727873213046 0.5659950992517304 0.020550785464511407 0.07163740459241366 +0 0.7398273736128237 0.544065274690327 0.0468557336621455 0.0774854024251302 +0 0.6481710074127235 0.5360243278637267 0.014796547472256474 0.05555551093921327 +0 0.571722178806065 0.5155565027605024 0.03288116643225956 0.05847950985557155 +0 0.48951914983671785 0.5192114846748218 0.021372765706881937 0.04824561403508772 +0 0.4352651048088779 0.5111705378482216 0.02466091245376079 0.05847950985557155 +0 0.3288121723217382 0.5075155559339021 0.030415112816449603 0.051169546026932564 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000152.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000152.txt new file mode 100644 index 0000000..25e3b1a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000152.txt @@ -0,0 +1,7 @@ +0 0.8265516325813038 0.5674570987099096 0.029593094944512947 0.07456140350877193 +0 0.7381833378689503 0.5477202231423897 0.018906749720638102 0.0818713673374109 +0 0.6444718705446594 0.5352933448657655 0.032059186189889025 0.08625733224969162 +0 0.5626798316964974 0.5257903985809862 0.03123713068838625 0.0818713673374109 +0 0.4808878304779015 0.5257904320432429 0.025482967955263565 0.06140350877192982 +0 0.43238802344231664 0.49728166011341834 0.030415075186883477 0.07456140350877193 +0 0.3205918618988903 0.5119015208461829 0.032059186189889025 0.08333333333333333 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000153.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000153.txt new file mode 100644 index 0000000..4b6fa2a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000153.txt @@ -0,0 +1,7 @@ +0 0.8240855413359279 0.570381064164011 0.029593094944512947 0.07163740459241366 +0 0.7361282367447595 0.5557611699689898 0.029593094944512947 0.06871340567605537 +0 0.6411837237977805 0.5426032752321478 0.032059186189889025 0.08333333333333333 +0 0.5610357959526241 0.5345623618678044 0.027949059200639642 0.07894736842105264 +0 0.4874640487125269 0.5228664331268845 0.03370322193376233 0.05847957678008498 +0 0.4286888865742524 0.5148254863002844 0.026305023456766337 0.05409354494329084 +0 0.320180871777705 0.5155564692982456 0.029593094944512947 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000154.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000154.txt new file mode 100644 index 0000000..ff21839 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000154.txt @@ -0,0 +1,7 @@ +0 0.8228524957132398 0.5776909945303934 0.02712700369913687 0.08333333333333333 +0 0.7279079827662608 0.5659950992517304 0.03945745992601726 0.09502926207425302 +0 0.6370735968085313 0.5455272741485061 0.02383893221139026 0.07456140350877193 +0 0.5606247682018728 0.531638362951446 0.02055071020537916 0.05847957678008498 +0 0.4821208384710235 0.5287143974973445 0.02466091245376079 0.06725143968013295 +0 0.43033295994769194 0.5082465389318634 0.01644058321612978 0.05847950985557155 +0 0.3160707071588895 0.5104395548502604 0.03123713068838625 0.09210526315789473 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000155.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000155.txt new file mode 100644 index 0000000..a596ec7 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000155.txt @@ -0,0 +1,7 @@ +0 0.817098257720985 0.5945038377192983 0.030415075186883477 0.06140350877192982 +0 0.72585288164207 0.568919064705832 0.032059186189889025 0.05701754385964913 +0 0.6407727336765954 0.5535681875128494 0.03452527743526511 0.07602343642920778 +0 0.5548705678391839 0.5309073464912281 0.03041515044601572 0.06578947368421054 +0 0.4800657749763988 0.5250594155830249 0.03534733293676788 0.05994147585149397 +0 0.4221126307100609 0.5148254863002845 0.02630494819763409 0.0774854024251302 +0 0.30579533324141683 0.5250594155830249 0.023838894581824137 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000156.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000156.txt new file mode 100644 index 0000000..668ea57 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000156.txt @@ -0,0 +1,7 @@ +0 0.8121660752302328 0.6054687500000001 0.02055071020537916 0.07456140350877193 +0 0.7254418538913187 0.5871939408151726 0.03781342418214396 0.07017543859649122 +0 0.6309083686950909 0.5674570987099095 0.01972872996300863 0.06578947368421054 +0 0.5478832842242409 0.5521061880546704 0.02630494819763409 0.07309943751284952 +0 0.47348955674177323 0.5389482933178282 0.03041515044601572 0.06725143968013295 +0 0.42087958508737283 0.5250594155830249 0.015618602973759249 0.06286554169236568 +0 0.30168516862260136 0.5148255197625411 0.020550747834945284 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000157.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000157.txt new file mode 100644 index 0000000..79dc540 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000157.txt @@ -0,0 +1,6 @@ +0 0.8014796923767917 0.6142407132868182 0.028771039443010172 0.07163740459241366 +0 0.7184546079059417 0.5952348541795162 0.033703297192894575 0.08625726532517818 +0 0.6189889402189619 0.5696500811660499 0.028771039443010172 0.08771929824561404 +0 0.5474722941030556 0.5447962576882881 0.0139744919707537 0.07602343642920778 +0 0.46568025525489365 0.5426032752321478 0.01808461896000308 0.07163747151692708 +0 0.40937114673242914 0.5162874857584635 0.032059186189889025 0.05994147585149397 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000158.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000158.txt new file mode 100644 index 0000000..bf79465 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000158.txt @@ -0,0 +1,7 @@ +0 0.8006576745048551 0.6120477308306778 0.036991368680641186 0.07602336950469435 +0 0.7172215622832537 0.6142407132868182 0.03452527743526511 0.08040933441697505 +0 0.6198109580908986 0.5769600115324321 0.032059186189889025 0.0643275076882881 +0 0.5421290838615521 0.5667260822496917 0.02466091245376079 0.05555551093921327 +0 0.4710234654963972 0.5411412757739686 0.03534733293676788 0.0774854024251302 +0 0.40937118436199527 0.5352933448657655 0.025482967955263565 0.06286547476785224 +0 0.29264284032781673 0.5257903985809862 0.02219482120838471 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000159.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000159.txt new file mode 100644 index 0000000..092c879 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000159.txt @@ -0,0 +1,7 @@ +0 0.7912042996445361 0.6244746091073019 0.021372840966014182 0.059941542776007405 +0 0.7032470703125 0.6091237319143196 0.029593094944512947 0.06725143968013295 +0 0.6111796387320824 0.5784220109906113 0.0279489839415074 0.06140350877192982 +0 0.5380189568723027 0.5594161518833094 0.01972872996300863 0.06725143968013295 +0 0.4529388089068281 0.5455272406862492 0.02712700369913687 0.07163740459241366 +0 0.40526101974317974 0.5265214150412041 0.02548289269613132 0.0774854024251302 +0 0.2959309494451295 0.5214044336687055 0.02712700369913687 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000160.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000160.txt new file mode 100644 index 0000000..0a8f9bd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000160.txt @@ -0,0 +1,7 @@ +0 0.7784628156669042 0.6222816601134182 0.03534733293676788 0.07017543859649122 +0 0.6970818421990598 0.5981588196336177 0.036991368680641186 0.059941542776007405 +0 0.6054254007398273 0.582076959442674 0.029593094944512947 0.06578947368421054 +0 0.5367859112496147 0.5674570987099095 0.02712700369913687 0.06578947368421054 +0 0.4496506621599491 0.5462582571464673 0.032059186189889025 0.06725143968013295 +0 0.3962187102631782 0.5301763634932668 0.032059186189889025 0.06725143968013295 +0 0.2848335576557202 0.5360243278637267 0.023016839080321365 0.05847957678008498 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000161.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000161.txt new file mode 100644 index 0000000..e474bbe --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000161.txt @@ -0,0 +1,7 @@ +0 0.2831895030970638 0.5257904320432429 0.03452527743526511 0.06140350877192982 +0 0.3921085080147965 0.5309073464912281 0.02712700369913687 0.05701754385964913 +0 0.44759559866532445 0.5447962576882881 0.0328812416913918 0.05847957678008498 +0 0.5972051091317625 0.5879249238131339 0.02630494819763409 0.059941542776007405 +0 0.5215782983970407 0.5638021167955901 0.01972872996300863 0.04093565020644874 +0 0.6917385943279901 0.606199766460218 0.029593094944512947 0.07309937058833607 +0 0.7739416609269035 0.6208196606552392 0.02466091245376079 0.06725143968013295 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000162.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000162.txt new file mode 100644 index 0000000..4585cff --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000162.txt @@ -0,0 +1,7 @@ +0 0.7616112047000232 0.6215506436532003 0.021372840966014182 0.07163747151692708 +0 0.686806411837238 0.6047378004642955 0.029593094944512947 0.07017543859649122 +0 0.5943280277652011 0.5791529939885725 0.03041515044601572 0.07163740459241366 +0 0.5137690345397272 0.5645330997935513 0.02219482120838471 0.05994147585149397 +0 0.43978629717844486 0.5418722587719298 0.02548289269613132 0.05263157894736842 +0 0.3879983810255471 0.5309073799534848 0.02548289269613132 0.059941542776007405 +0 0.27044801911943206 0.5162874857584635 0.017262638717632554 0.05994147585149397 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000163.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000163.txt new file mode 100644 index 0000000..0364e8d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000163.txt @@ -0,0 +1,7 @@ +0 0.27003699136868065 0.5177494852166427 0.014796547472256474 0.059941542776007405 +0 0.3806001072894189 0.5257903985809862 0.030415075186883477 0.06725143968013295 +0 0.43773119605425403 0.5469892401444285 0.02466091245376079 0.05994147585149397 +0 0.7632552404438964 0.6178956952011376 0.029593094944512947 0.06140350877192982 +0 0.6814632392253006 0.5974278366356566 0.02383893221139026 0.06432744076377468 +0 0.5819975715383208 0.5747669956140352 0.028771039443010172 0.07456140350877193 +0 0.5129470166677905 0.5579541524251302 0.015618602973759249 0.07602343642920778 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000164.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000164.txt new file mode 100644 index 0000000..0666283 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000164.txt @@ -0,0 +1 @@ +0 0.27085902805540035 0.524328399122807 0.021372803336448056 0.04385964912280702 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000165.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000165.txt new file mode 100644 index 0000000..ac96afa --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000165.txt @@ -0,0 +1 @@ +0 0.2667488822513679 0.5309073799534848 0.01644058321612978 0.059941542776007405 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000166.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000166.txt new file mode 100644 index 0000000..2a3b160 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000166.txt @@ -0,0 +1,7 @@ +0 0.7632552404438964 0.6127787138286389 0.029593094944512947 0.06578947368421054 +0 0.6752980111118603 0.6040067840040776 0.026305023456766337 0.07748533550061679 +0 0.5852856806556335 0.5784220109906113 0.02548289269613132 0.07017543859649122 +0 0.5067817509247843 0.5557611699689898 0.009864364981504316 0.05409361186780428 +0 0.43403209681575605 0.5440652412280702 0.023838856952258014 0.04824561403508772 +0 0.3764899803001695 0.5250594155830249 0.02219482120838471 0.06286554169236568 +0 0.2638717820700235 0.5126325373064008 0.020550747834945284 0.04385964912280702 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000167.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000167.txt new file mode 100644 index 0000000..bc195bf --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000167.txt @@ -0,0 +1,7 @@ +0 0.7554459765865829 0.612047697368421 0.02219482120838471 0.07017543859649122 +0 0.676120028983797 0.5959658706397342 0.0328812416913918 0.07894736842105264 +0 0.5844636251541308 0.5718430636221903 0.02712700369913687 0.07456140350877193 +0 0.5080148341770384 0.5601471348812707 0.018906674461505856 0.06871340567605537 +0 0.4241677318342517 0.5309073464912281 0.03370322193376233 0.05701754385964913 +0 0.3777229882932915 0.524328399122807 0.02630494819763409 0.04385964912280702 +0 0.2581175628925516 0.5053225734777618 0.028771039443010172 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000168.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000168.txt new file mode 100644 index 0000000..526f238 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000168.txt @@ -0,0 +1,7 @@ +0 0.26839295562480736 0.4987436261093408 0.02466091245376079 0.06286554169236568 +0 0.37936706166673095 0.5257904320432429 0.029593094944512947 0.05263157894736842 +0 0.5067817885543503 0.5572231359649124 0.04274560667289611 0.05701754385964913 +0 0.42827785882350106 0.5462582236842105 0.015618602973759249 0.04385964912280702 +0 0.5791204525421932 0.568919064705832 0.029593094944512947 0.06871340567605537 +0 0.6789971479799244 0.5952348541795162 0.033703297192894575 0.06578947368421054 +0 0.755445976586583 0.6061997664602179 0.02712700369913687 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000169.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000169.txt new file mode 100644 index 0000000..e4a354b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000169.txt @@ -0,0 +1,6 @@ +0 0.3727908058025393 0.5155565027605024 0.01644058321612978 0.0643275076882881 +0 0.4319770333211313 0.5331003289473684 0.029593094944512947 0.06140350877192982 +0 0.5030826140567202 0.5411412757739686 0.02712700369913687 0.059941542776007405 +0 0.5787094247914418 0.5769600115324321 0.015618602973759249 0.07602336950469435 +0 0.6715988742437962 0.5835389589008533 0.018906749720638102 0.07163740459241366 +0 0.7529798853412069 0.6135096968266002 0.030415075186883477 0.0643275076882881 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000170.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000170.txt new file mode 100644 index 0000000..1337fed --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000170.txt @@ -0,0 +1,6 @@ +0 0.36744761437581885 0.5053225734777618 0.01890671209107198 0.07602343642920778 +0 0.74845869297164 0.60546875 0.03452527743526511 0.06578947368421054 +0 0.6707768563718596 0.5857319413569936 0.03041515044601572 0.06725143968013295 +0 0.5745992601726264 0.568919064705832 0.02712700369913687 0.06578947368421054 +0 0.49732845132359743 0.5418722922341865 0.02219482120838471 0.05847950985557155 +0 0.4266338230796278 0.5228664331268845 0.03534733293676788 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000171.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000171.txt new file mode 100644 index 0000000..c100694 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000171.txt @@ -0,0 +1,6 @@ +0 0.36457051419447445 0.5023986080236602 0.021372840966014182 0.055555577863726696 +0 0.4192355493434996 0.5228664331268846 0.023838856952258014 0.06140350877192982 +0 0.7439375758612053 0.5959658371774773 0.02219482120838471 0.07602336950469435 +0 0.667899737375732 0.580614959984495 0.029593094944512947 0.059941542776007405 +0 0.5754213156741292 0.550644222058748 0.02055071020537916 0.06725143968013295 +0 0.48910812208596643 0.532369379411664 0.02055071020537916 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000172.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000172.txt new file mode 100644 index 0000000..a24997c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000172.txt @@ -0,0 +1,5 @@ +0 0.3633374685717864 0.5067845729359409 0.02219482120838471 0.04678364803916529 +0 0.4171804858488749 0.5155565027605024 0.01972872996300863 0.0643275076882881 +0 0.5643239050699369 0.5542991705108107 0.031237205947518498 0.0774854024251302 +0 0.6633785826357314 0.5886559068110951 0.015618602973759249 0.07309937058833607 +0 0.7439375382316391 0.5937728547213371 0.03370322193376233 0.08040933441697505 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000173.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000173.txt new file mode 100644 index 0000000..2614be6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000173.txt @@ -0,0 +1,6 @@ +0 0.7492807484731427 0.594503871181555 0.02466091245376079 0.07602336950469435 +0 0.6662557016318588 0.5879249238131339 0.029593094944512947 0.0774854024251302 +0 0.5741882700514411 0.5608781178792318 0.0279489839415074 0.07309943751284952 +0 0.49486232244865525 0.5484512061403509 0.025482967955263565 0.03947368421052632 +0 0.4184134938419968 0.5206734506707442 0.028771039443010172 0.05994147585149397 +0 0.362926440821035 0.5023986080236603 0.023016876709887484 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000174.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000174.txt new file mode 100644 index 0000000..ce13c7c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000174.txt @@ -0,0 +1,7 @@ +0 0.7558570043373344 0.5981588196336177 0.03123713068838625 0.06286547476785224 +0 0.6814632392253006 0.5798839769865338 0.035347257677635635 0.06432744076377468 +0 0.5799425080436962 0.5645330997935513 0.03452527743526511 0.07163747151692708 +0 0.5006165604409102 0.5411412757739686 0.023838856952258014 0.051169612951446 +0 0.425811767578125 0.5360243278637267 0.03370322193376233 0.04385964912280702 +0 0.37032471455716326 0.5177494517543859 0.027949059200639642 0.03070175438596491 +0 0.2556514716471755 0.4921646787409197 0.023838856952258014 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000175.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000175.txt new file mode 100644 index 0000000..8d74e2c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000175.txt @@ -0,0 +1,6 @@ +0 0.7599671313265837 0.6018138015479372 0.027949059200639642 0.07309937058833607 +0 0.6794081381011098 0.580614959984495 0.03945745992601726 0.051169612951446 +0 0.5865187262783216 0.5645330997935513 0.03288116643225956 0.05409361186780428 +0 0.49773944144478266 0.544065274690327 0.01808461896000308 0.051169612951446 +0 0.424578721955437 0.5235974161248459 0.03123713068838625 0.051169612951446 +0 0.36457051419447445 0.5075155559339022 0.029593094944512947 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000176.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000176.txt new file mode 100644 index 0000000..29d8242 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000176.txt @@ -0,0 +1,7 @@ +0 0.7681874229346486 0.5981588196336177 0.03452527743526511 0.05409354494329084 +0 0.6777641023572365 0.5798839769865337 0.04767771390451603 0.07602343642920778 +0 0.5865187262783216 0.5586851354230914 0.03288116643225956 0.06286547476785224 +0 0.5018496060635982 0.5535681875128495 0.018084694219135326 0.04678358111465186 +0 0.4266338230796277 0.5272523980391652 0.03041515044601572 0.04678358111465186 +0 0.3658035410023794 0.5002056255675199 0.02548293032569744 0.06286547476785224 +0 0.25893958076448825 0.48485474837453746 0.02219482120838471 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000177.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000177.txt new file mode 100644 index 0000000..dd29f26 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000177.txt @@ -0,0 +1,7 @@ +0 0.26428279100599184 0.49289566173888094 0.01644058321612978 0.051169612951446 +0 0.3600493406396906 0.5075155559339021 0.023838894581824137 0.05994147585149397 +0 0.4233457139623151 0.5155564692982456 0.02712700369913687 0.07017543859649122 +0 0.5030826516862862 0.5382173103198671 0.03370322193376233 0.05994147585149397 +0 0.5791204525421932 0.5586851354230914 0.04767771390451603 0.04532161511872944 +0 0.6835183403494913 0.5820769594426741 0.029593094944512947 0.07456140350877193 +0 0.7628442503227111 0.5981588196336177 0.018906749720638102 0.07163740459241366 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000178.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000178.txt new file mode 100644 index 0000000..084baad --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000178.txt @@ -0,0 +1,7 @@ +0 0.26222770869658407 0.48119976646021795 0.02548293032569744 0.03947368421052632 +0 0.3625154318850667 0.5053225734777618 0.01890671209107198 0.06140350877192982 +0 0.4266337854500617 0.5177494852166428 0.02712700369913687 0.0774854024251302 +0 0.5026716239355349 0.5367553108616878 0.0279489839415074 0.036549685294168036 +0 0.5815865437875694 0.5667260822496917 0.026305023456766337 0.08187130041289747 +0 0.6863954217160527 0.5864629243549548 0.02055071020537916 0.07456140350877193 +0 0.7648993138173359 0.6025447845458984 0.027949059200639642 0.059941542776007405 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000179.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000179.txt new file mode 100644 index 0000000..26d247d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000179.txt @@ -0,0 +1,7 @@ +0 0.764899351446902 0.6083927489163583 0.02466091245376079 0.06871340567605537 +0 0.6863954217160527 0.5864629243549547 0.04192355117139334 0.0804094013414885 +0 0.5885738274025123 0.5616091343394497 0.04192355117139334 0.05409354494329084 +0 0.505137715180911 0.5352933114035088 0.023016801450755242 0.04824561403508772 +0 0.4311549778196285 0.5184804682146039 0.041101570929022814 0.06432744076377468 +0 0.37361284248925897 0.5023986080236602 0.031237168317952375 0.0643275076882881 +0 0.2667488822513679 0.5016675915634423 0.02466091245376079 0.05409354494329084 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000180.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000180.txt new file mode 100644 index 0000000..58c7726 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000180.txt @@ -0,0 +1,7 @@ +0 0.7702425240588394 0.6076617659183972 0.02712700369913687 0.05847950985557155 +0 0.6917385943279901 0.5937728547213371 0.02466091245376079 0.0687134726005688 +0 0.5889848175236977 0.575498012074253 0.01644065847526202 0.05847957678008498 +0 0.507603806426287 0.5433342582301091 0.01644065847526202 0.04093565020644874 +0 0.43033295994769194 0.5352933448657655 0.021372765706881937 0.06286547476785224 +0 0.36539253206641104 0.5089775219298246 0.01644058321612978 0.05701754385964913 +0 0.18660091677664534 0.47900678400407765 0.032059186189889025 0.07309937058833607 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000181.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000181.txt new file mode 100644 index 0000000..efefd3a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000181.txt @@ -0,0 +1,7 @@ +0 0.7764077521722796 0.6142406798245614 0.041101570929022814 0.05701754385964913 +0 0.7003699513163726 0.5981588196336177 0.04849976940601881 0.05409354494329084 +0 0.5955610357583231 0.5813459429824561 0.029593094944512947 0.07017543859649122 +0 0.5121249987958538 0.5594161184210527 0.02219482120838471 0.07894736842105264 +0 0.4377311960542539 0.5345623284055476 0.029593094944512947 0.05847950985557155 +0 0.37648994267060343 0.5089775553920812 0.03041515044601572 0.05409354494329084 +0 0.26715989118733624 0.48266176591839705 0.01890671209107198 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000182.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000182.txt new file mode 100644 index 0000000..fde95c6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000182.txt @@ -0,0 +1,7 @@ +0 0.2733251193007764 0.5023986080236603 0.031237168317952375 0.04678364803916529 +0 0.37402388905479345 0.5177494852166428 0.02712700369913687 0.06286547476785224 +0 0.43608716031038075 0.5309073799534848 0.0279489839415074 0.059941542776007405 +0 0.5113029432943511 0.5528372045148883 0.017262638717632554 0.027777755469606636 +0 0.5955610357583231 0.5711120471619724 0.03452527743526511 0.05263157894736842 +0 0.6966708144483085 0.5996208190917969 0.027949059200639642 0.07163747151692708 +0 0.7722975875534641 0.6164336622807017 0.01644058321612978 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000183.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000183.txt new file mode 100644 index 0000000..9a23fcf --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000183.txt @@ -0,0 +1,7 @@ +0 0.37977808941748226 0.5250594155830249 0.025482967955263565 0.05701754385964913 +0 0.2683929368100243 0.501667625025699 0.023016839080321365 0.06578947368421054 +0 0.43567617018919547 0.5316383629514461 0.017262638717632554 0.07309937058833607 +0 0.5100698976716631 0.557223169427169 0.01644065847526202 0.059941542776007405 +0 0.5951500456371378 0.5747670290762918 0.02712700369913687 0.07163740459241366 +0 0.6979038224414303 0.5981588196336177 0.036991368680641186 0.06286547476785224 +0 0.7747637164284062 0.6157027127449972 0.029593094944512947 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000184.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000184.txt new file mode 100644 index 0000000..36bddb9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000184.txt @@ -0,0 +1,7 @@ +0 0.269214973496744 0.5045915570175439 0.02466091245376079 0.05701754385964913 +0 0.3732018335532907 0.5170184687564248 0.02548289269613132 0.0643275076882881 +0 0.43773123368382016 0.5294453804953057 0.027949059200639642 0.051169546026932564 +0 0.508836852048975 0.5469892401444285 0.02219482120838471 0.03362568637780976 +0 0.5922729266410103 0.5725740131578948 0.03123713068838625 0.06140350877192982 +0 0.692560649829493 0.5908488892672354 0.042745531413763874 0.05409361186780428 +0 0.7735306708057182 0.6091237653765762 0.032059186189889025 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000185.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000185.txt new file mode 100644 index 0000000..463a1a6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000185.txt @@ -0,0 +1,7 @@ +0 0.2688039645607757 0.4921646787409197 0.03534729530720176 0.05263157894736842 +0 0.3666255776890991 0.5104395213880037 0.018906674461505856 0.08040933441697505 +0 0.43033295994769183 0.5352933114035088 0.02630494819763409 0.03947368421052632 +0 0.506370760803599 0.550644222058748 0.015618527714627004 0.02923978839004249 +0 0.589395845274449 0.5703810307017544 0.028771039443010172 0.05701754385964913 +0 0.6839293304706766 0.5835389254385965 0.032059186189889025 0.08333333333333333 +0 0.7636662681946478 0.6098547483745375 0.028771039443010172 0.06286547476785224 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000186.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000186.txt new file mode 100644 index 0000000..9bd14ed --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000186.txt @@ -0,0 +1,6 @@ +0 0.3723797780517879 0.5192114512125651 0.02712700369913687 0.036549685294168036 +0 0.427044813200813 0.5389482933178282 0.023016876709887484 0.055555577863726696 +0 0.4973284136940313 0.5513752050567092 0.018906674461505856 0.05701754385964913 +0 0.588162799651761 0.5711120471619723 0.027949059200639642 0.07309937058833607 +0 0.6880394950894921 0.5886559068110951 0.045211697918272196 0.05847957678008498 +0 0.7681874229346486 0.6113167143704599 0.03452527743526511 0.06286547476785224 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000187.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000187.txt new file mode 100644 index 0000000..ac1b3db --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000187.txt @@ -0,0 +1,7 @@ +0 0.26757090012330453 0.487778713828639 0.03452527743526511 0.03508771929824561 +0 0.3678586609413533 0.5184804682146039 0.014796547472256474 0.038011651290090466 +0 0.42827785882350106 0.5228664331268846 0.040279515427520035 0.04970764695552357 +0 0.5047266874301595 0.545527274148506 0.020550785464511407 0.04824561403508772 +0 0.5885737897729462 0.5594161518833093 0.020550785464511407 0.03801171821460389 +0 0.6872174395879893 0.5915799057274534 0.03370322193376233 0.07894736842105264 +0 0.7640772959453992 0.5908488892672354 0.011508475984509863 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000188.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000188.txt new file mode 100644 index 0000000..8f2a598 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000188.txt @@ -0,0 +1,8 @@ +0 0.2790793384782483 0.5104395213880036 0.01972872996300863 0.04239768312688459 +0 0.20180847318487016 0.49435766119706004 0.00822029160806489 0.024853756553248355 +0 0.3760789525494182 0.5199424342105263 0.04274560667289611 0.04385964912280702 +0 0.43567617018919547 0.5309073799534847 0.02712700369913687 0.05409354494329084 +0 0.506370760803599 0.5404102927760074 0.017262638717632554 0.04970764695552357 +0 0.5955610733878892 0.5601471348812705 0.04603367816064273 0.05994147585149397 +0 0.6958487589468056 0.5850009248967756 0.036169313179138414 0.059941542776007405 +0 0.7669544149415266 0.6069307494581792 0.03370322193376233 0.05409354494329084 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000189.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000189.txt new file mode 100644 index 0000000..3a83acc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000189.txt @@ -0,0 +1,8 @@ +0 0.18701194452739672 0.48412376537657614 0.029593094944512947 0.04824561403508772 +0 0.2531853804017995 0.5075155559339021 0.017262638717632554 0.04239761620237116 +0 0.3756679247986668 0.5243284325850637 0.013974567229885942 0.04093565020644874 +0 0.4340320591861899 0.5294453804953057 0.032059186189889025 0.051169546026932564 +0 0.5104808877928484 0.5374862938596491 0.017262638717632554 0.04385964912280702 +0 0.5943280277652011 0.5696500477037932 0.015618602973759249 0.05847950985557155 +0 0.6983148501921818 0.5959658371774773 0.027949059200639642 0.0643275076882881 +0 0.7739416609269034 0.6047378004642955 0.026305023456766337 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000190.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000190.txt new file mode 100644 index 0000000..d7eaea8 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000190.txt @@ -0,0 +1,8 @@ +0 0.19810933631680602 0.4753518020897581 0.020550747834945284 0.05409354494329084 +0 0.27661324723287223 0.47827576754385964 0.013152511728383168 0.05701754385964913 +0 0.37772302592285756 0.5089775219298246 0.02466091245376079 0.03947368421052632 +0 0.43896427930650816 0.5426032752321478 0.025482967955263565 0.05701754385964913 +0 0.5080148341770384 0.5477202231423897 0.018906674461505856 0.02923978839004249 +0 0.5951500456371378 0.5667260822496917 0.03863547968364674 0.05555551093921327 +0 0.6950267410748691 0.5798839769865337 0.0279489839415074 0.05847957678008498 +0 0.7743526510480888 0.6054687834622567 0.0468557336621455 0.06286547476785224 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000191.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000191.txt new file mode 100644 index 0000000..a14a410 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000191.txt @@ -0,0 +1,7 @@ +0 0.20139746424890181 0.48485474837453746 0.02219482120838471 0.04678364803916529 +0 0.37854504379479426 0.5097085383900425 0.023016876709887484 0.06725150660464639 +0 0.4410193428011328 0.5272523980391652 0.03288116643225956 0.04678358111465186 +0 0.5092478797997264 0.5411413092362254 0.018084694219135326 0.04824561403508772 +0 0.5972051467613286 0.5616091343394497 0.029593094944512947 0.07163740459241366 +0 0.692560649829493 0.580614959984495 0.013152436469250925 0.0687134726005688 +0 0.7694204685573366 0.6040067840040776 0.02219482120838471 0.06286554169236568 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000192.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000192.txt new file mode 100644 index 0000000..0761900 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000192.txt @@ -0,0 +1,7 @@ +0 0.26633785450061653 0.4716968536376953 0.017262638717632554 0.055555577863726696 +0 0.3740238514252273 0.5067845394736842 0.023838856952258014 0.05263157894736842 +0 0.4336210690650047 0.5192114846748218 0.023016801450755242 0.05701754385964913 +0 0.506370760803599 0.5309073799534848 0.02219482120838471 0.04532161511872944 +0 0.5877517719010095 0.5542992039730674 0.036991368680641186 0.06578947368421054 +0 0.6954377688256204 0.5769599780701754 0.03863540442451449 0.06140350877192982 +0 0.7681874229346486 0.5981588196336177 0.029593094944512947 0.059941542776007405 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000193.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000193.txt new file mode 100644 index 0000000..fbff652 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000193.txt @@ -0,0 +1,7 @@ +0 0.2733251193007764 0.48485474837453746 0.03288120406182568 0.05847950985557155 +0 0.37361282367447596 0.49435766119706004 0.029593094944512947 0.06286554169236568 +0 0.43238802344231664 0.5177494852166427 0.02877111470214242 0.07163740459241366 +0 0.5055487429316623 0.5331003624096251 0.018906674461505856 0.055555577863726696 +0 0.5930949821425131 0.5499132055985301 0.0328812416913918 0.05409354494329084 +0 0.6900945585841168 0.5769599780701755 0.021372840966014182 0.07894736842105264 +0 0.7685984883149661 0.5908488892672354 0.02712700369913687 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000194.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000194.txt new file mode 100644 index 0000000..6b6a7dc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000194.txt @@ -0,0 +1,7 @@ +0 0.2737361470515278 0.47096583717747736 0.023838894581824137 0.059941542776007405 +0 0.37032473337194627 0.49508864419502124 0.02466095008332691 0.06725143968013295 +0 0.4344431245665074 0.5155564692982456 0.029593094944512947 0.06140350877192982 +0 0.5067817509247842 0.5352933448657655 0.029593094944512947 0.059941542776007405 +0 0.5939170000144498 0.5586851354230914 0.021372840966014182 0.07163740459241366 +0 0.6970818421990599 0.575498012074253 0.032059186189889025 0.06432744076377468 +0 0.7677764328134633 0.6003518020897581 0.015618527714627004 0.07602336950469435 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000195.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000195.txt new file mode 100644 index 0000000..41c9c16 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000195.txt @@ -0,0 +1,7 @@ +0 0.2803123841009364 0.48631674783271656 0.017262638717632554 0.05263157894736842 +0 0.3797780894174823 0.4965506436532004 0.03041515044601572 0.06725150660464639 +0 0.4414303705518843 0.5228664331268846 0.020550785464511407 0.04678358111465186 +0 0.5096588699209117 0.5352933114035088 0.018906674461505856 0.04824561403508772 +0 0.5955610357583231 0.5608781178792318 0.02466091245376079 0.0643275076882881 +0 0.7003699513163725 0.5813459429824561 0.028771039443010172 0.07894736842105264 +0 0.7718865974322788 0.5915798722651967 0.040279515427520035 0.0643275076882881 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000196.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000196.txt new file mode 100644 index 0000000..793276a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000196.txt @@ -0,0 +1,8 @@ +0 0.20098645531293352 0.4629249238131339 0.013152474098817046 0.055555577863726696 +0 0.29140979470512873 0.4768138015479373 0.029593094944512947 0.05701754385964913 +0 0.38018911716823367 0.4914336957429585 0.029593094944512947 0.05409354494329084 +0 0.44923967203876386 0.5097085383900425 0.029593094944512947 0.07309937058833607 +0 0.5150020801624152 0.5287143974973445 0.0279489839415074 0.05847950985557155 +0 0.5984381547544505 0.5572231359649124 0.03041515044601572 0.05701754385964913 +0 0.6991369056936845 0.5740360126160738 0.02630494819763409 0.06725143968013295 +0 0.7739416609269035 0.5966968201754387 0.023016801450755242 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000197.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000197.txt new file mode 100644 index 0000000..9fd632d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000197.txt @@ -0,0 +1,7 @@ +0 0.7784628156669042 0.6025448180081552 0.03370322193376233 0.06578947368421054 +0 0.7024250148109973 0.574036012616074 0.03945745992601726 0.07309943751284952 +0 0.6017262638717633 0.5608781178792318 0.017262638717632554 0.04970758003101015 +0 0.5162351257851033 0.5352933448657655 0.02712700369913687 0.051169612951446 +0 0.4488286442880125 0.5177494852166427 0.020550785464511407 0.07163740459241366 +0 0.3879983810255472 0.5009366085654812 0.02712700369913687 0.05555551093921327 +0 0.28688862115034486 0.48412373191431946 0.015618565344193125 0.036549685294168036 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000198.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000198.txt new file mode 100644 index 0000000..0ad1143 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000198.txt @@ -0,0 +1,8 @@ +0 0.2124948748530942 0.46438688980905635 0.036169313179138414 0.05847950985557155 +0 0.38840940877629854 0.5009366085654812 0.02630494819763409 0.06140350877192982 +0 0.4537608267787646 0.5214044671309621 0.03041515044601572 0.07894736842105264 +0 0.6062474562413301 0.5550301869710287 0.03452527743526511 0.0818713673374109 +0 0.5211673082758554 0.5491822226005689 0.015618527714627004 0.04678358111465186 +0 0.706946169550998 0.5784219775283546 0.018906674461505856 0.07602336950469435 +0 0.7846280437803446 0.5959658371774774 0.04110149566989057 0.06725143968013295 +0 0.2930538492637851 0.47608278508771934 0.04110153329945669 0.06140350877192982 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000199.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000199.txt new file mode 100644 index 0000000..13e48d5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000199.txt @@ -0,0 +1,8 @@ +0 0.22030415752519078 0.4614629243549548 0.020550747834945284 0.06432744076377468 +0 0.300041114063945 0.47681380154793723 0.017262638717632554 0.0804094013414885 +0 0.3933415912670507 0.49801264311137955 0.021372765706881937 0.06725143968013295 +0 0.4582819815187654 0.5148254863002845 0.03616938843827065 0.059941542776007405 +0 0.5265104808877928 0.5250594155830249 0.029593094944512947 0.04532168204324288 +0 0.6046033828678907 0.5659950992517305 0.021372765706881937 0.08040933441697505 +0 0.718865598027127 0.5769600115324321 0.03945745992601726 0.07602336950469435 +0 0.7825729802857199 0.5974278366356566 0.02055071020537916 0.06725150660464639 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000200.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000200.txt new file mode 100644 index 0000000..81d3035 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000200.txt @@ -0,0 +1,7 @@ +0 0.3033292231812577 0.4841237319143195 0.032059186189889025 0.0774854024251302 +0 0.4060830376151164 0.5045915904798006 0.03370322193376233 0.0687134726005688 +0 0.45992605489220484 0.5214044671309621 0.02630494819763409 0.06140350877192982 +0 0.6128237121055217 0.5557611699689898 0.0328812416913918 0.06286554169236568 +0 0.5343197823746724 0.5367553108616878 0.03370322193376233 0.036549685294168036 +0 0.7131113976644382 0.5850009248967756 0.03123713068838625 0.07163740459241366 +0 0.7932593631391608 0.5996208190917969 0.03534733293676788 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000201.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000201.txt new file mode 100644 index 0000000..17304dd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000201.txt @@ -0,0 +1,7 @@ +0 0.3062063421773852 0.4833927489163583 0.01972872996300863 0.04385964912280702 +0 0.4019728729963009 0.49728166011341834 0.017262638717632554 0.06578947368421054 +0 0.46568025525489365 0.5257903985809862 0.029593094944512947 0.055555577863726696 +0 0.527743564140047 0.5396793097780462 0.020550785464511407 0.04532161511872944 +0 0.6078914919852034 0.5572231359649122 0.01972872996300863 0.06578947368421054 +0 0.7143444809166924 0.5776909945303934 0.04192355117139334 0.06286554169236568 +0 0.7891492361499114 0.6054687834622567 0.020550785464511407 0.05409354494329084 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000202.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000202.txt new file mode 100644 index 0000000..425ce11 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000202.txt @@ -0,0 +1,8 @@ +0 0.22441430332922319 0.45707695944267407 0.02219482120838471 0.05555551093921327 +0 0.30949445129469794 0.4724278366356565 0.029593094944512947 0.07456140350877193 +0 0.40649406536586774 0.4950886441950212 0.023016801450755242 0.0643275076882881 +0 0.46444720963220554 0.5155565027605024 0.033703297192894575 0.06725143968013295 +0 0.5297986276346718 0.5272523980391652 0.031237205947518498 0.038011651290090466 +0 0.6173448668455225 0.562340117337411 0.033703297192894575 0.07309937058833607 +0 0.7131114352940043 0.5762290285344709 0.02466091245376079 0.06578947368421054 +0 0.7891491985203453 0.5952348541795162 0.017262638717632554 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000203.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000203.txt new file mode 100644 index 0000000..48e15e6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000203.txt @@ -0,0 +1,8 @@ +0 0.22811345901207036 0.4731588196336178 0.021372803336448056 0.07309943751284952 +0 0.30785039673604153 0.4724278366356565 0.0164406208456959 0.04532168204324288 +0 0.4036169463697403 0.5067845394736843 0.020550785464511407 0.04385964912280702 +0 0.457870953768014 0.5221354501289234 0.018906674461505856 0.0774854024251302 +0 0.5297986276346717 0.5462582236842105 0.021372840966014182 0.05263157894736842 +0 0.6128237121055217 0.5586851354230914 0.0328812416913918 0.06286547476785224 +0 0.7122893797925015 0.587193907352916 0.029593094944512947 0.07602336950469435 +0 0.7936703908899121 0.6040067840040776 0.041101570929022814 0.06286554169236568 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000204.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000204.txt new file mode 100644 index 0000000..adc441d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000204.txt @@ -0,0 +1,8 @@ +0 0.22071516646115907 0.4614629243549548 0.014796547472256474 0.038011651290090466 +0 0.30661735111335353 0.4702348541795162 0.01890671209107198 0.06140350877192982 +0 0.3953966547616754 0.4965506436532004 0.018906749720638102 0.06725150660464639 +0 0.45910403702026825 0.513363520304362 0.03452527743526511 0.0687134726005688 +0 0.5256885006454224 0.5331003624096251 0.01972872996300863 0.055555577863726696 +0 0.6046033828678907 0.5462582236842105 0.023016876709887484 0.07017543859649122 +0 0.7122893797925015 0.5813459764447129 0.03616938843827065 0.05847950985557155 +0 0.787505162776472 0.5915799057274534 0.02548289269613132 0.06140350877192982 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000205.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000205.txt new file mode 100644 index 0000000..cec923d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000205.txt @@ -0,0 +1,8 @@ +0 0.21742705734384632 0.45926994189881437 0.018084694219135326 0.04824561403508772 +0 0.3045622876187288 0.4731588196336178 0.011508438354943742 0.04970758003101015 +0 0.3970407281351148 0.48997169628477927 0.018906674461505856 0.04824561403508772 +0 0.45499387240145267 0.5097085383900425 0.018084694219135326 0.06725150660464639 +0 0.5228113816492949 0.5404102927760074 0.015618602973759249 0.05263157894736842 +0 0.6058364284905787 0.5535681875128495 0.03370322193376233 0.06432744076377468 +0 0.7090012706751888 0.575498012074253 0.02630494819763409 0.06140350877192982 +0 0.7821619901645345 0.5923108887254146 0.02466091245376079 0.0687134726005688 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000206.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000206.txt new file mode 100644 index 0000000..7c6f0de --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000206.txt @@ -0,0 +1,7 @@ +0 0.31031648798141764 0.47096583717747736 0.026304985827200218 0.05409354494329084 +0 0.3945745992601727 0.48924071328681806 0.017262638717632554 0.0643275076882881 +0 0.4525277811560766 0.5133634868421052 0.036169313179138414 0.08333333333333333 +0 0.51459109004123 0.5221354166666666 0.017262638717632554 0.04824561403508772 +0 0.5992602102559533 0.5528371710526316 0.015618602973759249 0.06578947368421054 +0 0.7028360425617486 0.5703810307017544 0.03534733293676788 0.06578947368421054 +0 0.7739416609269035 0.592310855263158 0.023016801450755242 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000207.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000207.txt new file mode 100644 index 0000000..af07f32 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000207.txt @@ -0,0 +1,7 @@ +0 0.2963419771958809 0.4621939408151727 0.027949059200639642 0.06578947368421054 +0 0.390053482149738 0.49143366228070173 0.02466091245376079 0.05701754385964913 +0 0.44512946979038226 0.49801264311137955 0.02466091245376079 0.055555577863726696 +0 0.5930949821425131 0.5491822226005688 0.027949059200639642 0.07894736842105264 +0 0.5133580067889758 0.5140945033023232 0.023016876709887484 0.05263157894736842 +0 0.6905055487053022 0.5630711003353721 0.02712700369913687 0.07163740459241366 +0 0.7640772959453992 0.5857319413569936 0.023016801450755242 0.07309943751284952 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000208.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000208.txt new file mode 100644 index 0000000..6a75672 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000208.txt @@ -0,0 +1,8 @@ +0 0.20550761005293428 0.44684303015993354 0.020550747834945284 0.055555577863726696 +0 0.2922318313918484 0.4585389589008532 0.013152474098817046 0.06725143968013295 +0 0.7607891868280865 0.5791529605263157 0.036169313179138414 0.06578947368421054 +0 0.6896835308333655 0.5652641162537693 0.028771039443010172 0.07894736842105264 +0 0.5926839543917618 0.5345623284055476 0.02712700369913687 0.055555577863726696 +0 0.5104809254224144 0.524328399122807 0.015618602973759249 0.05263157894736842 +0 0.4430744439253237 0.5111705378482216 0.017262638717632554 0.04970758003101015 +0 0.38553228978017107 0.4841237319143195 0.02712700369913687 0.059941542776007405 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000209.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000209.txt new file mode 100644 index 0000000..dfd8499 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000209.txt @@ -0,0 +1,8 @@ +0 0.7628442503227112 0.5740360126160738 0.02712700369913687 0.04970758003101015 +0 0.684340358221428 0.5608781513414886 0.021372765706881937 0.07017543859649122 +0 0.5922729266410103 0.5272523980391652 0.018084694219135326 0.06725150660464639 +0 0.5092478797997264 0.501667625025699 0.01644058321612978 0.06578947368421054 +0 0.44266341617457233 0.49947460910730196 0.027949059200639642 0.06725143968013295 +0 0.3847102719082344 0.46146292435495473 0.020550785464511407 0.05847957678008498 +0 0.2983970595052886 0.4665798722651967 0.03863544205408061 0.06286547476785224 +0 0.2100287836077181 0.4483050296181127 0.023016876709887484 0.04970764695552357 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000210.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000210.txt new file mode 100644 index 0000000..52e09a3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000210.txt @@ -0,0 +1,8 @@ +0 0.2124948748530942 0.43368513542309145 0.027949059200639642 0.05847950985557155 +0 0.300041114063945 0.45342201099061125 0.015618602973759249 0.04824561403508772 +0 0.38553228978017107 0.4651179062692743 0.02383893221139026 0.0687134726005688 +0 0.7587340857038957 0.5681880482456141 0.020550785464511407 0.07894736842105264 +0 0.6868064494668041 0.5579541524251302 0.02630494819763409 0.07309937058833607 +0 0.5943280277652011 0.5294453804953057 0.03041515044601572 0.06578947368421054 +0 0.5059597330528475 0.49947460910730196 0.023016876709887484 0.04970758003101015 +0 0.4393753070572596 0.4980126096491228 0.01972872996300863 0.04385964912280702 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000211.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000211.txt new file mode 100644 index 0000000..cefabb0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000211.txt @@ -0,0 +1,7 @@ +0 0.30045214181469637 0.4607319413569936 0.01972872996300863 0.059941542776007405 +0 0.771064541930776 0.5667260822496917 0.05014388040902436 0.06140350877192982 +0 0.6929716775802442 0.5477202566046464 0.03041515044601572 0.05263157894736842 +0 0.5935059722636984 0.5257903985809862 0.018906674461505856 0.06725143968013295 +0 0.5125359889170391 0.5155564692982456 0.04438964241676942 0.05263157894736842 +0 0.44389646179726033 0.495088677657278 0.018906674461505856 0.04385964912280702 +0 0.3851212620294197 0.48046878346225674 0.018084694219135326 0.06725143968013295 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000212.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000212.txt new file mode 100644 index 0000000..21cc773 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000212.txt @@ -0,0 +1,7 @@ +0 0.2157829839704069 0.4417260822496916 0.014796547472256474 0.04532168204324288 +0 0.30332922318125777 0.44830502961811264 0.017262638717632554 0.05847957678008498 +0 0.3863543452816739 0.47096583717747736 0.012330456226880395 0.027777755469606636 +0 0.445951525291885 0.4892407132868181 0.03288116643225956 0.04970758003101015 +0 0.5939170000144498 0.5250594155830249 0.026305023456766337 0.05994147585149397 +0 0.6847513483426133 0.5477202231423897 0.023838856952258014 0.0643275076882881 +0 0.7616112047000232 0.5659950992517304 0.01644065847526202 0.05409354494329084 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000213.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000213.txt new file mode 100644 index 0000000..71ac057 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000213.txt @@ -0,0 +1,6 @@ +0 0.7653103415680873 0.5652641162537693 0.02548289269613132 0.05263157894736842 +0 0.6942046855733662 0.5433342582301091 0.03945745992601726 0.07309943751284952 +0 0.5967941190105772 0.5257903985809861 0.025482967955263565 0.0643275076882881 +0 0.5145910524116639 0.5104395213880036 0.0139744919707537 0.033625753302323196 +0 0.4459515252918851 0.49508864419502124 0.01972872996300863 0.04678364803916529 +0 0.3879983810255472 0.47096583717747736 0.02055071020537916 0.04239768312688459 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000214.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000214.txt new file mode 100644 index 0000000..c6710ce --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000214.txt @@ -0,0 +1,7 @@ +0 0.7661323594400239 0.5667260822496917 0.025482967955263565 0.05847957678008498 +0 0.6888615129614288 0.5469892401444285 0.02383893221139026 0.05701754385964913 +0 0.5980271270036992 0.5265213815789475 0.01972872996300863 0.05701754385964913 +0 0.5150020801624152 0.5162874857584635 0.01644065847526202 0.05409361186780428 +0 0.44923963440919773 0.48412373191431946 0.021372765706881937 0.05409354494329084 +0 0.3896424543989866 0.4753518020897581 0.015618602973759249 0.051169612951446 +0 0.3099054790454493 0.45707695944267407 0.012330456226880395 0.038011651290090466 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000215.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000215.txt new file mode 100644 index 0000000..e773b5e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000215.txt @@ -0,0 +1,6 @@ +0 0.3896424543989866 0.4731588196336178 0.025482967955263565 0.07309943751284952 +0 0.44430745191844556 0.4892407132868181 0.018084694219135326 0.05847950985557155 +0 0.5096588699209117 0.5111705378482216 0.0139744919707537 0.04093565020644874 +0 0.5959720635090744 0.5235974161248459 0.028771039443010172 0.06286547476785224 +0 0.6835183027199252 0.5426032752321478 0.02630494819763409 0.07163747151692708 +0 0.7607891868280865 0.5718430301599335 0.023016876709887484 0.05409354494329084 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000216.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000216.txt new file mode 100644 index 0000000..8a0f0b5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000216.txt @@ -0,0 +1,6 @@ +0 0.3838882540362978 0.468772854721337 0.017262638717632554 0.04970758003101015 +0 0.4418413606730695 0.48631671437045987 0.011508400725377621 0.06725143968013295 +0 0.5080148341770384 0.49801264311137955 0.010686420483007091 0.04093565020644874 +0 0.594327990135635 0.5272523980391652 0.017262638717632554 0.05847957678008498 +0 0.6851623760933647 0.5484512396026076 0.03288116643225956 0.05409354494329084 +0 0.7591451134546471 0.5725740131578947 0.0279489839415074 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000217.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000217.txt new file mode 100644 index 0000000..c18d0cc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000217.txt @@ -0,0 +1,6 @@ +0 0.7583230955827104 0.5784219775283546 0.027949059200639642 0.04970758003101015 +0 0.6810522114745491 0.5506442220587479 0.023016876709887484 0.0643275076882881 +0 0.5947390555159526 0.5257903985809861 0.03452527743526511 0.04678364803916529 +0 0.5047266874301595 0.5016675915634423 0.015618602973759249 0.04239768312688459 +0 0.4418413606730696 0.4921646787409197 0.04110149566989057 0.040935717130962175 +0 0.38512126202941965 0.473889802631579 0.0328812416913918 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000218.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000218.txt new file mode 100644 index 0000000..dfb6443 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000218.txt @@ -0,0 +1,7 @@ +0 0.2959309494451295 0.45488397698653377 0.02712700369913687 0.06286554169236568 +0 0.3752568970479154 0.47681380154793723 0.03123713068838625 0.03654975221868147 +0 0.4381422614345715 0.48997169628477927 0.02219482120838471 0.04239761620237116 +0 0.5039046695582229 0.5170184687564248 0.02383893221139026 0.03801171821460389 +0 0.5877517719010096 0.5170184687564248 0.02712700369913687 0.04093565020644874 +0 0.6806412213533639 0.5564921864292078 0.040279515427520035 0.06140350877192982 +0 0.7538019408427096 0.5798839769865337 0.02219482120838471 0.05555551093921327 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000219.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000219.txt new file mode 100644 index 0000000..30ea018 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000219.txt @@ -0,0 +1,7 @@ +0 0.2975750228185689 0.4665798722651967 0.018906674461505856 0.08040933441697505 +0 0.38018907953866754 0.47900678400407753 0.021372765706881937 0.05555551093921327 +0 0.4410193428011329 0.4972816266511616 0.01972872996300863 0.05409354494329084 +0 0.5055487429316623 0.5067845729359409 0.020550785464511407 0.055555577863726696 +0 0.5856966707768188 0.5294453804953057 0.02466091245376079 0.06286554169236568 +0 0.6773530746064851 0.5557611699689898 0.028771039443010172 0.06871340567605537 +0 0.755445976586583 0.574036012616074 0.030415075186883477 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000220.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000220.txt new file mode 100644 index 0000000..21ec744 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000220.txt @@ -0,0 +1,6 @@ +0 0.7575010777107738 0.5879248903508771 0.02466091245376079 0.04824561403508772 +0 0.685573403844116 0.5550301535087719 0.03370322193376233 0.06140350877192982 +0 0.5984381547544506 0.5404102927760074 0.028771039443010172 0.06140350877192982 +0 0.5121249987958539 0.5177494517543859 0.02712700369913687 0.04824561403508772 +0 0.44923963440919773 0.4892407132868181 0.036169313179138414 0.055555577863726696 +0 0.38840940877629854 0.47608278508771934 0.021372765706881937 0.04385964912280702 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000221.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000221.txt new file mode 100644 index 0000000..450f988 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000221.txt @@ -0,0 +1,7 @@ +0 0.7603781590773351 0.5901178728070176 0.015618527714627004 0.07017543859649122 +0 0.6789971479799245 0.5601471348812705 0.017262638717632554 0.04239761620237116 +0 0.5959721011386405 0.5243284325850638 0.02219482120838471 0.05847950985557155 +0 0.5067817885543503 0.5067845729359409 0.023016876709887484 0.04678364803916529 +0 0.4471845709145731 0.49289566173888094 0.02383893221139026 0.0687134726005688 +0 0.38594327990135635 0.47754478454589844 0.01972872996300863 0.04678364803916529 +0 0.3049732965546971 0.4461120471619723 0.020550785464511407 0.05994147585149397 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000222.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000222.txt new file mode 100644 index 0000000..5e50acd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000222.txt @@ -0,0 +1,7 @@ +0 0.7698314963080881 0.5959658371774774 0.04110149566989057 0.055555577863726696 +0 0.6822852570972373 0.561609100877193 0.020550785464511407 0.05701754385964913 +0 0.5972051091317625 0.5316383629514461 0.03123713068838625 0.06432744076377468 +0 0.5096588699209116 0.5067845729359409 0.03041515044601572 0.03801171821460389 +0 0.4451295074199484 0.49435766119706004 0.03123713068838625 0.05701754385964913 +0 0.3871763255240444 0.47096583717747736 0.02219482120838471 0.05409354494329084 +0 0.30456228761872883 0.475351802089758 0.026304985827200218 0.024853823477761786 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000223.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000223.txt new file mode 100644 index 0000000..c435c48 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000223.txt @@ -0,0 +1,7 @@ +0 0.30374025093200907 0.4512289950722142 0.01644058321612978 0.03216372038188734 +0 0.38183315291210695 0.4629249238131339 0.01972872996300863 0.06725143968013295 +0 0.44471847966919703 0.4855857313724986 0.03863547968364674 0.05701754385964913 +0 0.5100698976716631 0.5060535564757229 0.01972872996300863 0.024853823477761786 +0 0.5980271646332653 0.5206734506707442 0.03123713068838625 0.05409361186780428 +0 0.6748870209906751 0.5542991705108108 0.017262638717632554 0.051169612951446 +0 0.7587340857038957 0.5981588196336177 0.025482967955263565 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000224.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000224.txt new file mode 100644 index 0000000..9122be3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000224.txt @@ -0,0 +1,6 @@ +0 0.755445976586583 0.5915799057274534 0.02383893221139026 0.06140350877192982 +0 0.674886983361109 0.5652640827915125 0.025482967955263565 0.07309943751284952 +0 0.5914509087690737 0.524328399122807 0.01644065847526202 0.05263157894736842 +0 0.5030826516862862 0.4987436261093407 0.018906674461505856 0.04239761620237116 +0 0.44225238842382086 0.4870477308306778 0.02219482120838471 0.051169612951446 +0 0.38224418066285837 0.46950383771929827 0.020550785464511407 0.03070175438596491 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000225.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000225.txt new file mode 100644 index 0000000..674e98d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000225.txt @@ -0,0 +1,6 @@ +0 0.7538019408427096 0.594503871181555 0.032059186189889025 0.055555577863726696 +0 0.6785861578587392 0.5608781178792318 0.029593094944512947 0.0643275076882881 +0 0.5926839543917618 0.5287143974973444 0.030415075186883477 0.0643275076882881 +0 0.5022606338143496 0.506053556475723 0.02712700369913687 0.033625753302323196 +0 0.4410193428011328 0.4819307494581792 0.03288116643225956 0.055555577863726696 +0 0.37813401604404284 0.4607319413569936 0.02055071020537916 0.04239768312688459 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000226.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000226.txt new file mode 100644 index 0000000..9edf53d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000226.txt @@ -0,0 +1,7 @@ +0 0.29634197719588085 0.4548839769865337 0.021372765706881937 0.04824561403508772 +0 0.4364981880611321 0.46877288818359375 0.03041515044601572 0.05263157894736842 +0 0.3732018147385076 0.4585389589008532 0.030415112816449603 0.02923978839004249 +0 0.49568434032059183 0.4914336957429585 0.032059186189889025 0.05409354494329084 +0 0.5881627620221949 0.5287143640350878 0.02466091245376079 0.04385964912280702 +0 0.6691327829984203 0.5594161518833094 0.02712700369913687 0.05847950985557155 +0 0.7492807484731427 0.5966968536376954 0.01972872996300863 0.0687134726005688 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000227.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000227.txt new file mode 100644 index 0000000..8a8fefb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000227.txt @@ -0,0 +1,7 @@ +0 0.29140979470512873 0.4329541524251302 0.027949059200639642 0.06871340567605537 +0 0.3711467324290999 0.45122899507221426 0.02466091245376079 0.05847950985557155 +0 0.4286888865742525 0.46731088872541465 0.01972872996300863 0.04970758003101015 +0 0.4923962312032792 0.4980126431113795 0.023838856952258014 0.020467858565481088 +0 0.5819975339087546 0.519942467672783 0.02219482120838471 0.04678364803916529 +0 0.6654336461303562 0.5586851688853481 0.023016801450755242 0.07456140350877193 +0 0.7447595561035758 0.594503871181555 0.032059186189889025 0.055555577863726696 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000228.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000228.txt new file mode 100644 index 0000000..1b8f403 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000228.txt @@ -0,0 +1,7 @@ +0 0.2852445665916885 0.42856818751284953 0.015618602973759249 0.04532168204324288 +0 0.3633374685717864 0.45269099453039335 0.02383893221139026 0.05555551093921327 +0 0.4286888865742525 0.4738898026315789 0.021372840966014182 0.04824561403508772 +0 0.4878750764632783 0.4848547483745374 0.029593094944512947 0.03801171821460389 +0 0.5725441966780017 0.5221354501289234 0.03123713068838625 0.05409354494329084 +0 0.6580353723942278 0.5564921529669511 0.03452527743526511 0.06725143968013295 +0 0.7410604568650779 0.6018138015479372 0.03123713068838625 0.05847957678008498 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000229.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000229.txt new file mode 100644 index 0000000..9726666 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000229.txt @@ -0,0 +1,7 @@ +0 0.28976574014647233 0.4241822226005688 0.018084656589569207 0.05701754385964913 +0 0.36785862331178715 0.4446500477037932 0.018084694219135326 0.059941542776007405 +0 0.4315659679408138 0.4643869232713131 0.017262638717632554 0.05263157894736842 +0 0.737772310118199 0.6003518020897581 0.027949059200639642 0.07309943751284952 +0 0.6568023267715397 0.5469892401444285 0.02548289269613132 0.05994147585149397 +0 0.578709462421008 0.5177494852166427 0.02219482120838471 0.05409354494329084 +0 0.4915742133313425 0.49435766119706004 0.02383893221139026 0.05409361186780428 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000230.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000230.txt new file mode 100644 index 0000000..9c4a5ac --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000230.txt @@ -0,0 +1,7 @@ +0 0.2967529861318492 0.4292992039730674 0.015618565344193125 0.05263157894736842 +0 0.36868065999850685 0.43660913433944964 0.031237168317952375 0.04678364803916529 +0 0.7422935024877659 0.5966968201754386 0.023838856952258014 0.06578947368421054 +0 0.6633785826357312 0.5623401173374108 0.03041515044601572 0.07017543859649122 +0 0.5782984346702567 0.5235974161248459 0.018084694219135326 0.06286547476785224 +0 0.49404030457671866 0.48997169628477927 0.02383893221139026 0.04239761620237116 +0 0.4332100413142532 0.46584888926723544 0.020550785464511407 0.05847957678008498 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000231.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000231.txt new file mode 100644 index 0000000..a1cd223 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000231.txt @@ -0,0 +1,7 @@ +0 0.2959309494451295 0.42345123960260767 0.017262638717632554 0.04678364803916529 +0 0.37361282367447596 0.4329541524251302 0.01972872996300863 0.04532168204324288 +0 0.748458730601206 0.60546875 0.02630494819763409 0.06578947368421054 +0 0.6687217928772349 0.5564921864292077 0.04438964241676942 0.05263157894736842 +0 0.5824085992890722 0.5228664331268846 0.02466091245376079 0.06140350877192982 +0 0.49650639582209466 0.4819307494581791 0.013974567229885942 0.04970758003101015 +0 0.43773123368382005 0.4724278366356565 0.023016876709887484 0.051169546026932564 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000232.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000232.txt new file mode 100644 index 0000000..7d46c33 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000232.txt @@ -0,0 +1,6 @@ +0 0.7439375758612053 0.594503871181555 0.017262638717632554 0.0643275076882881 +0 0.6625565271342286 0.5528372045148883 0.020550785464511407 0.051169612951446 +0 0.5819975715383208 0.5140945033023232 0.018906674461505856 0.04970764695552357 +0 0.4981504315659679 0.487047697368421 0.012330456226880395 0.04824561403508772 +0 0.43773123368382016 0.45561499344675166 0.027949059200639642 0.06140350877192982 +0 0.3703247145571632 0.4344161518833093 0.021372765706881937 0.04239768312688459 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000233.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000233.txt new file mode 100644 index 0000000..7acd501 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000233.txt @@ -0,0 +1,6 @@ +0 0.7381833378689504 0.607661765918397 0.02055071020537916 0.0818713673374109 +0 0.6568023267715398 0.5484512396026077 0.02712700369913687 0.0687134726005688 +0 0.5782983970406905 0.512632503844144 0.01972872996300863 0.04678364803916529 +0 0.49486232244865513 0.4782758010061164 0.018906674461505856 0.051169612951446 +0 0.43238802344231664 0.45269099453039335 0.02055071020537916 0.04678358111465186 +0 0.37402385142522737 0.43368513542309145 0.018906674461505856 0.04093565020644874 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000234.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000234.txt new file mode 100644 index 0000000..ebf9938 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000234.txt @@ -0,0 +1,6 @@ +0 0.3686806411837238 0.4241822226005688 0.014796547472256474 0.07163747151692708 +0 0.43773123368382005 0.45049801207425305 0.023016876709887484 0.06286554169236568 +0 0.49568434032059183 0.46731088872541465 0.017262638717632554 0.02923978839004249 +0 0.5778874069195052 0.4958196271929824 0.018906749720638102 0.04824561403508772 +0 0.6572133545222911 0.5491822226005688 0.02630494819763409 0.07017543859649122 +0 0.7316070820047588 0.5988898026315789 0.023838856952258014 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000235.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000235.txt new file mode 100644 index 0000000..9ca6e6a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000235.txt @@ -0,0 +1,7 @@ +0 0.2992190773772253 0.3985974161248458 0.013974529600319821 0.03216372038188734 +0 0.37155779780941744 0.42125825714646725 0.017262638717632554 0.051169612951446 +0 0.436498150431566 0.43587811787923175 0.017262638717632554 0.051169612951446 +0 0.49773944144478266 0.45707695944267407 0.011508475984509863 0.05263157894736842 +0 0.5807645259156328 0.5067845729359409 0.01644058321612978 0.04970758003101015 +0 0.653514217654227 0.5521061880546705 0.015618602973759249 0.05847950985557155 +0 0.7344842010008862 0.6025447845458984 0.026305023456766337 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000236.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000236.txt new file mode 100644 index 0000000..47d70c8 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000236.txt @@ -0,0 +1,7 @@ +0 0.7406494291143264 0.5952348541795162 0.015618527714627004 0.06286554169236568 +0 0.6650226183796046 0.5513752050567091 0.025482967955263565 0.06578947368421054 +0 0.5873407817798244 0.495088677657278 0.01972872996300863 0.04385964912280702 +0 0.506370760803599 0.4556149599844949 0.017262638717632554 0.04678364803916529 +0 0.4480065887865097 0.4417260822496916 0.025482967955263565 0.05701754385964913 +0 0.38635430765210776 0.41467930977804623 0.020550785464511407 0.02923978839004249 +0 0.30867243342276124 0.3905565027605024 0.02630494819763409 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000237.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000237.txt new file mode 100644 index 0000000..1e71ed2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000237.txt @@ -0,0 +1,7 @@ +0 0.7468146572277667 0.5908488892672354 0.021372840966014182 0.07163747151692708 +0 0.6683107651264836 0.5521061880546704 0.025482967955263565 0.07602336950469435 +0 0.5959721011386406 0.5002055921052632 0.02712700369913687 0.06578947368421054 +0 0.5150020801624152 0.4614629243549548 0.014796547472256474 0.038011651290090466 +0 0.45992605489220484 0.4329541524251302 0.023016876709887484 0.05701754385964913 +0 0.39128649014285993 0.41029334486576546 0.015618602973759249 0.04970758003101015 +0 0.32223593527232974 0.38397755539208134 0.017262638717632554 0.04970758003101015 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000238.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000238.txt new file mode 100644 index 0000000..76d6859 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000238.txt @@ -0,0 +1,7 @@ +0 0.7505137940958307 0.5996208190917969 0.018906749720638102 0.04824561403508772 +0 0.6736539753679871 0.5389482933178282 0.02466091245376079 0.05847950985557155 +0 0.6074805018640181 0.5038606074818394 0.018906749720638102 0.06140350877192982 +0 0.5191122071516647 0.45561499344675166 0.01972872996300863 0.04385964912280702 +0 0.4595150271414535 0.4241822226005688 0.02219482120838471 0.04824561403508772 +0 0.3990957916297395 0.40152141504120414 0.01644065847526202 0.04093565020644874 +0 0.32716811776308186 0.38105355647572303 0.0139744919707537 0.03801171821460389 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000239.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000239.txt new file mode 100644 index 0000000..fdecefa --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000239.txt @@ -0,0 +1,7 @@ +0 0.7505137940958309 0.5952348541795162 0.02055071020537916 0.04532168204324288 +0 0.6757090388626117 0.5462582236842105 0.03041515044601572 0.04385964912280702 +0 0.6083025197359548 0.4921646787409197 0.023838856952258014 0.05555551093921327 +0 0.526510518517359 0.46584888926723544 0.023016876709887484 0.032163787306400765 +0 0.47390054686295857 0.4256441885964912 0.03123713068838625 0.06578947368421054 +0 0.41224830335812274 0.40005941558302494 0.01972872996300863 0.05555551093921327 +0 0.33908754623921084 0.3839775553920812 0.01972872996300863 0.03216372038188734 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000240.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000240.txt new file mode 100644 index 0000000..c0f786e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000240.txt @@ -0,0 +1,6 @@ +0 0.7620222324507745 0.6120477308306778 0.018906674461505856 0.06725143968013295 +0 0.6855734038441161 0.5623401173374108 0.023838856952258014 0.08187130041289747 +0 0.4784217392325254 0.42198924014442846 0.03041515044601572 0.05847957678008498 +0 0.6136457299774584 0.4958196271929825 0.013152436469250925 0.05701754385964913 +0 0.4077271109885558 0.399328399122807 0.018906749720638102 0.04824561403508772 +0 0.34032061067668196 0.36935766119706004 0.023838894581824137 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000241.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000241.txt new file mode 100644 index 0000000..c9fe199 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000241.txt @@ -0,0 +1,6 @@ +0 0.7607891491985204 0.6149716962847793 0.01972872996300863 0.06140350877192982 +0 0.6826962848479886 0.5550301869710287 0.021372840966014182 0.055555577863726696 +0 0.6198109580908986 0.5053225734777618 0.02219482120838471 0.04970764695552357 +0 0.5306206455066084 0.45488397698653377 0.018084694219135326 0.024853756553248355 +0 0.4763666757379007 0.42564422205874797 0.02466091245376079 0.06286547476785224 +0 0.41553637484586936 0.3971354501289234 0.01972872996300863 0.04970758003101015 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000242.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000242.txt new file mode 100644 index 0000000..a3da184 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000242.txt @@ -0,0 +1,6 @@ +0 0.4114262478566199 0.3964044336687054 0.01972872996300863 0.05409354494329084 +0 0.7558569667077683 0.6244746425695586 0.01972872996300863 0.06578947368421054 +0 0.6777641023572365 0.5484512061403509 0.01972872996300863 0.05701754385964913 +0 0.6144677478493951 0.5002056255675199 0.027949059200639642 0.059941542776007405 +0 0.5297986276346717 0.45196001153243215 0.009864364981504316 0.04532161511872944 +0 0.4771886936098374 0.42491320559853 0.018084694219135326 0.04093565020644874 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000243.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000243.txt new file mode 100644 index 0000000..6fd7948 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000243.txt @@ -0,0 +1,6 @@ +0 0.7443485659823906 0.6369015208461828 0.023016801450755242 0.08187130041289747 +0 0.6752980111118604 0.5667260822496917 0.03452527743526511 0.08187130041289747 +0 0.6083025197359548 0.5009366085654812 0.0139744919707537 0.04970764695552357 +0 0.5269215086385441 0.4614629243549548 0.018906674461505856 0.04385964912280702 +0 0.4697904198737091 0.418334258230109 0.023016876709887484 0.051169612951446 +0 0.4114262478566199 0.38617053784822164 0.01644065847526202 0.04532161511872944 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000244.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000244.txt new file mode 100644 index 0000000..1bd20c4 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000244.txt @@ -0,0 +1,7 @@ +0 0.33579943712189814 0.3722816266511616 0.009864364981504316 0.02923978839004249 +0 0.4036169463697403 0.3810535899379798 0.015618602973759249 0.05263157894736842 +0 0.4665023107563965 0.41467930977804623 0.009864364981504316 0.04093565020644874 +0 0.7414714469862631 0.6339775553920813 0.023838856952258014 0.07309943751284952 +0 0.6662556640022927 0.5630711003353721 0.027949059200639642 0.07163740459241366 +0 0.6050144106186421 0.5045915904798006 0.02055071020537916 0.0687134726005688 +0 0.5207562805251041 0.44903601261607384 0.013152511728383168 0.04239768312688459 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000245.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000245.txt new file mode 100644 index 0000000..cb50222 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000245.txt @@ -0,0 +1,6 @@ +0 0.7348951911220715 0.6347085383900425 0.012330456226880395 0.03654975221868147 +0 0.6621455370130434 0.5667260822496917 0.01644058321612978 0.08187130041289747 +0 0.602548319373266 0.5053225734777618 0.02055071020537916 0.04970764695552357 +0 0.5207563181546702 0.4461120471619723 0.014796547472256474 0.027777822394120067 +0 0.4623921461375809 0.4095623284055475 0.023016876709887484 0.05409354494329084 +0 0.40361698399930634 0.388363520304362 0.017262638717632554 0.03801171821460389 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000246.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000246.txt new file mode 100644 index 0000000..788bf24 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000246.txt @@ -0,0 +1,7 @@ +0 0.7357172466235743 0.6420184687564248 0.017262638717632554 0.051169612951446 +0 0.6600904735184187 0.5638021167955901 0.02219482120838471 0.055555577863726696 +0 0.6033703372452026 0.49947460910730196 0.015618602973759249 0.07309943751284952 +0 0.5158240980343519 0.44903601261607384 0.013152511728383168 0.036549685294168036 +0 0.4636251541307028 0.4161412757739686 0.02219482120838471 0.055555577863726696 +0 0.40279492849780363 0.37959155701754393 0.013974567229885942 0.03508771929824561 +0 0.33621044605786643 0.36789566173888094 0.013974529600319821 0.02339179055732593 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000247.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000247.txt new file mode 100644 index 0000000..4f82836 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000247.txt @@ -0,0 +1,5 @@ +0 0.6609124537607891 0.5601471348812707 0.02219482120838471 0.07456140350877193 +0 0.6054254383693936 0.49947460910730196 0.01644058321612978 0.055555577863726696 +0 0.518290189279728 0.45269099453039335 0.013152511728383168 0.038011651290090466 +0 0.46526922750414224 0.41175531086168793 0.020550785464511407 0.04970758003101015 +0 0.40238390074705227 0.38617053784822164 0.01644058321612978 0.04532161511872944 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000248.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000248.txt new file mode 100644 index 0000000..9c80360 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000248.txt @@ -0,0 +1,6 @@ +0 0.7328401276274469 0.649328399122807 0.01644058321612978 0.05701754385964913 +0 0.6580353723942278 0.570381064164011 0.014796547472256474 0.05409354494329084 +0 0.6041923927467054 0.5148255197625412 0.015618602973759249 0.05701754385964913 +0 0.5162351257851032 0.4461120471619724 0.015618527714627004 0.04532168204324288 +0 0.46485823738295695 0.40736934594940727 0.023016876709887484 0.04678364803916529 +0 0.4036169463697403 0.38032257347776177 0.015618602973759249 0.03362568637780976 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000249.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000249.txt new file mode 100644 index 0000000..4dae0bd --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000249.txt @@ -0,0 +1,6 @@ +0 0.39827373612823674 0.3730126096491228 0.014796547472256474 0.04824561403508772 +0 0.7266748995140067 0.6661412757739686 0.023838856952258014 0.0643275076882881 +0 0.6580353723942278 0.5879248903508772 0.021372840966014182 0.07456140350877193 +0 0.5996712003771386 0.5170184687564248 0.013152511728383168 0.055555577863726696 +0 0.5145910524116638 0.4534219775283545 0.015618602973759249 0.04239768312688459 +0 0.4632141640095176 0.4110243278637267 0.02466091245376079 0.051169546026932564 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000250.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000250.txt new file mode 100644 index 0000000..9ddb3b4 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000250.txt @@ -0,0 +1,7 @@ +0 0.3945745992601727 0.3730126096491228 0.017262638717632554 0.04824561403508772 +0 0.7225647348951911 0.6749132055985301 0.017262638717632554 0.055555577863726696 +0 0.6539252454049784 0.5791529939885725 0.014796547472256474 0.05409354494329084 +0 0.5976161368825139 0.5119015208461828 0.015618527714627004 0.04824561403508772 +0 0.5121249611662877 0.45269099453039335 0.0139744919707537 0.032163787306400765 +0 0.4574599636468287 0.40956236186780426 0.011508400725377621 0.03947368421052632 +0 0.3292232000724896 0.35766176591839705 0.011508438354943742 0.02339179055732593 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000251.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000251.txt new file mode 100644 index 0000000..97ce550 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000251.txt @@ -0,0 +1,6 @@ +0 0.7254418915208848 0.6917260822496917 0.01972872996300863 0.06578947368421054 +0 0.6551582910276664 0.594503871181555 0.02219482120838471 0.0643275076882881 +0 0.594327990135635 0.5199424676727831 0.02219482120838471 0.04970758003101015 +0 0.5117139334155365 0.4490360460783306 0.01972872996300863 0.03070175438596491 +0 0.45992605489220484 0.4197962576882881 0.01644058321612978 0.05701754385964913 +0 0.393752581388236 0.370088677657278 0.020550785464511407 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000252.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000252.txt new file mode 100644 index 0000000..1ba10cb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000252.txt @@ -0,0 +1,7 @@ +0 0.7192766257778784 0.7012289950722143 0.020550785464511407 0.07309943751284952 +0 0.649815080786163 0.5908488892672356 0.01644058321612978 0.05701754385964913 +0 0.5947390178863865 0.5265213815789475 0.01644058321612978 0.05701754385964913 +0 0.5129470166677905 0.45049801207425305 0.015618602973759249 0.04532168204324288 +0 0.4574599636468287 0.413217310319867 0.023016876709887484 0.05263157894736842 +0 0.3953966547616754 0.37081966065523914 0.017262638717632554 0.04093565020644874 +0 0.3304562268803946 0.3510827850877193 0.012330456226880395 0.03947368421052632 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000253.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000253.txt new file mode 100644 index 0000000..d3300c6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000253.txt @@ -0,0 +1,6 @@ +0 0.3916975178936113 0.37008864419502124 0.014796547472256474 0.059941542776007405 +0 0.4566379457748921 0.40517636349326686 0.014796547472256474 0.04239768312688459 +0 0.511302943294351 0.4475740131578947 0.012330456226880395 0.03070175438596491 +0 0.5963830912598258 0.5389482933178282 0.023016801450755242 0.07309943751284952 +0 0.6494040530354115 0.6054687834622567 0.030415075186883477 0.05409354494329084 +0 0.718865635656693 0.7107319078947368 0.023016876709887484 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000254.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000254.txt new file mode 100644 index 0000000..57a2451 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000254.txt @@ -0,0 +1,5 @@ +0 0.3892314266482352 0.37301260964912275 0.01808461896000308 0.03070175438596491 +0 0.6473489895407869 0.6157026792827405 0.021372765706881937 0.07163740459241366 +0 0.5930949821425131 0.5374863273219058 0.023016876709887484 0.0643275076882881 +0 0.5039046695582229 0.45269099453039335 0.017262638717632554 0.05555551093921327 +0 0.45581589027338937 0.41175531086168793 0.023016801450755242 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000255.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000255.txt new file mode 100644 index 0000000..ae1b287 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000255.txt @@ -0,0 +1,5 @@ +0 0.6403617059258438 0.6142406798245614 0.015618602973759249 0.06578947368421054 +0 0.5865187262783216 0.5360243278637267 0.014796547472256474 0.04970764695552357 +0 0.5014385783128468 0.4607319413569936 0.013974567229885942 0.033625753302323196 +0 0.4467735807933878 0.4102933114035088 0.01972872996300863 0.07017543859649122 +0 0.38347722628554637 0.36789566173888094 0.011508400725377621 0.04093565020644874 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000256.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000256.txt new file mode 100644 index 0000000..7dc248f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000256.txt @@ -0,0 +1,6 @@ +0 0.6387176325524045 0.6252055921052632 0.02712700369913687 0.08771929824561404 +0 0.5865187262783215 0.5426032752321478 0.023016801450755242 0.06871340567605537 +0 0.5002055326901588 0.45926994189881437 0.021372840966014182 0.05994147585149397 +0 0.4430744062957575 0.41467930977804623 0.018906674461505856 0.055555577863726696 +0 0.37813401604404284 0.3649716962847794 0.02383893221139026 0.05263157894736842 +0 0.30826142448679295 0.34450387118155495 0.010686382853440968 0.04678364803916529 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000257.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000257.txt new file mode 100644 index 0000000..214febb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000257.txt @@ -0,0 +1,6 @@ +0 0.6370735968085312 0.6288606074818394 0.02219482120838471 0.07456140350877193 +0 0.5869297540290729 0.5462582236842105 0.018906674461505856 0.07017543859649122 +0 0.5026716239355349 0.45707695944267407 0.011508475984509863 0.038011651290090466 +0 0.4418413606730695 0.418334258230109 0.02630494819763409 0.06286547476785224 +0 0.37813401604404284 0.3642407132868181 0.013974567229885942 0.024853823477761786 +0 0.31031648798141764 0.34888983609383567 0.013152474098817046 0.04093565020644874 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000258.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000258.txt new file mode 100644 index 0000000..429e5d3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000258.txt @@ -0,0 +1,5 @@ +0 0.37813401604404284 0.36570267928274053 0.015618527714627004 0.04532161511872944 +0 0.6387176325524045 0.6412874857584635 0.02712700369913687 0.07602343642920778 +0 0.5852856806556335 0.5513752050567092 0.02055071020537916 0.06286554169236568 +0 0.49773944144478277 0.46950383771929827 0.013152436469250925 0.04824561403508772 +0 0.44266337854500615 0.4124862938596491 0.014796547472256474 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000259.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000259.txt new file mode 100644 index 0000000..5197dfc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000259.txt @@ -0,0 +1,5 @@ +0 0.6432388249219714 0.6507903985809862 0.02466091245376079 0.08918126424153645 +0 0.5902178631463857 0.5528372045148883 0.017262638717632554 0.059941542776007405 +0 0.5022605961847834 0.46365590681109514 0.015618602973759249 0.04532168204324288 +0 0.4426634161745723 0.41979625768828804 0.021372765706881937 0.05994147585149397 +0 0.3814221627909217 0.36643366228070173 0.017262638717632554 0.03508771929824561 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000260.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000260.txt new file mode 100644 index 0000000..95182a5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000260.txt @@ -0,0 +1,6 @@ +0 0.5889848175236976 0.5652641162537692 0.01808461896000308 0.07017543859649122 +0 0.6350184956843404 0.6529833810371265 0.01972872996300863 0.0818713673374109 +0 0.49979450493940736 0.4702348541795162 0.0139744919707537 0.04970764695552357 +0 0.44430745191844556 0.4241822226005688 0.018084694219135326 0.05994147585149397 +0 0.38060010728941895 0.36935766119706004 0.013974567229885942 0.04385964912280702 +0 0.6966707768187422 0.7750594155830248 0.014796547472256474 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000261.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000261.txt new file mode 100644 index 0000000..2e00e0d --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000261.txt @@ -0,0 +1,6 @@ +0 0.6354295234350917 0.6588313454075864 0.018906674461505856 0.07309937058833607 +0 0.5836416072821942 0.5521061880546704 0.020550785464511407 0.055555577863726696 +0 0.4973284136940313 0.46584888926723544 0.015618602973759249 0.04385964912280702 +0 0.443485434046509 0.41541029277600744 0.021372840966014182 0.05701754385964913 +0 0.37648994267060343 0.3671646787409197 0.020550785464511407 0.03362568637780976 +0 0.692560649829493 0.7867553108616879 0.01808461896000308 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000262.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000262.txt new file mode 100644 index 0000000..fb47cad --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000262.txt @@ -0,0 +1,7 @@ +0 0.31031648798141764 0.3459658371774774 0.013152474098817046 0.03216372038188734 +0 0.6929716399506781 0.793334258230109 0.02219482120838471 0.07309943751284952 +0 0.6321414143177789 0.6478664331268845 0.033703297192894575 0.0804094013414885 +0 0.584874652904882 0.5550301869710287 0.01644058321612978 0.0643275076882881 +0 0.49938347718865594 0.4556149599844949 0.014796547472256474 0.04970758003101015 +0 0.4418413606730695 0.4161412757739686 0.018084694219135326 0.03801171821460389 +0 0.37648998030016956 0.3569307494581791 0.017262638717632554 0.033625753302323196 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000263.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000263.txt new file mode 100644 index 0000000..2c7ca87 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000263.txt @@ -0,0 +1,6 @@ +0 0.6863954217160527 0.7823693459494071 0.018906749720638102 0.051169612951446 +0 0.6313193588162762 0.6544453804953057 0.02712700369913687 0.07894736842105264 +0 0.5844636627836968 0.5557611699689898 0.018906674461505856 0.06871340567605537 +0 0.49404030457671855 0.45707695944267407 0.018906749720638102 0.05555551093921327 +0 0.43978629717844486 0.40079043204324294 0.02055071020537916 0.05701754385964913 +0 0.37648994267060343 0.35035183555201477 0.0139744919707537 0.04385964912280702 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000264.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000264.txt new file mode 100644 index 0000000..2d616c5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000264.txt @@ -0,0 +1,6 @@ +0 0.44060831505038156 0.39348046821460386 0.023838856952258014 0.06578947368421054 +0 0.49979450493940736 0.45342201099061136 0.0139744919707537 0.03947368421052632 +0 0.5852856806556335 0.5389482933178282 0.017262638717632554 0.0643275076882881 +0 0.6337854500616522 0.6420185022186815 0.02219482120838471 0.08333333333333333 +0 0.6847513483426133 0.7852933448657655 0.018906674461505856 0.04239768312688459 +0 0.3785450061652281 0.3423108552631579 0.01972872996300863 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000265.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000265.txt new file mode 100644 index 0000000..fb9122f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000265.txt @@ -0,0 +1,6 @@ +0 0.684340358221428 0.7838313454075864 0.021372765706881937 0.06578947368421054 +0 0.632141414317779 0.6442114846748218 0.02383893221139026 0.07894736842105264 +0 0.5869297163995069 0.5477202231423897 0.02712700369913687 0.07602336950469435 +0 0.4969174235728461 0.43880211679559006 0.01644058321612978 0.033625753302323196 +0 0.4430744062957575 0.38397755539208134 0.018906674461505856 0.04970758003101015 +0 0.37854504379479426 0.3379249238131339 0.018084694219135326 0.036549685294168036 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000266.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000266.txt new file mode 100644 index 0000000..e4d4eb2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000266.txt @@ -0,0 +1,6 @@ +0 0.37895603391597954 0.3298839769865337 0.018906674461505856 0.04385964912280702 +0 0.6863954217160527 0.7823693459494072 0.02055071020537916 0.05409354494329084 +0 0.6300863131935881 0.6383634868421052 0.02466091245376079 0.07894736842105264 +0 0.5873407441502583 0.5418722922341865 0.027949059200639642 0.07602336950469435 +0 0.5006165228113441 0.4366091343394497 0.017262638717632554 0.055555577863726696 +0 0.4418413606730695 0.3752056255675199 0.018084694219135326 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000267.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000267.txt new file mode 100644 index 0000000..18e2ab5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000267.txt @@ -0,0 +1,7 @@ +0 0.3164817349096409 0.29845120614035087 0.017262638717632554 0.03947368421052632 +0 0.383066198534795 0.3291529605263158 0.02383893221139026 0.04824561403508772 +0 0.4471845709145731 0.37666759156344237 0.02219482120838471 0.05847950985557155 +0 0.5043156973089743 0.4351471348812706 0.013152511728383168 0.040935717130962175 +0 0.589395845274449 0.5301763634932668 0.03041515044601572 0.055555577863726696 +0 0.6317303865670276 0.6398254863002844 0.027949059200639642 0.0818713673374109 +0 0.6810522491041153 0.7735974161248459 0.01972872996300863 0.059941542776007405 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000268.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000268.txt new file mode 100644 index 0000000..a85ac98 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000268.txt @@ -0,0 +1,6 @@ +0 0.3884093711467324 0.31307110033537217 0.014796547472256474 0.05409354494329084 +0 0.44882860665844637 0.3671646787409197 0.012330456226880395 0.04532168204324288 +0 0.5051377151809109 0.4314921529669511 0.011508475984509863 0.051169612951446 +0 0.5869297540290729 0.5221354501289234 0.020550785464511407 0.05409354494329084 +0 0.6296753230724029 0.6303225734777618 0.017262638717632554 0.05994147585149397 +0 0.6802301936026126 0.7809073464912282 0.023016801450755242 0.06578947368421054 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000269.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000269.txt new file mode 100644 index 0000000..8e5ca45 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000269.txt @@ -0,0 +1,6 @@ +0 0.6822852570972373 0.7852933114035087 0.023838856952258014 0.05701754385964913 +0 0.6313193964458423 0.6332465389318633 0.025482967955263565 0.0774854024251302 +0 0.5910399186478885 0.5235974495871025 0.017262638717632554 0.05701754385964913 +0 0.5080148341770384 0.42345123960260755 0.015618602973759249 0.04970758003101015 +0 0.45293877127726184 0.36350969682660017 0.018906674461505856 0.05847950985557155 +0 0.3896424543989866 0.31599506578947373 0.020550785464511407 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000270.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000270.txt new file mode 100644 index 0000000..3940d21 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000270.txt @@ -0,0 +1,6 @@ +0 0.6761200666133631 0.7794453804953055 0.01972872996300863 0.05701754385964913 +0 0.6313193588162762 0.6222816266511616 0.02219482120838471 0.07309943751284952 +0 0.5930949821425131 0.5192114846748218 0.018084694219135326 0.05701754385964913 +0 0.5100698976716631 0.4146793097780461 0.023016801450755242 0.04678364803916529 +0 0.45581589027338937 0.35912373191431946 0.02466091245376079 0.055555577863726696 +0 0.39498562701092405 0.31307113379762885 0.021372765706881937 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000271.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000271.txt new file mode 100644 index 0000000..2244975 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000271.txt @@ -0,0 +1,6 @@ +0 0.6292642953216515 0.6230126431113795 0.027949059200639642 0.09795319406609786 +0 0.5906288908971371 0.5140945033023232 0.01644058321612978 0.04970764695552357 +0 0.5125359889170392 0.40810036240962516 0.023016801450755242 0.04532161511872944 +0 0.4591039993907021 0.35254478454589844 0.01644058321612978 0.06286547476785224 +0 0.39786274600705146 0.30503017023990026 0.018906749720638102 0.049707613493266856 +0 0.3304562456951777 0.269942467672783 0.015618565344193125 0.03801171821460389 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000272.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000272.txt new file mode 100644 index 0000000..1b319af --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000272.txt @@ -0,0 +1,7 @@ +0 0.6609124913903553 0.7714044336687055 0.023838856952258014 0.0818713673374109 +0 0.6226880394574599 0.624474609107302 0.02466091245376079 0.08040933441697505 +0 0.5881627620221949 0.5184804682146039 0.02466091245376079 0.07894736842105264 +0 0.5133580067889758 0.40883134540758637 0.011508400725377621 0.040935717130962175 +0 0.4545828446507013 0.35035183555201477 0.02877111470214242 0.06140350877192982 +0 0.39457463688973876 0.29698924014442846 0.015618602973759249 0.03654975221868147 +0 0.3325113091898023 0.2604395213880037 0.021372803336448056 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000273.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000273.txt new file mode 100644 index 0000000..85af723 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000273.txt @@ -0,0 +1,6 @@ +0 0.3933415912670507 0.28967929304691786 0.00822032923763101 0.045321648580986154 +0 0.4541718168999499 0.33792492381313394 0.018084694219135326 0.04532161511872944 +0 0.5067817509247842 0.3964044336687054 0.014796547472256474 0.04239768312688459 +0 0.5819975715383208 0.5031295910216215 0.023838856952258014 0.06286554169236568 +0 0.6157007934720832 0.6142407132868182 0.020550785464511407 0.06286547476785224 +0 0.6494040530354115 0.7757903985809863 0.02055071020537916 0.0643275076882881 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000274.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000274.txt new file mode 100644 index 0000000..66d7300 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000274.txt @@ -0,0 +1,6 @@ +0 0.39087550002167465 0.2823693459494072 0.021372765706881937 0.033625753302323196 +0 0.45006165228113443 0.3174570652476528 0.014796547472256474 0.036549685294168036 +0 0.5067817885543503 0.388363520304362 0.018084694219135326 0.03801171821460389 +0 0.5807645259156328 0.48924067982456143 0.021372765706881937 0.06140350877192982 +0 0.6095356029882091 0.6040067840040776 0.02466091245376079 0.0804094013414885 +0 0.6399507158046586 0.7604395213880037 0.023016876709887484 0.0774854024251302 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000275.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000275.txt new file mode 100644 index 0000000..64bb53f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000275.txt @@ -0,0 +1,6 @@ +0 0.39251953576554793 0.2728664331268846 0.018084694219135326 0.03508771929824561 +0 0.44923963440919773 0.31599506578947373 0.011508400725377621 0.04824561403508772 +0 0.5055487053020962 0.3825155559339022 0.012330456226880395 0.040935717130962175 +0 0.5745992978021925 0.49655064365320045 0.020550785464511407 0.06432744076377468 +0 0.6037813649959541 0.6040067840040776 0.021372840966014182 0.07456140350877193 +0 0.6276202595777782 0.7699424342105263 0.018084694219135326 0.07894736842105264 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000276.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000276.txt new file mode 100644 index 0000000..c0696d1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000276.txt @@ -0,0 +1,6 @@ +0 0.6206329759628353 0.7735974161248458 0.025482967955263565 0.09795319406609786 +0 0.5959720635090744 0.6003518020897581 0.025482967955263565 0.055555577863726696 +0 0.5721332065568164 0.4848547483745374 0.0139744919707537 0.0643275076882881 +0 0.5018495684340321 0.36862667819909883 0.01972872996300863 0.051169612951446 +0 0.4504726800318858 0.3152641162537692 0.020550785464511407 0.05263157894736842 +0 0.3974517182563001 0.2597085216589141 0.011508400725377621 0.029239754927785775 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000277.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000277.txt new file mode 100644 index 0000000..679b934 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000277.txt @@ -0,0 +1,6 @@ +0 0.603781364995954 0.7684804682146039 0.029593094944512947 0.07602343642920778 +0 0.591861898890259 0.5952348541795162 0.02219482120838471 0.06871340567605537 +0 0.5680230419380009 0.4760828185499761 0.018906749720638102 0.05847950985557155 +0 0.5018495684340321 0.36862667819909883 0.01972872996300863 0.04532161511872944 +0 0.4504726800318858 0.30356817078172116 0.018906674461505856 0.06432747422603138 +0 0.39621867263361205 0.25166759156344226 0.020550785464511407 0.051169612951446 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000278.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000278.txt new file mode 100644 index 0000000..67a11ff --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000278.txt @@ -0,0 +1,6 @@ +0 0.6046034204974569 0.7757904320432429 0.01972872996300863 0.07017543859649122 +0 0.588162799651761 0.5908488892672356 0.018084694219135326 0.06286554169236568 +0 0.5672010240660643 0.47096587063973416 0.018906674461505856 0.05701754385964913 +0 0.49979450493940736 0.3657026792827406 0.015618602973759249 0.027777755469606636 +0 0.45006168991070056 0.29991320559853 0.018084694219135326 0.04239768312688459 +0 0.39498562701092405 0.24508864419502124 0.021372765706881937 0.04970758003101015 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000279.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000279.txt new file mode 100644 index 0000000..2d671da --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000279.txt @@ -0,0 +1,6 @@ +0 0.5976161368825139 0.7816383629514461 0.02219482120838471 0.07602343642920778 +0 0.5856967084063849 0.5886559068110951 0.023016876709887484 0.07017543859649122 +0 0.5643239050699369 0.4760828185499761 0.01644065847526202 0.06725143968013295 +0 0.5018495684340321 0.36277871382863897 0.014796547472256474 0.03654975221868147 +0 0.44759556103575837 0.3042991872419391 0.01972872996300863 0.06578950714646724 +0 0.39868476387898816 0.24435764446593167 0.015618602973759249 0.045321648580986154 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000280.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000280.txt new file mode 100644 index 0000000..1fb56ef --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000280.txt @@ -0,0 +1,6 @@ +0 0.394985627010924 0.23997167955365098 0.01644058321612978 0.03362571984006647 +0 0.4438964241676942 0.28675531086168793 0.017262638717632554 0.05409354494329084 +0 0.49486232244865513 0.3474278366356565 0.015618602973759249 0.04385964912280702 +0 0.5552815579603692 0.47535183555201477 0.023016876709887484 0.04824561403508772 +0 0.5733662521795044 0.5886559068110951 0.023016876709887484 0.07017543859649122 +0 0.582408561659506 0.7874863273219058 0.018084694219135326 0.09064329716197231 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000281.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000281.txt new file mode 100644 index 0000000..3cddfc2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000281.txt @@ -0,0 +1,6 @@ +0 0.5651459229418735 0.7662874857584635 0.021372765706881937 0.07163747151692708 +0 0.5622688415753121 0.5937728881835938 0.025482967955263565 0.08333333333333333 +0 0.5462392484803675 0.46219394081517273 0.018084694219135326 0.05701754385964913 +0 0.4854089852179023 0.3423108887254146 0.013152436469250925 0.036549685294168036 +0 0.43608716031038075 0.27359741612484584 0.011508475984509863 0.033625753302323196 +0 0.38553228978017107 0.21657987226519668 0.017262638717632554 0.04532161511872944 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000282.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000282.txt new file mode 100644 index 0000000..94690f4 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000282.txt @@ -0,0 +1,6 @@ +0 0.556103613461872 0.7867553108616879 0.01644058321612978 0.05409354494329084 +0 0.5552815955899353 0.5828079424406353 0.014796547472256474 0.04970758003101015 +0 0.539662992616176 0.4556149599844949 0.021372840966014182 0.05847950985557155 +0 0.48540898521790227 0.3474278366356565 0.011508475984509863 0.04385964912280702 +0 0.43115497781962864 0.26921146794369344 0.01972872996300863 0.04824564749734444 +0 0.3838882164067317 0.2100009248967756 0.018906674461505856 0.03508771929824561 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000283.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000283.txt new file mode 100644 index 0000000..16259f0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000283.txt @@ -0,0 +1,6 @@ +0 0.5400739827373613 0.7874863273219058 0.02219482120838471 0.07309943751284952 +0 0.5421290838615521 0.5901179062692742 0.0279489839415074 0.07602336950469435 +0 0.5293876375134865 0.45122899507221426 0.017262638717632554 0.055555577863726696 +0 0.4759556103575832 0.3240360460783306 0.012330456226880395 0.03508771929824561 +0 0.4204685949661876 0.25239859129253184 0.023016876709887484 0.05555554440146999 +0 0.37813401604404284 0.19611203043084396 0.02055071020537916 0.03654971875642476 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000284.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000284.txt new file mode 100644 index 0000000..84c1332 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000284.txt @@ -0,0 +1,6 @@ +0 0.37443487917597873 0.18514713488127055 0.011508475984509863 0.02631578947368421 +0 0.42170160295930953 0.24655064365320037 0.02219482120838471 0.05263157894736842 +0 0.4693793921229578 0.3211120471619723 0.02055071020537916 0.04678358111465186 +0 0.519523234902416 0.4585389589008532 0.023838856952258014 0.07309943751284952 +0 0.5281545542612323 0.587193907352916 0.021372765706881937 0.07602336950469435 +0 0.522811381649295 0.7874862938596492 0.020550785464511407 0.08771929824561404 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000285.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000285.txt new file mode 100644 index 0000000..ca8b71e --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000285.txt @@ -0,0 +1,6 @@ +0 0.37237977805178796 0.1800301535087719 0.012330456226880395 0.03070175438596491 +0 0.41882452159274824 0.24070267928274056 0.01644065847526202 0.06140350877192982 +0 0.464858237382957 0.3094161184210526 0.011508400725377621 0.03508771929824561 +0 0.5137690345397272 0.4446500477037932 0.015618527714627004 0.059941542776007405 +0 0.5215782983970407 0.5784219775283546 0.01972872996300863 0.07309943751284952 +0 0.5051377151809109 0.7904102927760074 0.014796547472256474 0.05263157894736842 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000286.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000286.txt new file mode 100644 index 0000000..5723cf9 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000286.txt @@ -0,0 +1,5 @@ +0 0.5006165228113441 0.8079541524251302 0.02219482120838471 0.07602343642920778 +0 0.5211673082758554 0.5857319413569936 0.02712700369913687 0.10233915897837856 +0 0.5121249611662877 0.44245706524765277 0.018906674461505856 0.0643275076882881 +0 0.4669133008775817 0.311609100877193 0.02383893221139026 0.04824561403508772 +0 0.42170164058887555 0.23339273218522993 0.018906674461505856 0.04093568366870545 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000287.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000287.txt new file mode 100644 index 0000000..7f093e2 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000287.txt @@ -0,0 +1,6 @@ +0 0.49321824907521583 0.8108781513414886 0.02219482120838471 0.07894736842105264 +0 0.5133580067889758 0.5886559068110951 0.023016876709887484 0.07894736842105264 +0 0.5117139334155364 0.43953309979355126 0.02466091245376079 0.07309937058833607 +0 0.4669133008775817 0.31307113379762885 0.017262638717632554 0.03947368421052632 +0 0.42087958508737283 0.23339273218522993 0.025482967955263565 0.038011684752347175 +0 0.31154955241888876 0.11277869709751062 0.017262638717632554 0.045321648580986154 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000288.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000288.txt new file mode 100644 index 0000000..61358c5 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000288.txt @@ -0,0 +1,7 @@ +0 0.4866420308405903 0.821112080624229 0.02548289269613132 0.06140357569644326 +0 0.5141800246609124 0.5966968201754387 0.029593094944512947 0.07456140350877193 +0 0.5121249611662878 0.4417260822496916 0.020550785464511407 0.04824561403508772 +0 0.4665023107563965 0.30283718778375995 0.02466091245376079 0.045321648580986154 +0 0.4241677318342517 0.22681380154793726 0.0139744919707537 0.04824561403508772 +0 0.3810111350401703 0.16248631059077748 0.011508400725377621 0.03654971875642476 +0 0.31483766153620146 0.09962081909179688 0.015618602973759249 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000289.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000289.txt new file mode 100644 index 0000000..84cb906 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000289.txt @@ -0,0 +1,6 @@ +0 0.47883276698327676 0.8240360126160737 0.014796547472256474 0.06725143968013295 +0 0.5125359889170391 0.5937728881835938 0.026305023456766337 0.06578947368421054 +0 0.5092478797997264 0.43953309979355126 0.021372765706881937 0.05555551093921327 +0 0.4660912453760789 0.3021061880546704 0.012330456226880395 0.03216372038188734 +0 0.4200575672154362 0.2195038544504266 0.018906749720638102 0.045321648580986154 +0 0.37443487917597873 0.1500593988518966 0.01644065847526202 0.03216375384414405 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000290.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000290.txt new file mode 100644 index 0000000..81bca96 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000290.txt @@ -0,0 +1,6 @@ +0 0.4730785289910219 0.8415798722651968 0.01808461896000308 0.07602336950469435 +0 0.508836852048975 0.5981588196336177 0.02877111470214242 0.08918126424153645 +0 0.5071928163051018 0.4446500477037932 0.017262638717632554 0.0687134726005688 +0 0.4640361818814542 0.29406524122807015 0.023016876709887484 0.06578947368421054 +0 0.4241677318342517 0.21804185499224746 0.018906674461505856 0.04239764966462788 +0 0.3756679247986668 0.14348045148347552 0.017262638717632554 0.027777788931863348 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000291.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000291.txt new file mode 100644 index 0000000..d3aff5f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000291.txt @@ -0,0 +1,6 @@ +0 0.3769009704213548 0.1369015041150545 0.01644065847526202 0.023391824019582647 +0 0.42704481320081306 0.2151178895381459 0.018084694219135326 0.045321648580986154 +0 0.46526922750414224 0.29772022314238966 0.015618602973759249 0.04678364803916529 +0 0.5084258242982236 0.44318808170787083 0.021372765706881937 0.051169612951446 +0 0.5026716239355349 0.5988898026315789 0.02466091245376079 0.07017543859649122 +0 0.46773535637908453 0.8371939408151727 0.017262638717632554 0.07017543859649122 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000292.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000292.txt new file mode 100644 index 0000000..3b9592b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000292.txt @@ -0,0 +1,6 @@ +0 0.4541718168999499 0.8927495186788994 0.02630494819763409 0.08187130041289747 +0 0.49979450493940736 0.6361705378482215 0.03041515044601572 0.08625733224969162 +0 0.5010275505620954 0.44245709870990957 0.02630494819763409 0.05263157894736842 +0 0.47595564798714934 0.3064921529669511 0.03041515044601572 0.07602336950469435 +0 0.43608716031038075 0.2063459597135845 0.021372840966014182 0.06286550823010897 +0 0.38635430765210776 0.10839273218522992 0.03041515044601572 0.05994150931375069 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000293.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000293.txt new file mode 100644 index 0000000..3b43fd6 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000293.txt @@ -0,0 +1,6 @@ +0 0.45129473553338856 0.8898255197625411 0.028771039443010172 0.05847944293105811 +0 0.5010275881916616 0.6281295910216214 0.01972872996300863 0.05847957678008498 +0 0.5055487429316623 0.4380711003353721 0.03041515044601572 0.055555577863726696 +0 0.47348955674177323 0.3130711003353721 0.03041515044601572 0.059941542776007405 +0 0.4315659679408138 0.19757402988902306 0.02219482120838471 0.054093578405547564 +0 0.3333333458765221 0.0689190479747036 0.02466091245376079 0.054093578405547564 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000294.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000294.txt new file mode 100644 index 0000000..bae279f --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000294.txt @@ -0,0 +1,6 @@ +0 0.44841761653726114 0.9037143640350876 0.0279489839415074 0.08333333333333333 +0 0.5010275505620954 0.6281295910216215 0.027949059200639642 0.07309937058833607 +0 0.5034936418074715 0.4446500811660499 0.036169313179138414 0.07456140350877193 +0 0.4356761325596293 0.2063459597135845 0.015618602973759249 0.05994150931375069 +0 0.4775996837310227 0.3152641162537692 0.028771039443010172 0.06140350877192982 +0 0.3304562456951776 0.07038104743288275 0.010686382853440968 0.03654971875642476 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000295.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000295.txt new file mode 100644 index 0000000..367c458 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000295.txt @@ -0,0 +1,7 @@ +0 0.4496506621599492 0.8825155559339021 0.02712700369913687 0.08479536625376918 +0 0.49773944144478266 0.6032758010061164 0.02466091245376079 0.06725143968013295 +0 0.5006165604409101 0.44757401315789475 0.03041515044601572 0.06578947368421054 +0 0.4286888865742524 0.19172606551856325 0.03288116643225956 0.045321648580986154 +0 0.47677766585908604 0.30722313596491224 0.02383893221139026 0.05701754385964913 +0 0.3288121723217382 0.06526408279151248 0.023838894581824137 0.02923978839004249 +0 0.3810110974106042 0.1186266447368421 0.02466091245376079 0.04824561403508772 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000296.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000296.txt new file mode 100644 index 0000000..ac1d51a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000296.txt @@ -0,0 +1,4 @@ +0 0.4541718168999499 0.8715506771154572 0.021372765706881937 0.06578954060872395 +0 0.4997945049394074 0.6098547483745373 0.023838856952258014 0.05409354494329084 +0 0.5067817509247842 0.43953309979355126 0.014796547472256474 0.06432744076377468 +0 0.4290999143250039 0.19099508252060204 0.028771039443010172 0.06432747422603138 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000297.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000297.txt new file mode 100644 index 0000000..02e76f1 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000297.txt @@ -0,0 +1,5 @@ +0 0.505137715180911 0.4307611699689899 0.01972872996300863 0.05263157894736842 +0 0.5010275505620954 0.6098547149122807 0.023016876709887484 0.08333333333333333 +0 0.455404862522638 0.8510827850877193 0.028771039443010172 0.06578947368421054 +0 0.37772298829329143 0.12593659183435274 0.018084694219135326 0.03362571984006647 +0 0.46198111838682954 0.28456232840554757 0.013974567229885942 0.03801171821460389 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000298.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000298.txt new file mode 100644 index 0000000..53af8ee --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000298.txt @@ -0,0 +1,6 @@ +0 0.46444720963220565 0.8540067840040776 0.02383893221139026 0.07163747151692708 +0 0.5026716239355349 0.6032758010061164 0.023016801450755242 0.05847950985557155 +0 0.5055487053020962 0.43149215296695104 0.012330456226880395 0.059941542776007405 +0 0.4673243286283332 0.281638362951446 0.013152511728383168 0.04385964912280702 +0 0.4237567040835003 0.20122899507221423 0.023016801450755242 0.04093565020644874 +0 0.3756679247986668 0.13251555593390216 0.017262638717632554 0.03508771929824561 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000299.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000299.txt new file mode 100644 index 0000000..d02c7d0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000299.txt @@ -0,0 +1,4 @@ +0 0.5782984346702567 0.5243284325850637 0.02630494819763409 0.08479529932925577 +0 0.5976161368825139 0.8079541524251302 0.02877111470214242 0.06432744076377468 +0 0.5421290838615522 0.34888983609383567 0.01644065847526202 0.055555577863726696 +0 0.5228113816492949 0.2538605740195826 0.018906674461505856 0.04678364803916529 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000300.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000300.txt new file mode 100644 index 0000000..9f5a2d3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000300.txt @@ -0,0 +1,4 @@ +0 0.5828195894102575 0.5447962576882881 0.02548289269613132 0.07602343642920778 +0 0.594327990135635 0.8225740800824082 0.036991368680641186 0.06725150660464639 +0 0.5433621294842401 0.3605857313724986 0.018906749720638102 0.04678358111465186 +0 0.5224003538985434 0.25751555593390213 0.02466091245376079 0.05409361186780428 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000301.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000301.txt new file mode 100644 index 0000000..89e5b38 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000301.txt @@ -0,0 +1,5 @@ +0 0.6017262638717632 0.6405565027605024 0.032059186189889025 0.08625733224969162 +0 0.5869297540290729 0.8810535899379798 0.020550785464511407 0.06432757461280153 +0 0.610768648610897 0.9424570987099096 0.02219482120838471 0.05847944293105811 +0 0.5548705302096179 0.4051763634932669 0.02712700369913687 0.08040933441697505 +0 0.5400739827373613 0.3013751883255808 0.017262638717632554 0.05116957948918928 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000302.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000302.txt new file mode 100644 index 0000000..07f36ea --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000302.txt @@ -0,0 +1,5 @@ +0 0.6165228489735859 0.9556149934467516 0.020550785464511407 0.05263157894736842 +0 0.589395845274449 0.8949425011350398 0.03534733293676788 0.0804094013414885 +0 0.6046033828678907 0.6383634868421052 0.021372765706881937 0.07894736842105264 +0 0.5700781054326256 0.43514713488127055 0.02630494819763409 0.07017543859649122 +0 0.5532264944657445 0.3123401173374109 0.018906749720638102 0.06140350877192982 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000303.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000303.txt new file mode 100644 index 0000000..e157d99 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000303.txt @@ -0,0 +1,5 @@ +0 0.5684340696887523 0.4176032752321477 0.027949059200639642 0.05847957678008498 +0 0.5544595400884325 0.3167260822496916 0.011508475984509863 0.06432744076377468 +0 0.6021373292520807 0.6478664331268846 0.029593094944512947 0.10087719298245615 +0 0.590628890897137 0.900059415583025 0.027949059200639642 0.09064323023745888 +0 0.6185779124682105 0.9651178728070176 0.023016801450755242 0.05701754385964913 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000304.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000304.txt new file mode 100644 index 0000000..9c464d7 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000304.txt @@ -0,0 +1,4 @@ +0 0.6058364284905787 0.6485974495871025 0.03370322193376233 0.09649122807017543 +0 0.5992602102559533 0.9110243947882402 0.028771039443010172 0.07456140350877193 +0 0.5725442343075678 0.4263752050567091 0.029593094944512947 0.06140350877192982 +0 0.5524044765938079 0.3196500477037932 0.023838856952258014 0.05847950985557155 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000305.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000305.txt new file mode 100644 index 0000000..93dd794 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000305.txt @@ -0,0 +1,4 @@ +0 0.6017263015013294 0.9110243278637267 0.023838856952258014 0.07748533550061679 +0 0.6128236744759555 0.6581003289473684 0.029593094944512947 0.09210526315789473 +0 0.5799424704141299 0.4402640827915125 0.027949059200639642 0.0687134726005688 +0 0.5614467860738094 0.3225740466201515 0.020550785464511407 0.07309943751284952 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000306.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000306.txt new file mode 100644 index 0000000..f847c7c --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000306.txt @@ -0,0 +1,4 @@ +0 0.6017262638717632 0.9051763969555235 0.032059186189889025 0.07748546934964365 +0 0.6144677854789611 0.6551763969555235 0.029593094944512947 0.09210526315789473 +0 0.5856966707768188 0.43368513542309145 0.02466091245376079 0.08479529932925577 +0 0.5585696670776819 0.3211120471619723 0.02466091245376079 0.05555551093921327 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000307.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000307.txt new file mode 100644 index 0000000..c82a857 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000307.txt @@ -0,0 +1,4 @@ +0 0.6181668847174591 0.6719892401444285 0.03370322193376233 0.0994151600620203 +0 0.5688450974395037 0.3357319413569936 0.017262638717632554 0.0643275076882881 +0 0.6070694741132668 0.9176032752321477 0.03123713068838625 0.06725150660464639 +0 0.5877517719010096 0.443919064705832 0.02877111470214242 0.07309937058833607 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000308.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000308.txt new file mode 100644 index 0000000..c004143 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000308.txt @@ -0,0 +1,4 @@ +0 0.6041923927467054 0.8949424342105263 0.023838856952258014 0.07456140350877193 +0 0.5815865437875694 0.5901179062692742 0.03288116643225956 0.11111108880293998 +0 0.5425400739827374 0.3788606074818394 0.02712700369913687 0.07456140350877193 +0 0.5260994907666076 0.2867553108616879 0.017262638717632554 0.0687134726005688 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000309.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000309.txt new file mode 100644 index 0000000..7b08947 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000309.txt @@ -0,0 +1,4 @@ +0 0.5836416449117603 0.570381064164011 0.02712700369913687 0.10380119189881441 +0 0.6054254383693934 0.8817845729359408 0.02630494819763409 0.09502926207425302 +0 0.5437731572349915 0.3869015208461829 0.018084694219135326 0.07602343642920778 +0 0.5256884630158563 0.27432841585393536 0.013152511728383168 0.049707613493266856 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000310.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000310.txt new file mode 100644 index 0000000..da975d3 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/labels/dataset1/image_000001000310.txt @@ -0,0 +1,4 @@ +0 0.5466502762311191 0.3737436261093407 0.017262638717632554 0.07017543859649122 +0 0.5799424704141299 0.5594161184210525 0.021372765706881937 0.08771929824561404 +0 0.5935059722636983 0.8408489227294922 0.03041515044601572 0.07456147043328537 +0 0.5236333995212314 0.27359743285597415 0.015618527714627004 0.04824564749734444 diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/liste_images.cache b/yolov7-tracker-example/data/dataset1_2024_06_19/liste_images.cache new file mode 100644 index 0000000..0d8f2ad Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/liste_images.cache differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/liste_images.txt b/yolov7-tracker-example/data/dataset1_2024_06_19/liste_images.txt new file mode 100644 index 0000000..85bef8a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/liste_images.txt @@ -0,0 +1,311 @@ +./dataset1_2024_06_19/images/dataset1/image_000001000000.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000001.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000002.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000003.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000004.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000005.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000006.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000007.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000008.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000009.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000010.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000011.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000012.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000013.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000014.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000015.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000016.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000017.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000018.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000019.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000020.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000021.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000022.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000023.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000024.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000025.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000026.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000027.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000028.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000029.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000030.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000031.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000032.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000033.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000034.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000035.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000036.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000037.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000038.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000039.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000040.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000041.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000042.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000043.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000044.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000045.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000046.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000047.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000048.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000049.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000050.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000051.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000052.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000053.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000054.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000055.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000056.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000057.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000058.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000059.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000060.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000061.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000062.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000063.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000064.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000065.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000066.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000067.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000068.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000069.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000070.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000071.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000072.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000073.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000074.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000075.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000076.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000077.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000078.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000079.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000080.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000081.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000082.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000083.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000084.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000085.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000086.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000087.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000088.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000089.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000090.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000091.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000092.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000093.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000094.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000095.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000096.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000097.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000098.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000099.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000100.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000101.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000102.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000103.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000104.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000105.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000106.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000107.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000108.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000109.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000110.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000111.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000112.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000113.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000114.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000115.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000116.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000117.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000118.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000119.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000120.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000121.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000122.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000123.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000124.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000125.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000126.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000127.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000128.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000129.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000130.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000131.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000132.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000133.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000134.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000135.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000136.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000137.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000138.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000139.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000140.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000141.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000142.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000143.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000144.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000145.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000146.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000147.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000148.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000149.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000150.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000151.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000152.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000153.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000154.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000155.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000156.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000157.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000158.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000159.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000160.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000161.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000162.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000163.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000164.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000165.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000166.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000167.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000168.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000169.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000170.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000171.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000172.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000173.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000174.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000175.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000176.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000177.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000178.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000179.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000180.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000181.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000182.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000183.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000184.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000185.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000186.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000187.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000188.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000189.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000190.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000191.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000192.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000193.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000194.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000195.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000196.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000197.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000198.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000199.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000200.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000201.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000202.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000203.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000204.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000205.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000206.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000207.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000208.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000209.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000210.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000211.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000212.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000213.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000214.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000215.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000216.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000217.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000218.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000219.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000220.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000221.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000222.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000223.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000224.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000225.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000226.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000227.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000228.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000229.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000230.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000231.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000232.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000233.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000234.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000235.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000236.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000237.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000238.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000239.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000240.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000241.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000242.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000243.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000244.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000245.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000246.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000247.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000248.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000249.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000250.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000251.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000252.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000253.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000254.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000255.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000256.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000257.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000258.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000259.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000260.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000261.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000262.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000263.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000264.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000265.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000266.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000267.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000268.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000269.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000270.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000271.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000272.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000273.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000274.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000275.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000276.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000277.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000278.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000279.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000280.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000281.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000282.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000283.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000284.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000285.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000286.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000287.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000288.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000289.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000290.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000291.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000292.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000293.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000294.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000295.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000296.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000297.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000298.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000299.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000300.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000301.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000302.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000303.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000304.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000305.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000306.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000307.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000308.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000309.jpg +./dataset1_2024_06_19/images/dataset1/image_000001000310.jpg diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/course-export.json b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/course-export.json new file mode 100644 index 0000000..00596f0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/course-export.json @@ -0,0 +1,76220 @@ +{ + "name": "course", + "securityToken": "course Token", + "videoSettings": { + "frameExtractionRate": 20 + }, + "tags": [ + { + "name": "coureur", + "color": "#800080" + } + ], + "id": "IeMrh1FNU", + "activeLearningSettings": { + "autoDetect": false, + "predictTag": true, + "modelPathType": "coco" + }, + "version": "2.2.0", + "lastVisitedAssetId": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "assets": { + "696ed93b184a273603c461b66b717731": { + "asset": { + "id": "696ed93b184a273603c461b66b717731", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=58.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=58.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 58.4 + }, + "regions": [ + { + "id": "KOexBQLK5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 122.05504392725031, + "left": 169.93015952527745, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 169.93015952527745, + "y": 419.62174265008224 + }, + { + "x": 291.98520345252774, + "y": 419.62174265008224 + }, + { + "x": 291.98520345252774, + "y": 562.7796213250411 + }, + { + "x": 169.93015952527745, + "y": 562.7796213250411 + } + ] + }, + { + "id": "nXM_O6WfH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 53.66214549938348, + "left": 727.5955610357584, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 727.5955610357584, + "y": 398.56909500925167 + }, + { + "x": 781.2577065351418, + "y": 398.56909500925167 + }, + { + "x": 781.2577065351418, + "y": 518.5690950092517 + }, + { + "x": 727.5955610357584, + "y": 518.5690950092517 + } + ] + }, + { + "id": "o7J7jAIrw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36844514545642, + "width": 69.44512946979039, + "left": 552.930602651048, + "top": 189.09540276778372 + }, + "points": [ + { + "x": 552.930602651048, + "y": 189.09540276778372 + }, + { + "x": 622.3757321208385, + "y": 189.09540276778372 + }, + { + "x": 622.3757321208385, + "y": 296.46384791324016 + }, + { + "x": 552.930602651048, + "y": 296.46384791324016 + } + ] + }, + { + "id": "C4l8k4fyc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 100.00001606188323, + "width": 47.348951911220716, + "left": 620.2712700369914, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 620.2712700369914, + "y": 254.35855263157896 + }, + { + "x": 667.6202219482121, + "y": 254.35855263157896 + }, + { + "x": 667.6202219482121, + "y": 354.3585686934622 + }, + { + "x": 620.2712700369914, + "y": 354.3585686934622 + } + ] + }, + { + "id": "upq7r-ib8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 104.21052631578948, + "width": 125.21164072133169, + "left": 682.3510712083847, + "top": 299.62174265008224 + }, + "points": [ + { + "x": 682.3510712083847, + "y": 299.62174265008224 + }, + { + "x": 807.5627119297164, + "y": 299.62174265008224 + }, + { + "x": 807.5627119297164, + "y": 403.8322689658717 + }, + { + "x": 682.3510712083847, + "y": 403.8322689658717 + } + ] + }, + { + "id": "72T9-eCGQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 138.89025893958078, + "left": 640.2630818434033, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 640.2630818434033, + "y": 366.99014764083057 + }, + { + "x": 779.153340782984, + "y": 366.99014764083057 + }, + { + "x": 779.153340782984, + "y": 436.46383185135693 + }, + { + "x": 640.2630818434033, + "y": 436.46383185135693 + } + ] + } + ], + "version": "2.2.0" + }, + "7218ac17736bb8e4f0c70b0f31b1e31d": { + "asset": { + "id": "7218ac17736bb8e4f0c70b0f31b1e31d", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=58.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=58.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 58.25 + }, + "regions": [ + { + "id": "7AYq4SyC-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 105.21992524660912, + "left": 649.7328722256474, + "top": 400.67437422902964 + }, + "points": [ + { + "x": 649.7328722256474, + "y": 400.67437422902964 + }, + { + "x": 754.9527974722565, + "y": 400.67437422902964 + }, + { + "x": 754.9527974722565, + "y": 520.6743742290296 + }, + { + "x": 649.7328722256474, + "y": 520.6743742290296 + } + ] + }, + { + "id": "pUTJArB1w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 77.86268881011098, + "left": 630.793291461159, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 630.793291461159, + "y": 365.93753212376646 + }, + { + "x": 708.6559802712701, + "y": 365.93753212376646 + }, + { + "x": 708.6559802712701, + "y": 463.8322689658717 + }, + { + "x": 630.793291461159, + "y": 463.8322689658717 + } + ] + }, + { + "id": "wd1cgCagC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 87.3684371145148, + "width": 89.43684494451294, + "left": 650.7851032675709, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 650.7851032675709, + "y": 295.4111842105263 + }, + { + "x": 740.2219482120838, + "y": 295.4111842105263 + }, + { + "x": 740.2219482120838, + "y": 382.77962132504115 + }, + { + "x": 650.7851032675709, + "y": 382.77962132504115 + } + ] + }, + { + "id": "Jz4mby3Vi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 99.99996787623355, + "width": 91.54130702836005, + "left": 562.4003930332923, + "top": 261.727005807977 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 261.727005807977 + }, + { + "x": 653.9417000616523, + "y": 261.727005807977 + }, + { + "x": 653.9417000616523, + "y": 361.7269736842105 + }, + { + "x": 562.4003930332923, + "y": 361.7269736842105 + } + ] + }, + { + "id": "vGFLnzUPk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 103.11555949445129, + "left": 506.6337854500617, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 205.93751606188323 + }, + { + "x": 609.7493449445129, + "y": 205.93751606188323 + }, + { + "x": 609.7493449445129, + "y": 294.3585686934622 + }, + { + "x": 506.6337854500617, + "y": 294.3585686934622 + } + ] + }, + { + "id": "8JkjbgH6u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 109.47370027240954, + "width": 77.86268881011098, + "left": 340.386386405672, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 340.386386405672, + "y": 210.14802631578948 + }, + { + "x": 418.24907521578297, + "y": 210.14802631578948 + }, + { + "x": 418.24907521578297, + "y": 319.621726588199 + }, + { + "x": 340.386386405672, + "y": 319.621726588199 + } + ] + }, + { + "id": "pNY42r49o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 68.39289842786683, + "left": 176.2433531134402, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 176.2433531134402, + "y": 416.46384791324016 + }, + { + "x": 244.63625154130702, + "y": 416.46384791324016 + }, + { + "x": 244.63625154130702, + "y": 542.7796373869244 + }, + { + "x": 176.2433531134402, + "y": 542.7796373869244 + } + ] + } + ], + "version": "2.2.0" + }, + "3edc139cff7c2225014a7ade3fc836d9": { + "asset": { + "id": "3edc139cff7c2225014a7ade3fc836d9", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=58.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=58.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 58.15 + }, + "regions": [ + { + "id": "SuqchtJnk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 118.94738448293586, + "width": 102.06332845252774, + "left": 140.46855733662144, + "top": 420.6743581671464 + }, + "points": [ + { + "x": 140.46855733662144, + "y": 420.6743581671464 + }, + { + "x": 242.53188578914921, + "y": 420.6743581671464 + }, + { + "x": 242.53188578914921, + "y": 539.6217426500823 + }, + { + "x": 140.46855733662144, + "y": 539.6217426500823 + } + ] + }, + { + "id": "mjtHUAllZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 107.32429099876695, + "left": 599.2273235203453, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 401.72698974609375 + }, + { + "x": 706.5516145191123, + "y": 401.72698974609375 + }, + { + "x": 706.5516145191123, + "y": 528.0427792197779 + }, + { + "x": 599.2273235203453, + "y": 528.0427792197779 + } + ] + }, + { + "id": "yoIq9NW2w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 91.57894736842105, + "width": 76.81045776818742, + "left": 530.8344250924785, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 530.8344250924785, + "y": 264.88490054481906 + }, + { + "x": 607.6448828606658, + "y": 264.88490054481906 + }, + { + "x": 607.6448828606658, + "y": 356.46384791324016 + }, + { + "x": 530.8344250924785, + "y": 356.46384791324016 + } + ] + }, + { + "id": "AMiXXhwJT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 90.52633185135691, + "width": 49.45341399506782, + "left": 516.1035758323058, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 516.1035758323058, + "y": 215.41120027240953 + }, + { + "x": 565.5569898273736, + "y": 215.41120027240953 + }, + { + "x": 565.5569898273736, + "y": 305.93753212376646 + }, + { + "x": 516.1035758323058, + "y": 305.93753212376646 + } + ] + }, + { + "id": "QF9BrX5js", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73682604337993, + "width": 101.0110974106042, + "left": 315.13361205302095, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 315.13361205302095, + "y": 215.41120027240953 + }, + { + "x": 416.14470946362513, + "y": 215.41120027240953 + }, + { + "x": 416.14470946362513, + "y": 330.1480263157895 + }, + { + "x": 315.13361205302095, + "y": 330.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "2c1fefd1f99fd23c0be6965d5d83b4f7": { + "asset": { + "id": "2c1fefd1f99fd23c0be6965d5d83b4f7", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=58.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=58", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 58 + }, + "regions": [ + { + "id": "aRlXRKx0W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 92.6315628854852, + "width": 55.76651125154131, + "left": 592.9141299321825, + "top": 433.3059371145148 + }, + "points": [ + { + "x": 592.9141299321825, + "y": 433.3059371145148 + }, + { + "x": 648.6806411837238, + "y": 433.3059371145148 + }, + { + "x": 648.6806411837238, + "y": 525.9375 + }, + { + "x": 592.9141299321825, + "y": 525.9375 + } + ] + }, + { + "id": "nrQfO-Cqq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 124.1595060110974, + "left": 503.4771886559803, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 503.4771886559803, + "y": 398.56909500925167 + }, + { + "x": 627.6366946670777, + "y": 398.56909500925167 + }, + { + "x": 627.6366946670777, + "y": 469.09539473684214 + }, + { + "x": 503.4771886559803, + "y": 469.09539473684214 + } + ] + }, + { + "id": "PMhL4tJ70", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.7368099814967, + "width": 91.54130702836005, + "left": 491.9030325215783, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 491.9030325215783, + "y": 283.8322689658717 + }, + { + "x": 583.4443395499384, + "y": 283.8322689658717 + }, + { + "x": 583.4443395499384, + "y": 358.56907894736844 + }, + { + "x": 491.9030325215783, + "y": 358.56907894736844 + } + ] + }, + { + "id": "YKsHljsAc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73682604337993, + "width": 81.019333770037, + "left": 300.40281095869295, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 300.40281095869295, + "y": 220.6743742290296 + }, + { + "x": 381.42214472872996, + "y": 220.6743742290296 + }, + { + "x": 381.42214472872996, + "y": 335.41120027240953 + }, + { + "x": 300.40281095869295, + "y": 335.41120027240953 + } + ] + }, + { + "id": "BTBqeU3Lq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 66.288532675709, + "left": 476.1200485511714, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 226.99016370271383 + }, + { + "x": 542.4085812268804, + "y": 226.99016370271383 + }, + { + "x": 542.4085812268804, + "y": 286.9901637027138 + }, + { + "x": 476.1200485511714, + "y": 286.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "55042fd1e80bce1b0e7945ec0efd02a3": { + "asset": { + "id": "55042fd1e80bce1b0e7945ec0efd02a3", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=57.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=57.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 57.85 + }, + "regions": [ + { + "id": "lxK4JBR1y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31577341180099, + "width": 92.59344173859434, + "left": 521.3646347102343, + "top": 425.93753212376646 + }, + "points": [ + { + "x": 521.3646347102343, + "y": 425.93753212376646 + }, + { + "x": 613.9580764488286, + "y": 425.93753212376646 + }, + { + "x": 613.9580764488286, + "y": 512.2533055355674 + }, + { + "x": 521.3646347102343, + "y": 512.2533055355674 + } + ] + }, + { + "id": "yzJ0smAiw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15792686060855, + "width": 50.505596871146736, + "left": 451.9194570745993, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 235.41118421052633 + }, + { + "x": 502.425053945746, + "y": 235.41118421052633 + }, + { + "x": 502.425053945746, + "y": 318.5691110711349 + }, + { + "x": 451.9194570745993, + "y": 318.5691110711349 + } + ] + }, + { + "id": "X0yo0nXkW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15792686060855, + "width": 70.49736051171394, + "left": 475.06781750924785, + "top": 285.9375 + }, + "points": [ + { + "x": 475.06781750924785, + "y": 285.9375 + }, + { + "x": 545.5651780209618, + "y": 285.9375 + }, + { + "x": 545.5651780209618, + "y": 369.09542686060854 + }, + { + "x": 475.06781750924785, + "y": 369.09542686060854 + } + ] + }, + { + "id": "o84zfQd92", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 103.15791079872533, + "width": 61.027521963625155, + "left": 300.40281095869295, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 300.40281095869295, + "y": 243.8322529039885 + }, + { + "x": 361.43033292231814, + "y": 243.8322529039885 + }, + { + "x": 361.43033292231814, + "y": 346.9901637027138 + }, + { + "x": 300.40281095869295, + "y": 346.9901637027138 + } + ] + }, + { + "id": "-GFMxeqE-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 62.07970483970407, + "left": 564.5047587854501, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 324.88490054481906 + }, + { + "x": 626.5844636251542, + "y": 324.88490054481906 + }, + { + "x": 626.5844636251542, + "y": 357.51646343030427 + }, + { + "x": 564.5047587854501, + "y": 357.51646343030427 + } + ] + }, + { + "id": "_p_SywFaI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 61.027473797780516, + "left": 540.3042154747226, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 376.46383185135693 + }, + { + "x": 601.3316892725031, + "y": 376.46383185135693 + }, + { + "x": 601.3316892725031, + "y": 413.305953176398 + }, + { + "x": 540.3042154747226, + "y": 413.305953176398 + } + ] + } + ], + "version": "2.2.0" + }, + "067d05dcbc5a778fcb7023bc42399ca7": { + "asset": { + "id": "067d05dcbc5a778fcb7023bc42399ca7", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=57.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=57.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 57.7 + }, + "regions": [ + { + "id": "NSfqF2ti8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 100.00001606188323, + "width": 58.92310804562269, + "left": 280.4110473181258, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 280.4110473181258, + "y": 243.8322529039885 + }, + { + "x": 339.33415536374844, + "y": 243.8322529039885 + }, + { + "x": 339.33415536374844, + "y": 343.8322689658717 + }, + { + "x": 280.4110473181258, + "y": 343.8322689658717 + } + ] + }, + { + "id": "49yl0dlq5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 78.91491985203453, + "left": 435.08429022811345, + "top": 244.88486842105263 + }, + "points": [ + { + "x": 435.08429022811345, + "y": 244.88486842105263 + }, + { + "x": 513.9992100801479, + "y": 244.88486842105263 + }, + { + "x": 513.9992100801479, + "y": 317.51644736842104 + }, + { + "x": 435.08429022811345, + "y": 317.51644736842104 + } + ] + }, + { + "id": "0b2WiaZhM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89470471833882, + "width": 62.0797530055487, + "left": 455.0760538686807, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 455.0760538686807, + "y": 305.93753212376646 + }, + { + "x": 517.1558068742294, + "y": 305.93753212376646 + }, + { + "x": 517.1558068742294, + "y": 383.83223684210526 + }, + { + "x": 455.0760538686807, + "y": 383.83223684210526 + } + ] + }, + { + "id": "6rSDvwWZv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57891524465461, + "width": 79.96715089395808, + "left": 510.8426132860666, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 510.8426132860666, + "y": 334.3585847553454 + }, + { + "x": 590.8097641800247, + "y": 334.3585847553454 + }, + { + "x": 590.8097641800247, + "y": 405.9375 + }, + { + "x": 510.8426132860666, + "y": 405.9375 + } + ] + }, + { + "id": "xgFDXK7mx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15787867495888, + "width": 66.288532675709, + "left": 492.95526356350183, + "top": 439.621726588199 + }, + "points": [ + { + "x": 492.95526356350183, + "y": 439.621726588199 + }, + { + "x": 559.2437962392108, + "y": 439.621726588199 + }, + { + "x": 559.2437962392108, + "y": 522.7796052631579 + }, + { + "x": 492.95526356350183, + "y": 522.7796052631579 + } + ] + }, + { + "id": "bcb8uOTe0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 91.54135519420468, + "left": 458.232650662762, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 458.232650662762, + "y": 391.2006900185033 + }, + { + "x": 549.7740058569667, + "y": 391.2006900185033 + }, + { + "x": 549.7740058569667, + "y": 448.0427952816612 + }, + { + "x": 458.232650662762, + "y": 448.0427952816612 + } + ] + }, + { + "id": "XfNISy-wx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73687422902961, + "width": 95.75013486436498, + "left": 1018.0024660912454, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 1018.0024660912454, + "y": 371.2006578947368 + }, + { + "x": 1113.7526009556104, + "y": 371.2006578947368 + }, + { + "x": 1113.7526009556104, + "y": 485.93753212376646 + }, + { + "x": 1018.0024660912454, + "y": 485.93753212376646 + } + ] + } + ], + "version": "2.2.0" + }, + "c215bf25c1e630a88120422c7cc0158e": { + "asset": { + "id": "c215bf25c1e630a88120422c7cc0158e", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=57.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=57.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 57.55 + }, + "regions": [ + { + "id": "LxR8hLPhz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 94.73684210526316, + "width": 81.019333770037, + "left": 269.8890258939581, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 269.8890258939581, + "y": 254.35855263157896 + }, + { + "x": 350.9083596639951, + "y": 254.35855263157896 + }, + { + "x": 350.9083596639951, + "y": 349.09539473684214 + }, + { + "x": 269.8890258939581, + "y": 349.09539473684214 + } + ] + }, + { + "id": "cVQheeG83", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 100.00001606188323, + "width": 85.22811344019729, + "left": 457.1804677866831, + "top": 411.20067395662005 + }, + "points": [ + { + "x": 457.1804677866831, + "y": 411.20067395662005 + }, + { + "x": 542.4085812268804, + "y": 411.20067395662005 + }, + { + "x": 542.4085812268804, + "y": 511.2006900185033 + }, + { + "x": 457.1804677866831, + "y": 511.2006900185033 + } + ] + }, + { + "id": "3ccVeDt3o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52634791324013, + "width": 59.97533908754624, + "left": 441.39748381627624, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 441.39748381627624, + "y": 311.2006578947368 + }, + { + "x": 501.37282290382245, + "y": 311.2006578947368 + }, + { + "x": 501.37282290382245, + "y": 381.727005807977 + }, + { + "x": 441.39748381627624, + "y": 381.727005807977 + } + ] + }, + { + "id": "XMRJYi2mX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 39.9835272811344, + "left": 444.5540806103576, + "top": 259.621726588199 + }, + "points": [ + { + "x": 444.5540806103576, + "y": 259.621726588199 + }, + { + "x": 484.537607891492, + "y": 259.621726588199 + }, + { + "x": 484.537607891492, + "y": 311.2006578947368 + }, + { + "x": 444.5540806103576, + "y": 311.2006578947368 + } + ] + }, + { + "id": "bs6qIwmoQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 61.027570129469794, + "left": 504.52941969790385, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 504.52941969790385, + "y": 340.67437422902964 + }, + { + "x": 565.5569898273736, + "y": 340.67437422902964 + }, + { + "x": 565.5569898273736, + "y": 398.56909500925167 + }, + { + "x": 504.52941969790385, + "y": 398.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "32980c479890f228dc66a36d03a2c6ee": { + "asset": { + "id": "32980c479890f228dc66a36d03a2c6ee", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=57.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=57.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 57.4 + }, + "regions": [ + { + "id": "cglmIIfrg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 92.6315628854852, + "width": 82.07151664611591, + "left": 952.7661644574599, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 952.7661644574599, + "y": 384.88490054481906 + }, + { + "x": 1034.8376811035757, + "y": 384.88490054481906 + }, + { + "x": 1034.8376811035757, + "y": 477.51646343030427 + }, + { + "x": 952.7661644574599, + "y": 477.51646343030427 + } + ] + }, + { + "id": "0FQQA2D5F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84213738692435, + "width": 44.192355117139336, + "left": 513.9992100801479, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 513.9992100801479, + "y": 323.83223684210526 + }, + { + "x": 558.1915651972873, + "y": 323.83223684210526 + }, + { + "x": 558.1915651972873, + "y": 400.67437422902964 + }, + { + "x": 513.9992100801479, + "y": 400.67437422902964 + } + ] + }, + { + "id": "kiiN_at9H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 46.29672086929717, + "left": 476.1200485511714, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 375.41121633429276 + }, + { + "x": 522.4167694204685, + "y": 375.41121633429276 + }, + { + "x": 522.4167694204685, + "y": 436.46383185135693 + }, + { + "x": 476.1200485511714, + "y": 436.46383185135693 + } + ] + }, + { + "id": "RxxqDO94o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 42.08789303329223, + "left": 480.3288763871763, + "top": 434.35855263157896 + }, + "points": [ + { + "x": 480.3288763871763, + "y": 434.35855263157896 + }, + { + "x": 522.4167694204685, + "y": 434.35855263157896 + }, + { + "x": 522.4167694204685, + "y": 496.46383185135693 + }, + { + "x": 480.3288763871763, + "y": 496.46383185135693 + } + ] + }, + { + "id": "SoNsPNXRj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 43.14022040690506, + "left": 443.501849568434, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 443.501849568434, + "y": 253.30593711451482 + }, + { + "x": 486.6420699753391, + "y": 253.30593711451482 + }, + { + "x": 486.6420699753391, + "y": 326.9901315789474 + }, + { + "x": 443.501849568434, + "y": 326.9901315789474 + } + ] + }, + { + "id": "GvsZoP6lQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.4736681486431, + "width": 87.33252735819975, + "left": 284.6198269882861, + "top": 258.5691110711349 + }, + "points": [ + { + "x": 284.6198269882861, + "y": 258.5691110711349 + }, + { + "x": 371.95235434648583, + "y": 258.5691110711349 + }, + { + "x": 371.95235434648583, + "y": 348.04277921977797 + }, + { + "x": 284.6198269882861, + "y": 348.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "e1c6c7508c76b6c39b943fb8e1654a7c": { + "asset": { + "id": "e1c6c7508c76b6c39b943fb8e1654a7c", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=57.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=57", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 57 + }, + "regions": [ + { + "id": "w3iInaom2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 106.31580553556743, + "width": 56.81874229346486, + "left": 958.0271270036991, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 958.0271270036991, + "y": 395.41120027240953 + }, + { + "x": 1014.845869297164, + "y": 395.41120027240953 + }, + { + "x": 1014.845869297164, + "y": 501.727005807977 + }, + { + "x": 958.0271270036991, + "y": 501.727005807977 + } + ] + }, + { + "id": "2j4Wi5pNu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 72.60172626387177, + "left": 454.02387099260176, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 454.02387099260176, + "y": 396.4638157894737 + }, + { + "x": 526.6255972564735, + "y": 396.4638157894737 + }, + { + "x": 526.6255972564735, + "y": 494.35855263157896 + }, + { + "x": 454.02387099260176, + "y": 494.35855263157896 + } + ] + }, + { + "id": "QO1BoY7dg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 29.46160218865598, + "left": 482.43324213933414, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 482.43324213933414, + "y": 304.88486842105266 + }, + { + "x": 511.89484432799014, + "y": 304.88486842105266 + }, + { + "x": 511.89484432799014, + "y": 371.2006578947368 + }, + { + "x": 482.43324213933414, + "y": 371.2006578947368 + } + ] + }, + { + "id": "o_9QQgr4_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89470471833882, + "width": 37.879161528976574, + "left": 363.5347468403206, + "top": 261.727005807977 + }, + "points": [ + { + "x": 363.5347468403206, + "y": 261.727005807977 + }, + { + "x": 401.4139083692972, + "y": 261.727005807977 + }, + { + "x": 401.4139083692972, + "y": 339.6217105263158 + }, + { + "x": 363.5347468403206, + "y": 339.6217105263158 + } + ] + }, + { + "id": "WwHBb7XkW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 42.08794119913687, + "left": 144.6773851726264, + "top": 379.621726588199 + }, + "points": [ + { + "x": 144.6773851726264, + "y": 379.621726588199 + }, + { + "x": 186.76532637176325, + "y": 379.621726588199 + }, + { + "x": 186.76532637176325, + "y": 456.4638157894737 + }, + { + "x": 144.6773851726264, + "y": 456.4638157894737 + } + ] + }, + { + "id": "otLOLQaBR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 30.513736898890258, + "left": 532.9387908446363, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 341.72698974609375 + }, + { + "x": 563.4525277435265, + "y": 341.72698974609375 + }, + { + "x": 563.4525277435265, + "y": 401.72698974609375 + }, + { + "x": 532.9387908446363, + "y": 401.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "d4530ceab86c371c3e40de67394abea1": { + "asset": { + "id": "d4530ceab86c371c3e40de67394abea1", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56.85 + }, + "regions": [ + { + "id": "rhIEoyvBj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 91.57894736842105, + "width": 70.49736051171394, + "left": 930.6699868988902, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 393.30592105263156 + }, + { + "x": 1001.1673474106042, + "y": 393.30592105263156 + }, + { + "x": 1001.1673474106042, + "y": 484.88486842105266 + }, + { + "x": 930.6699868988902, + "y": 484.88486842105266 + } + ] + }, + { + "id": "uugvbbDZ2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 101.05263157894737, + "width": 37.879161528976574, + "left": 472.96345175709, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 472.96345175709, + "y": 386.9901315789474 + }, + { + "x": 510.8426132860666, + "y": 386.9901315789474 + }, + { + "x": 510.8426132860666, + "y": 488.04276315789474 + }, + { + "x": 472.96345175709, + "y": 488.04276315789474 + } + ] + }, + { + "id": "lazm5BBu_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 91.57894736842105, + "width": 72.60172626387177, + "left": 492.95526356350183, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 492.95526356350183, + "y": 374.35855263157896 + }, + { + "x": 565.5569898273736, + "y": 374.35855263157896 + }, + { + "x": 565.5569898273736, + "y": 465.9375 + }, + { + "x": 492.95526356350183, + "y": 465.9375 + } + ] + }, + { + "id": "ceHnl0kDj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 27.35723643649815, + "left": 494.00739827373616, + "top": 302.7796373869243 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 302.7796373869243 + }, + { + "x": 521.3646347102343, + "y": 302.7796373869243 + }, + { + "x": 521.3646347102343, + "y": 372.2533215974507 + }, + { + "x": 494.00739827373616, + "y": 372.2533215974507 + } + ] + }, + { + "id": "sUbwEkkUR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15787867495888, + "width": 47.348951911220716, + "left": 149.9383477188656, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 149.9383477188656, + "y": 376.46383185135693 + }, + { + "x": 197.28729963008632, + "y": 376.46383185135693 + }, + { + "x": 197.28729963008632, + "y": 459.6217105263158 + }, + { + "x": 149.9383477188656, + "y": 459.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "557fb10847c08c693b006f77c0c5728f": { + "asset": { + "id": "557fb10847c08c693b006f77c0c5728f", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56.7 + }, + "regions": [ + { + "id": "-JXjd749J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 37.879161528976574, + "left": 942.2441430332923, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 942.2441430332923, + "y": 397.5164794921875 + }, + { + "x": 980.1233045622688, + "y": 397.5164794921875 + }, + { + "x": 980.1233045622688, + "y": 495.41121633429276 + }, + { + "x": 942.2441430332923, + "y": 495.41121633429276 + } + ] + }, + { + "id": "pVCpBW5Q8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.4736681486431, + "width": 57.87097333538841, + "left": 463.4936613748459, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 463.4936613748459, + "y": 385.93751606188323 + }, + { + "x": 521.3646347102343, + "y": 385.93751606188323 + }, + { + "x": 521.3646347102343, + "y": 475.4111842105263 + }, + { + "x": 463.4936613748459, + "y": 475.4111842105263 + } + ] + }, + { + "id": "z0BW3pvpS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 42.08789303329223, + "left": 499.2684571516646, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 499.2684571516646, + "y": 366.99014764083057 + }, + { + "x": 541.3563501849568, + "y": 366.99014764083057 + }, + { + "x": 541.3563501849568, + "y": 431.2006578947368 + }, + { + "x": 499.2684571516646, + "y": 431.2006578947368 + } + ] + }, + { + "id": "4UnxlGqgt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.73685816714638, + "width": 48.401182953144264, + "left": 529.7821940505548, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 529.7821940505548, + "y": 333.30592105263156 + }, + { + "x": 578.1833770036991, + "y": 333.30592105263156 + }, + { + "x": 578.1833770036991, + "y": 408.04277921977797 + }, + { + "x": 529.7821940505548, + "y": 408.04277921977797 + } + ] + }, + { + "id": "PqEnw3dbY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 34.722564734895194, + "left": 490.85080147965476, + "top": 297.51646343030427 + }, + "points": [ + { + "x": 490.85080147965476, + "y": 297.51646343030427 + }, + { + "x": 525.57336621455, + "y": 297.51646343030427 + }, + { + "x": 525.57336621455, + "y": 355.4111842105263 + }, + { + "x": 490.85080147965476, + "y": 355.4111842105263 + } + ] + }, + { + "id": "-22gqoko9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 52.60991445745993, + "left": 378.26554793464857, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 378.26554793464857, + "y": 253.30593711451482 + }, + { + "x": 430.8754623921085, + "y": 253.30593711451482 + }, + { + "x": 430.8754623921085, + "y": 330.1480263157895 + }, + { + "x": 378.26554793464857, + "y": 330.1480263157895 + } + ] + }, + { + "id": "p6xHqD5GC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.2105423776727, + "width": 28.40937114673243, + "left": 154.14717555487053, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 154.14717555487053, + "y": 363.8322529039885 + }, + { + "x": 182.55654670160297, + "y": 363.8322529039885 + }, + { + "x": 182.55654670160297, + "y": 448.0427952816612 + }, + { + "x": 154.14717555487053, + "y": 448.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "c3fe560adf381da4c27282fe006be0ff": { + "asset": { + "id": "c3fe560adf381da4c27282fe006be0ff", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56.55 + }, + "regions": [ + { + "id": "9n13LUum0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.78950580797698, + "width": 67.34076371763256, + "left": 923.3045622688039, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 923.3045622688039, + "y": 393.30592105263156 + }, + { + "x": 990.6453259864365, + "y": 393.30592105263156 + }, + { + "x": 990.6453259864365, + "y": 489.09542686060854 + }, + { + "x": 923.3045622688039, + "y": 489.09542686060854 + } + ] + }, + { + "id": "hmxc-rDmc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 36.82697865289766, + "left": 455.0760538686807, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 455.0760538686807, + "y": 368.04276315789474 + }, + { + "x": 491.9030325215783, + "y": 368.04276315789474 + }, + { + "x": 491.9030325215783, + "y": 456.4638157894737 + }, + { + "x": 455.0760538686807, + "y": 456.4638157894737 + } + ] + }, + { + "id": "M4iqUP6pB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 55.76651125154131, + "left": 491.9030325215783, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 491.9030325215783, + "y": 368.04276315789474 + }, + { + "x": 547.6695437731196, + "y": 368.04276315789474 + }, + { + "x": 547.6695437731196, + "y": 456.4638157894737 + }, + { + "x": 491.9030325215783, + "y": 456.4638157894737 + } + ] + }, + { + "id": "kBX9brpRg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 22.096177558569668, + "left": 549.7740058569667, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 323.83223684210526 + }, + { + "x": 571.8701834155364, + "y": 323.83223684210526 + }, + { + "x": 571.8701834155364, + "y": 370.1480423776727 + }, + { + "x": 549.7740058569667, + "y": 370.1480423776727 + } + ] + }, + { + "id": "KNroqcCbc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 29.46160218865598, + "left": 495.05962931565966, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 495.05962931565966, + "y": 305.93753212376646 + }, + { + "x": 524.5212315043157, + "y": 305.93753212376646 + }, + { + "x": 524.5212315043157, + "y": 359.62174265008224 + }, + { + "x": 495.05962931565966, + "y": 359.62174265008224 + } + ] + }, + { + "id": "kyIgz987l", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 42.08794119913687, + "left": 394.0485319050555, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 394.0485319050555, + "y": 249.09542686060857 + }, + { + "x": 436.13647310419236, + "y": 249.09542686060857 + }, + { + "x": 436.13647310419236, + "y": 337.5164794921875 + }, + { + "x": 394.0485319050555, + "y": 337.5164794921875 + } + ] + }, + { + "id": "vNY-056dg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.0526476408306, + "width": 46.2967690351418, + "left": 148.88616484278668, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 148.88616484278668, + "y": 349.09539473684214 + }, + { + "x": 195.1829338779285, + "y": 349.09539473684214 + }, + { + "x": 195.1829338779285, + "y": 430.1480423776727 + }, + { + "x": 148.88616484278668, + "y": 430.1480423776727 + } + ] + } + ], + "version": "2.2.0" + }, + "3ebecac1fc794ba5e50dc2f918a9651a": { + "asset": { + "id": "3ebecac1fc794ba5e50dc2f918a9651a", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56.4 + }, + "regions": [ + { + "id": "KrZeOjOkE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 61.027570129469794, + "left": 930.6699868988902, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 394.3585847553454 + }, + { + "x": 991.69755702836, + "y": 394.3585847553454 + }, + { + "x": 991.69755702836, + "y": 492.2533215974507 + }, + { + "x": 930.6699868988902, + "y": 492.2533215974507 + } + ] + }, + { + "id": "j4Ym6Hmma", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73687422902961, + "width": 76.81050593403207, + "left": 429.8232795160296, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 429.8232795160296, + "y": 355.4111842105263 + }, + { + "x": 506.6337854500617, + "y": 355.4111842105263 + }, + { + "x": 506.6337854500617, + "y": 470.14805843955594 + }, + { + "x": 429.8232795160296, + "y": 470.14805843955594 + } + ] + }, + { + "id": "2ijD90b3B", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.0526476408306, + "width": 38.93139257090012, + "left": 498.21622610974106, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 498.21622610974106, + "y": 357.51646343030427 + }, + { + "x": 537.1476186806412, + "y": 357.51646343030427 + }, + { + "x": 537.1476186806412, + "y": 438.5691110711349 + }, + { + "x": 498.21622610974106, + "y": 438.5691110711349 + } + ] + }, + { + "id": "epbR3jh5E", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 45.24448982737361, + "left": 499.2684571516646, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 499.2684571516646, + "y": 275.41120027240953 + }, + { + "x": 544.5129469790382, + "y": 275.41120027240953 + }, + { + "x": 544.5129469790382, + "y": 340.67437422902964 + }, + { + "x": 499.2684571516646, + "y": 340.67437422902964 + } + ] + }, + { + "id": "tl51FIidN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 41.035758323057955, + "left": 401.4139083692972, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 401.4139083692972, + "y": 236.46384791324013 + }, + { + "x": 442.4496666923551, + "y": 236.46384791324013 + }, + { + "x": 442.4496666923551, + "y": 312.2533215974507 + }, + { + "x": 401.4139083692972, + "y": 312.2533215974507 + } + ] + } + ], + "version": "2.2.0" + }, + "e8ca82e195412e8d728856d94738d2d7": { + "asset": { + "id": "e8ca82e195412e8d728856d94738d2d7", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56.25 + }, + "regions": [ + { + "id": "_Gu1gNo9Z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 115.78944156044408, + "width": 55.76655941738594, + "left": 436.13647310419236, + "top": 353.305953176398 + }, + "points": [ + { + "x": 436.13647310419236, + "y": 353.305953176398 + }, + { + "x": 491.9030325215783, + "y": 353.305953176398 + }, + { + "x": 491.9030325215783, + "y": 469.09539473684214 + }, + { + "x": 436.13647310419236, + "y": 469.09539473684214 + } + ] + }, + { + "id": "0C_jISIgs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 96.84212132504112, + "width": 48.40108662145499, + "left": 492.95526356350183, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 492.95526356350183, + "y": 349.09539473684214 + }, + { + "x": 541.3563501849568, + "y": 349.09539473684214 + }, + { + "x": 541.3563501849568, + "y": 445.93751606188323 + }, + { + "x": 492.95526356350183, + "y": 445.93751606188323 + } + ] + }, + { + "id": "3zBjRAqmM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15792686060855, + "width": 56.81874229346486, + "left": 931.7222179408138, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 931.7222179408138, + "y": 390.1480263157895 + }, + { + "x": 988.5409602342787, + "y": 390.1480263157895 + }, + { + "x": 988.5409602342787, + "y": 473.305953176398 + }, + { + "x": 931.7222179408138, + "y": 473.305953176398 + } + ] + }, + { + "id": "DUOx462xd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 85.26315789473685, + "width": 57.870925169543774, + "left": 401.4139083692972, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 401.4139083692972, + "y": 230.1480584395559 + }, + { + "x": 459.2848335388409, + "y": 230.1480584395559 + }, + { + "x": 459.2848335388409, + "y": 315.41121633429276 + }, + { + "x": 401.4139083692972, + "y": 315.41121633429276 + } + ] + }, + { + "id": "96toXEmbo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 38.93139257090012, + "left": 528.7299630086313, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 528.7299630086313, + "y": 236.46384791324013 + }, + { + "x": 567.6613555795315, + "y": 236.46384791324013 + }, + { + "x": 567.6613555795315, + "y": 298.56907894736844 + }, + { + "x": 528.7299630086313, + "y": 298.56907894736844 + } + ] + }, + { + "id": "jSNlM7qpC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 24.200543310727497, + "left": 508.73824753390875, + "top": 280.6743742290296 + }, + "points": [ + { + "x": 508.73824753390875, + "y": 280.6743742290296 + }, + { + "x": 532.9387908446363, + "y": 280.6743742290296 + }, + { + "x": 532.9387908446363, + "y": 332.25330553556745 + }, + { + "x": 508.73824753390875, + "y": 332.25330553556745 + } + ] + }, + { + "id": "keP7l6Cdq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 31.56596794081381, + "left": 536.0953876387176, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 536.0953876387176, + "y": 310.1480423776727 + }, + { + "x": 567.6613555795315, + "y": 310.1480423776727 + }, + { + "x": 567.6613555795315, + "y": 373.3059371145148 + }, + { + "x": 536.0953876387176, + "y": 373.3059371145148 + } + ] + } + ], + "version": "2.2.0" + }, + "60dd166241f1b5c5d5efe8b29dcb86ff": { + "asset": { + "id": "60dd166241f1b5c5d5efe8b29dcb86ff", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56.15 + }, + "regions": [ + { + "id": "eKFsz99Bt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.05259945518092, + "width": 34.722564734895194, + "left": 538.1997533908755, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 538.1997533908755, + "y": 312.2533215974507 + }, + { + "x": 572.9223181257706, + "y": 312.2533215974507 + }, + { + "x": 572.9223181257706, + "y": 393.30592105263156 + }, + { + "x": 538.1997533908755, + "y": 393.30592105263156 + } + ] + }, + { + "id": "GGii9dyhP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 39.98362361282368, + "left": 494.00739827373616, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 343.8322689658717 + }, + { + "x": 533.9910218865598, + "y": 343.8322689658717 + }, + { + "x": 533.9910218865598, + "y": 417.51646343030427 + }, + { + "x": 494.00739827373616, + "y": 417.51646343030427 + } + ] + }, + { + "id": "AI7VZbMIm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 115.78948974609375, + "width": 66.288532675709, + "left": 440.3452527743527, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 440.3452527743527, + "y": 355.4111842105263 + }, + { + "x": 506.6337854500617, + "y": 355.4111842105263 + }, + { + "x": 506.6337854500617, + "y": 471.20067395662005 + }, + { + "x": 440.3452527743527, + "y": 471.20067395662005 + } + ] + }, + { + "id": "3cY1Q-HpK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 45.244586159062884, + "left": 545.5651780209618, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 230.1480584395559 + }, + { + "x": 590.8097641800247, + "y": 230.1480584395559 + }, + { + "x": 590.8097641800247, + "y": 297.51646343030427 + }, + { + "x": 545.5651780209618, + "y": 297.51646343030427 + } + ] + }, + { + "id": "mA-G9q_g_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 41.035758323057955, + "left": 505.58165073982735, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 505.58165073982735, + "y": 250.1480423776727 + }, + { + "x": 546.6174090628854, + "y": 250.1480423776727 + }, + { + "x": 546.6174090628854, + "y": 320.6743421052632 + }, + { + "x": 505.58165073982735, + "y": 320.6743421052632 + } + ] + }, + { + "id": "xiYaa8m9b", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 92.6315628854852, + "width": 53.662193665228116, + "left": 414.0402955456227, + "top": 217.5164794921875 + }, + "points": [ + { + "x": 414.0402955456227, + "y": 217.5164794921875 + }, + { + "x": 467.7024892108508, + "y": 217.5164794921875 + }, + { + "x": 467.7024892108508, + "y": 310.1480423776727 + }, + { + "x": 414.0402955456227, + "y": 310.1480423776727 + } + ] + }, + { + "id": "JEeYnNKAV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 64.18416692355117, + "left": 945.4007398273736, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 945.4007398273736, + "y": 386.9901315789474 + }, + { + "x": 1009.5849067509248, + "y": 386.9901315789474 + }, + { + "x": 1009.5849067509248, + "y": 506.9901315789474 + }, + { + "x": 945.4007398273736, + "y": 506.9901315789474 + } + ] + }, + { + "id": "tB0bIQvaV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.5789794921875, + "width": 22.096177558569668, + "left": 148.88616484278668, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 148.88616484278668, + "y": 323.83223684210526 + }, + { + "x": 170.98234240135636, + "y": 323.83223684210526 + }, + { + "x": 170.98234240135636, + "y": 435.41121633429276 + }, + { + "x": 148.88616484278668, + "y": 435.41121633429276 + } + ] + } + ], + "version": "2.2.0" + }, + "00438b54643407ff447d9dbeac0576c7": { + "asset": { + "id": "00438b54643407ff447d9dbeac0576c7", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=56.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=56", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 56 + }, + "regions": [ + { + "id": "0wXFmhPu1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 109.47370027240954, + "width": 65.23639796547472, + "left": 945.4007398273736, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 945.4007398273736, + "y": 380.6743421052632 + }, + { + "x": 1010.6371377928483, + "y": 380.6743421052632 + }, + { + "x": 1010.6371377928483, + "y": 490.1480423776727 + }, + { + "x": 945.4007398273736, + "y": 490.1480423776727 + } + ] + }, + { + "id": "1hrG0GhOT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 38.93129623921085, + "left": 565.5569898273736, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 565.5569898273736, + "y": 230.1480584395559 + }, + { + "x": 604.4882860665845, + "y": 230.1480584395559 + }, + { + "x": 604.4882860665845, + "y": 290.14805843955594 + }, + { + "x": 565.5569898273736, + "y": 290.14805843955594 + } + ] + }, + { + "id": "9hLW3E87J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 22.096177558569668, + "left": 533.9910218865598, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 268.0427952816612 + }, + { + "x": 556.0871994451295, + "y": 268.0427952816612 + }, + { + "x": 556.0871994451295, + "y": 312.2533215974507 + }, + { + "x": 533.9910218865598, + "y": 312.2533215974507 + } + ] + }, + { + "id": "8JLprGsju", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 93.68417840254935, + "width": 48.401182953144264, + "left": 435.08429022811345, + "top": 217.5164794921875 + }, + "points": [ + { + "x": 435.08429022811345, + "y": 217.5164794921875 + }, + { + "x": 483.4854731812577, + "y": 217.5164794921875 + }, + { + "x": 483.4854731812577, + "y": 311.2006578947368 + }, + { + "x": 435.08429022811345, + "y": 311.2006578947368 + } + ] + }, + { + "id": "0epsQ9DsY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 53.66214549938348, + "left": 443.501849568434, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 443.501849568434, + "y": 348.04277921977797 + }, + { + "x": 497.1639950678175, + "y": 348.04277921977797 + }, + { + "x": 497.1639950678175, + "y": 455.41120027240953 + }, + { + "x": 443.501849568434, + "y": 455.41120027240953 + } + ] + }, + { + "id": "JOaWM3I5E_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.7894576223273, + "width": 49.45341399506782, + "left": 506.6337854500617, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 344.8848844829359 + }, + { + "x": 556.0871994451295, + "y": 344.8848844829359 + }, + { + "x": 556.0871994451295, + "y": 440.6743421052632 + }, + { + "x": 506.6337854500617, + "y": 440.6743421052632 + } + ] + }, + { + "id": "MoKa13Tv5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 39.98362361282368, + "left": 553.9827373612824, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 553.9827373612824, + "y": 304.88486842105266 + }, + { + "x": 593.966360974106, + "y": 304.88486842105266 + }, + { + "x": 593.966360974106, + "y": 362.7796373869243 + }, + { + "x": 553.9827373612824, + "y": 362.7796373869243 + } + ] + } + ], + "version": "2.2.0" + }, + "0f7d8c93231f621df7dd94fe5a0a4b2b": { + "asset": { + "id": "0f7d8c93231f621df7dd94fe5a0a4b2b", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55.85 + }, + "regions": [ + { + "id": "QCm4w1TKI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 110.52631578947368, + "width": 76.81045776818742, + "left": 944.3486051171393, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 394.3585847553454 + }, + { + "x": 1021.1590628853268, + "y": 394.3585847553454 + }, + { + "x": 1021.1590628853268, + "y": 504.88490054481906 + }, + { + "x": 944.3486051171393, + "y": 504.88490054481906 + } + ] + }, + { + "id": "fiZ1kGL-A", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 82.10526315789474, + "width": 54.714376541307026, + "left": 570.8179523736128, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 224.88488448293586 + }, + { + "x": 625.5323289149198, + "y": 224.88488448293586 + }, + { + "x": 625.5323289149198, + "y": 306.99014764083057 + }, + { + "x": 570.8179523736128, + "y": 306.99014764083057 + } + ] + }, + { + "id": "bxstyqFV5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.4736681486431, + "width": 45.24453799321825, + "left": 451.9194570745993, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 205.93751606188323 + }, + { + "x": 497.1639950678175, + "y": 205.93751606188323 + }, + { + "x": 497.1639950678175, + "y": 295.4111842105263 + }, + { + "x": 451.9194570745993, + "y": 295.4111842105263 + } + ] + }, + { + "id": "xjsnLeiKa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 36.82693048705302, + "left": 537.1476186806412, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 537.1476186806412, + "y": 264.88490054481906 + }, + { + "x": 573.9745491676942, + "y": 264.88490054481906 + }, + { + "x": 573.9745491676942, + "y": 324.88490054481906 + }, + { + "x": 537.1476186806412, + "y": 324.88490054481906 + } + ] + }, + { + "id": "nV1Yh7Pnp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15787867495888, + "width": 42.0879893649815, + "left": 507.6860164919852, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 507.6860164919852, + "y": 335.41120027240953 + }, + { + "x": 549.7740058569667, + "y": 335.41120027240953 + }, + { + "x": 549.7740058569667, + "y": 418.56907894736844 + }, + { + "x": 507.6860164919852, + "y": 418.56907894736844 + } + ] + }, + { + "id": "9glsegHgq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 96.84207313939145, + "width": 66.288532675709, + "left": 446.6584463625154, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 446.6584463625154, + "y": 346.9901637027138 + }, + { + "x": 512.9469790382244, + "y": 346.9901637027138 + }, + { + "x": 512.9469790382244, + "y": 443.83223684210526 + }, + { + "x": 446.6584463625154, + "y": 443.83223684210526 + } + ] + }, + { + "id": "eGy71CS7P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.4736681486431, + "width": 73.65395730579532, + "left": 146.7817509247842, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 146.7817509247842, + "y": 313.3059371145148 + }, + { + "x": 220.43570823057954, + "y": 313.3059371145148 + }, + { + "x": 220.43570823057954, + "y": 402.7796052631579 + }, + { + "x": 146.7817509247842, + "y": 402.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "13e3e077dce16c1cd4af09347e759183": { + "asset": { + "id": "13e3e077dce16c1cd4af09347e759183", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55.7 + }, + "regions": [ + { + "id": "rq6MUXD08", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 94.73684210526316, + "width": 42.08794119913687, + "left": 442.4496666923551, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 442.4496666923551, + "y": 339.6217105263158 + }, + { + "x": 484.537607891492, + "y": 339.6217105263158 + }, + { + "x": 484.537607891492, + "y": 434.35855263157896 + }, + { + "x": 442.4496666923551, + "y": 434.35855263157896 + } + ] + }, + { + "id": "wR_lVxcTz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 92.6315628854852, + "width": 65.23639796547472, + "left": 500.3205918618989, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 500.3205918618989, + "y": 340.67437422902964 + }, + { + "x": 565.5569898273736, + "y": 340.67437422902964 + }, + { + "x": 565.5569898273736, + "y": 433.3059371145148 + }, + { + "x": 500.3205918618989, + "y": 433.3059371145148 + } + ] + }, + { + "id": "GXxlVAzlP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 51.55773158138101, + "left": 451.9194570745993, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 210.14802631578948 + }, + { + "x": 503.4771886559803, + "y": 210.14802631578948 + }, + { + "x": 503.4771886559803, + "y": 298.56907894736844 + }, + { + "x": 451.9194570745993, + "y": 298.56907894736844 + } + ] + }, + { + "id": "S0yZmxRBj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 45.24448982737361, + "left": 578.1833770036991, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 218.56909500925164 + }, + { + "x": 623.4278668310727, + "y": 218.56909500925164 + }, + { + "x": 623.4278668310727, + "y": 291.20067395662005 + }, + { + "x": 578.1833770036991, + "y": 291.20067395662005 + } + ] + }, + { + "id": "XG0n_iSCc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 124.21055843955592, + "width": 66.288532675709, + "left": 945.4007398273736, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 945.4007398273736, + "y": 390.1480263157895 + }, + { + "x": 1011.6892725030826, + "y": 390.1480263157895 + }, + { + "x": 1011.6892725030826, + "y": 514.3585847553454 + }, + { + "x": 945.4007398273736, + "y": 514.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "878a0eadd5f32c857e91d89c29a05a66": { + "asset": { + "id": "878a0eadd5f32c857e91d89c29a05a66", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55.55 + }, + "regions": [ + { + "id": "t9oPpFQPn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 121.05266370271382, + "width": 75.75832305795315, + "left": 935.9309494451295, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 935.9309494451295, + "y": 386.9901315789474 + }, + { + "x": 1011.6892725030826, + "y": 386.9901315789474 + }, + { + "x": 1011.6892725030826, + "y": 508.0427952816612 + }, + { + "x": 935.9309494451295, + "y": 508.0427952816612 + } + ] + }, + { + "id": "MqLf8ohEf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 52.6100107891492, + "left": 588.7053020961775, + "top": 216.4638157894737 + }, + "points": [ + { + "x": 588.7053020961775, + "y": 216.4638157894737 + }, + { + "x": 641.3153128853268, + "y": 216.4638157894737 + }, + { + "x": 641.3153128853268, + "y": 289.0953947368421 + }, + { + "x": 588.7053020961775, + "y": 289.0953947368421 + } + ] + }, + { + "id": "es-eAR8gX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 53.662193665228116, + "left": 458.232650662762, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 458.232650662762, + "y": 212.25330553556745 + }, + { + "x": 511.89484432799014, + "y": 212.25330553556745 + }, + { + "x": 511.89484432799014, + "y": 279.6217105263158 + }, + { + "x": 458.232650662762, + "y": 279.6217105263158 + } + ] + }, + { + "id": "kzntwqCYi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.78950580797698, + "width": 47.348951911220716, + "left": 515.0514411220715, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 515.0514411220715, + "y": 326.9901315789474 + }, + { + "x": 562.4003930332923, + "y": 326.9901315789474 + }, + { + "x": 562.4003930332923, + "y": 422.7796373869243 + }, + { + "x": 515.0514411220715, + "y": 422.7796373869243 + } + ] + }, + { + "id": "fnzSzVLvX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 123.15789473684211, + "width": 66.288532675709, + "left": 437.1886559802713, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 437.1886559802713, + "y": 328.0427952816612 + }, + { + "x": 503.4771886559803, + "y": 328.0427952816612 + }, + { + "x": 503.4771886559803, + "y": 451.2006900185033 + }, + { + "x": 437.1886559802713, + "y": 451.2006900185033 + } + ] + }, + { + "id": "PzSb_4_OD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 82.10526315789474, + "width": 45.24448982737361, + "left": 565.5569898273736, + "top": 299.62174265008224 + }, + "points": [ + { + "x": 565.5569898273736, + "y": 299.62174265008224 + }, + { + "x": 610.8014796547473, + "y": 299.62174265008224 + }, + { + "x": 610.8014796547473, + "y": 381.727005807977 + }, + { + "x": 565.5569898273736, + "y": 381.727005807977 + } + ] + }, + { + "id": "1MOPqplCx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73682604337993, + "width": 37.879161528976574, + "left": 149.9383477188656, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 149.9383477188656, + "y": 283.8322689658717 + }, + { + "x": 187.81750924784217, + "y": 283.8322689658717 + }, + { + "x": 187.81750924784217, + "y": 398.56909500925167 + }, + { + "x": 149.9383477188656, + "y": 398.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "35eebf271256e242c8b01959090f8992": { + "asset": { + "id": "35eebf271256e242c8b01959090f8992", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55.4 + }, + "regions": [ + { + "id": "7koa_eemv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.57893130653783, + "width": 73.65395730579532, + "left": 958.0271270036991, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 958.0271270036991, + "y": 406.9901637027138 + }, + { + "x": 1031.6810843094945, + "y": 406.9901637027138 + }, + { + "x": 1031.6810843094945, + "y": 518.5690950092517 + }, + { + "x": 958.0271270036991, + "y": 518.5690950092517 + } + ] + }, + { + "id": "QxzzNm2ns", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 105.26314183285362, + "width": 66.288532675709, + "left": 519.2601726263872, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 519.2601726263872, + "y": 322.77962132504115 + }, + { + "x": 585.5487053020962, + "y": 322.77962132504115 + }, + { + "x": 585.5487053020962, + "y": 428.04276315789474 + }, + { + "x": 519.2601726263872, + "y": 428.04276315789474 + } + ] + }, + { + "id": "JmLf_C6pe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.57893130653783, + "width": 48.401182953144264, + "left": 459.2848335388409, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 459.2848335388409, + "y": 332.25330553556745 + }, + { + "x": 507.6860164919852, + "y": 332.25330553556745 + }, + { + "x": 507.6860164919852, + "y": 443.83223684210526 + }, + { + "x": 459.2848335388409, + "y": 443.83223684210526 + } + ] + }, + { + "id": "Y1dSrSSfJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 99.99996787623355, + "width": 45.244586159062884, + "left": 572.9223181257706, + "top": 261.727005807977 + }, + "points": [ + { + "x": 572.9223181257706, + "y": 261.727005807977 + }, + { + "x": 618.1669042848335, + "y": 261.727005807977 + }, + { + "x": 618.1669042848335, + "y": 361.7269736842105 + }, + { + "x": 572.9223181257706, + "y": 361.7269736842105 + } + ] + }, + { + "id": "G96KIBfVY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 106.31580553556743, + "width": 55.76660758323058, + "left": 620.2712700369914, + "top": 213.3059210526316 + }, + "points": [ + { + "x": 620.2712700369914, + "y": 213.3059210526316 + }, + { + "x": 676.0378776202219, + "y": 213.3059210526316 + }, + { + "x": 676.0378776202219, + "y": 319.621726588199 + }, + { + "x": 620.2712700369914, + "y": 319.621726588199 + } + ] + }, + { + "id": "0GHLTG3-m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 98.94740054481908, + "width": 57.870877003699135, + "left": 486.6420699753391, + "top": 197.51644736842107 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 197.51644736842107 + }, + { + "x": 544.5129469790382, + "y": 197.51644736842107 + }, + { + "x": 544.5129469790382, + "y": 296.46384791324016 + }, + { + "x": 486.6420699753391, + "y": 296.46384791324016 + } + ] + }, + { + "id": "NiS98lb0l", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 90.52633185135691, + "width": 42.08794119913687, + "left": 154.14717555487053, + "top": 294.3585686934622 + }, + "points": [ + { + "x": 154.14717555487053, + "y": 294.3585686934622 + }, + { + "x": 196.2351167540074, + "y": 294.3585686934622 + }, + { + "x": 196.2351167540074, + "y": 384.88490054481906 + }, + { + "x": 154.14717555487053, + "y": 384.88490054481906 + } + ] + } + ], + "version": "2.2.0" + }, + "93a8d9cea96d230f5126c20077e28a8c": { + "asset": { + "id": "93a8d9cea96d230f5126c20077e28a8c", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55.3 + }, + "regions": [ + { + "id": "sD1nbm9uA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 123.15789473684211, + "width": 42.08794119913687, + "left": 154.14717555487053, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 154.14717555487053, + "y": 281.72698974609375 + }, + { + "x": 196.2351167540074, + "y": 281.72698974609375 + }, + { + "x": 196.2351167540074, + "y": 404.8848844829359 + }, + { + "x": 154.14717555487053, + "y": 404.8848844829359 + } + ] + }, + { + "id": "wBpGNTpne", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 104.21055040861431, + "width": 53.66214549938348, + "left": 503.4771886559803, + "top": 198.56908697831003 + }, + "points": [ + { + "x": 503.4771886559803, + "y": 198.56908697831003 + }, + { + "x": 557.1393341553637, + "y": 198.56908697831003 + }, + { + "x": 557.1393341553637, + "y": 302.7796373869243 + }, + { + "x": 503.4771886559803, + "y": 302.7796373869243 + } + ] + }, + { + "id": "LJSzVA7Bk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 104.21052631578948, + "width": 35.77479577681874, + "left": 637.1064850493218, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 210.14802631578948 + }, + { + "x": 672.8812808261406, + "y": 210.14802631578948 + }, + { + "x": 672.8812808261406, + "y": 314.35855263157896 + }, + { + "x": 637.1064850493218, + "y": 314.35855263157896 + } + ] + }, + { + "id": "F4bJr-iQv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 52.60991445745993, + "left": 580.2877427558569, + "top": 269.0954107987253 + }, + "points": [ + { + "x": 580.2877427558569, + "y": 269.0954107987253 + }, + { + "x": 632.8976572133168, + "y": 269.0954107987253 + }, + { + "x": 632.8976572133168, + "y": 366.99014764083057 + }, + { + "x": 580.2877427558569, + "y": 366.99014764083057 + } + ] + }, + { + "id": "X5u-r9MF5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 85.26315789473685, + "width": 39.98362361282368, + "left": 535.0431565967941, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 328.0427952816612 + }, + { + "x": 575.0267802096178, + "y": 328.0427952816612 + }, + { + "x": 575.0267802096178, + "y": 413.305953176398 + }, + { + "x": 535.0431565967941, + "y": 413.305953176398 + } + ] + }, + { + "id": "dnHWM1QaU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 122.10527921977796, + "width": 62.07980117139334, + "left": 462.4414303329223, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 462.4414303329223, + "y": 338.56909500925167 + }, + { + "x": 524.5212315043157, + "y": 338.56909500925167 + }, + { + "x": 524.5212315043157, + "y": 460.67437422902964 + }, + { + "x": 462.4414303329223, + "y": 460.67437422902964 + } + ] + }, + { + "id": "c4t2Z7gIJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.57893130653783, + "width": 88.38471023427867, + "left": 951.7139334155364, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 951.7139334155364, + "y": 395.41120027240953 + }, + { + "x": 1040.0986436498151, + "y": 395.41120027240953 + }, + { + "x": 1040.0986436498151, + "y": 506.9901315789474 + }, + { + "x": 951.7139334155364, + "y": 506.9901315789474 + } + ] + } + ], + "version": "2.2.0" + }, + "3ec308afe270aebda9167b56e1510575": { + "asset": { + "id": "3ec308afe270aebda9167b56e1510575", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55.15 + }, + "regions": [ + { + "id": "LxYdnxbS0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 138.94736842105263, + "width": 64.18416692355117, + "left": 974.8623420160296, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 974.8623420160296, + "y": 389.0954107987253 + }, + { + "x": 1039.0465089395807, + "y": 389.0954107987253 + }, + { + "x": 1039.0465089395807, + "y": 528.0427792197779 + }, + { + "x": 974.8623420160296, + "y": 528.0427792197779 + } + ] + }, + { + "id": "uE7yU42f_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 94.736866198088, + "width": 44.192355117139336, + "left": 645.5240443896424, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 645.5240443896424, + "y": 195.41119224146794 + }, + { + "x": 689.7163995067817, + "y": 195.41119224146794 + }, + { + "x": 689.7163995067817, + "y": 290.14805843955594 + }, + { + "x": 645.5240443896424, + "y": 290.14805843955594 + } + ] + }, + { + "id": "Cp_yqJXGU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 101.05263157894737, + "width": 43.14012407521578, + "left": 599.2273235203453, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 252.25332159745065 + }, + { + "x": 642.3674475955611, + "y": 252.25332159745065 + }, + { + "x": 642.3674475955611, + "y": 353.305953176398 + }, + { + "x": 599.2273235203453, + "y": 353.305953176398 + } + ] + }, + { + "id": "wWH8pu6Lg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 73.65386097410604, + "left": 524.5212315043157, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 524.5212315043157, + "y": 318.5691110711349 + }, + { + "x": 598.1750924784217, + "y": 318.5691110711349 + }, + { + "x": 598.1750924784217, + "y": 425.93753212376646 + }, + { + "x": 524.5212315043157, + "y": 425.93753212376646 + } + ] + }, + { + "id": "vxFfz15YF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 108.42103656969573, + "width": 57.870925169543774, + "left": 455.0760538686807, + "top": 321.727005807977 + }, + "points": [ + { + "x": 455.0760538686807, + "y": 321.727005807977 + }, + { + "x": 512.9469790382244, + "y": 321.727005807977 + }, + { + "x": 512.9469790382244, + "y": 430.1480423776727 + }, + { + "x": 455.0760538686807, + "y": 430.1480423776727 + } + ] + }, + { + "id": "H5-7MINwv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 55.76655941738594, + "left": 148.88616484278668, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 148.88616484278668, + "y": 276.4638157894737 + }, + { + "x": 204.65272426017262, + "y": 276.4638157894737 + }, + { + "x": 204.65272426017262, + "y": 383.83223684210526 + }, + { + "x": 148.88616484278668, + "y": 383.83223684210526 + } + ] + }, + { + "id": "JKX6JCEyj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 94.73684210526316, + "width": 31.56596794081381, + "left": 533.9910218865598, + "top": 196.4638318513569 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 196.4638318513569 + }, + { + "x": 565.5569898273736, + "y": 196.4638318513569 + }, + { + "x": 565.5569898273736, + "y": 291.20067395662005 + }, + { + "x": 533.9910218865598, + "y": 291.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "29b36c7cab135fc76933345930eb304c": { + "asset": { + "id": "29b36c7cab135fc76933345930eb304c", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 55 + }, + "regions": [ + { + "id": "SorBvV0oJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 105.26314183285362, + "width": 39.9835272811344, + "left": 157.30377234895192, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 157.30377234895192, + "y": 268.0427952816612 + }, + { + "x": 197.28729963008632, + "y": 268.0427952816612 + }, + { + "x": 197.28729963008632, + "y": 373.3059371145148 + }, + { + "x": 157.30377234895192, + "y": 373.3059371145148 + } + ] + }, + { + "id": "jVvhimwCD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 68.39294659371147, + "left": 458.232650662762, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 458.232650662762, + "y": 306.99014764083057 + }, + { + "x": 526.6255972564735, + "y": 306.99014764083057 + }, + { + "x": 526.6255972564735, + "y": 433.3059371145148 + }, + { + "x": 458.232650662762, + "y": 433.3059371145148 + } + ] + }, + { + "id": "zZi7WRjD8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 105.26314183285362, + "width": 49.45331766337855, + "left": 549.7740058569667, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 313.3059371145148 + }, + { + "x": 599.2273235203453, + "y": 313.3059371145148 + }, + { + "x": 599.2273235203453, + "y": 418.56907894736844 + }, + { + "x": 549.7740058569667, + "y": 418.56907894736844 + } + ] + }, + { + "id": "79Cp7VQg9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 43.14022040690506, + "left": 601.3316892725031, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 601.3316892725031, + "y": 268.0427952816612 + }, + { + "x": 644.4719096794081, + "y": 268.0427952816612 + }, + { + "x": 644.4719096794081, + "y": 388.0427952816612 + }, + { + "x": 601.3316892725031, + "y": 388.0427952816612 + } + ] + }, + { + "id": "F9njxQxrL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 44.192355117139336, + "left": 659.2026626078915, + "top": 202.77962132504112 + }, + "points": [ + { + "x": 659.2026626078915, + "y": 202.77962132504112 + }, + { + "x": 703.3950177250308, + "y": 202.77962132504112 + }, + { + "x": 703.3950177250308, + "y": 300.6743581671464 + }, + { + "x": 659.2026626078915, + "y": 300.6743581671464 + } + ] + }, + { + "id": "fqHTNWfWn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31579750462582, + "width": 38.93139257090012, + "left": 532.9387908446363, + "top": 185.93750803094161 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 185.93750803094161 + }, + { + "x": 571.8701834155364, + "y": 185.93750803094161 + }, + { + "x": 571.8701834155364, + "y": 272.25330553556745 + }, + { + "x": 532.9387908446363, + "y": 272.25330553556745 + } + ] + }, + { + "id": "mvdx0n64f", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 118.94738448293586, + "width": 54.714280209617755, + "left": 982.2277666461159, + "top": 382.77962132504115 + }, + "points": [ + { + "x": 982.2277666461159, + "y": 382.77962132504115 + }, + { + "x": 1036.9420468557337, + "y": 382.77962132504115 + }, + { + "x": 1036.9420468557337, + "y": 501.727005807977 + }, + { + "x": 982.2277666461159, + "y": 501.727005807977 + } + ] + } + ], + "version": "2.2.0" + }, + "2f939a412e2234a14c01a6223e5ecba2": { + "asset": { + "id": "2f939a412e2234a14c01a6223e5ecba2", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=54.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=54.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 54.85 + }, + "regions": [ + { + "id": "3MHd78ZMk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 27.357140104808877, + "left": 605.540517108508, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 605.540517108508, + "y": 265.93751606188323 + }, + { + "x": 632.8976572133168, + "y": 265.93751606188323 + }, + { + "x": 632.8976572133168, + "y": 331.2006900185033 + }, + { + "x": 605.540517108508, + "y": 331.2006900185033 + } + ] + }, + { + "id": "YAYwYLQQW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.4736681486431, + "width": 39.9835272811344, + "left": 666.5680872379778, + "top": 193.30593711451482 + }, + "points": [ + { + "x": 666.5680872379778, + "y": 193.30593711451482 + }, + { + "x": 706.5516145191123, + "y": 193.30593711451482 + }, + { + "x": 706.5516145191123, + "y": 282.7796052631579 + }, + { + "x": 666.5680872379778, + "y": 282.7796052631579 + } + ] + }, + { + "id": "kBWlyuG5S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 87.3684371145148, + "width": 42.0879893649815, + "left": 545.5651780209618, + "top": 174.35856869346216 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 174.35856869346216 + }, + { + "x": 587.6531673859433, + "y": 174.35856869346216 + }, + { + "x": 587.6531673859433, + "y": 261.727005807977 + }, + { + "x": 545.5651780209618, + "y": 261.727005807977 + } + ] + }, + { + "id": "qbAjeYftc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 121.05261551706414, + "width": 50.5055487053021, + "left": 462.4414303329223, + "top": 296.46384791324016 + }, + "points": [ + { + "x": 462.4414303329223, + "y": 296.46384791324016 + }, + { + "x": 512.9469790382244, + "y": 296.46384791324016 + }, + { + "x": 512.9469790382244, + "y": 417.51646343030427 + }, + { + "x": 462.4414303329223, + "y": 417.51646343030427 + } + ] + }, + { + "id": "4ZOpenLmR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 117.8947689658717, + "width": 61.027473797780516, + "left": 543.4608122688039, + "top": 308.04276315789474 + }, + "points": [ + { + "x": 543.4608122688039, + "y": 308.04276315789474 + }, + { + "x": 604.4882860665845, + "y": 308.04276315789474 + }, + { + "x": 604.4882860665845, + "y": 425.93753212376646 + }, + { + "x": 543.4608122688039, + "y": 425.93753212376646 + } + ] + }, + { + "id": "onMceHooU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 115.78944156044408, + "width": 44.192355117139336, + "left": 152.04276163686808, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 152.04276163686808, + "y": 255.41121633429276 + }, + { + "x": 196.2351167540074, + "y": 255.41121633429276 + }, + { + "x": 196.2351167540074, + "y": 371.2006578947368 + }, + { + "x": 152.04276163686808, + "y": 371.2006578947368 + } + ] + }, + { + "id": "iKE91vb57", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 129.47368421052633, + "width": 64.18416692355117, + "left": 978.018938810111, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 978.018938810111, + "y": 374.35855263157896 + }, + { + "x": 1042.2031057336621, + "y": 374.35855263157896 + }, + { + "x": 1042.2031057336621, + "y": 503.83223684210526 + }, + { + "x": 978.018938810111, + "y": 503.83223684210526 + } + ] + } + ], + "version": "2.2.0" + }, + "bba82db089a233b53dcc71fcc2dfe8b4": { + "asset": { + "id": "bba82db089a233b53dcc71fcc2dfe8b4", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=54.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=54.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 54.7 + }, + "regions": [ + { + "id": "6vN46J_1R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 130.52634791324013, + "width": 72.6017744297164, + "left": 442.4496666923551, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 442.4496666923551, + "y": 292.2532894736842 + }, + { + "x": 515.0514411220715, + "y": 292.2532894736842 + }, + { + "x": 515.0514411220715, + "y": 422.7796373869243 + }, + { + "x": 442.4496666923551, + "y": 422.7796373869243 + } + ] + }, + { + "id": "wnM7aeWAt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 103.15791079872533, + "width": 42.0879893649815, + "left": 548.7217748150432, + "top": 301.7269736842105 + }, + "points": [ + { + "x": 548.7217748150432, + "y": 301.7269736842105 + }, + { + "x": 590.8097641800247, + "y": 301.7269736842105 + }, + { + "x": 590.8097641800247, + "y": 404.8848844829359 + }, + { + "x": 548.7217748150432, + "y": 404.8848844829359 + } + ] + }, + { + "id": "CeEm1rdg1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 98.94735235916941, + "width": 49.45331766337855, + "left": 147.83398196670777, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 147.83398196670777, + "y": 255.41121633429276 + }, + { + "x": 197.28729963008632, + "y": 255.41121633429276 + }, + { + "x": 197.28729963008632, + "y": 354.3585686934622 + }, + { + "x": 147.83398196670777, + "y": 354.3585686934622 + } + ] + }, + { + "id": "eRF14t0WI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26317395662007, + "width": 56.81874229346486, + "left": 979.0711698520346, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 979.0711698520346, + "y": 371.2006578947368 + }, + { + "x": 1035.8899121454995, + "y": 371.2006578947368 + }, + { + "x": 1035.8899121454995, + "y": 496.46383185135693 + }, + { + "x": 979.0711698520346, + "y": 496.46383185135693 + } + ] + }, + { + "id": "Y9ZEW9gcDY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 0, + "width": 0, + "left": 708.6559802712701, + "top": 274.3585847553454 + }, + "points": [ + { + "x": 708.6559802712701, + "y": 274.3585847553454 + }, + { + "x": 708.6559802712701, + "y": 274.3585847553454 + }, + { + "x": 708.6559802712701, + "y": 274.3585847553454 + }, + { + "x": 708.6559802712701, + "y": 274.3585847553454 + } + ] + }, + { + "id": "c0e3unQwyw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 42.08789303329223, + "left": 609.7493449445129, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 609.7493449445129, + "y": 265.93751606188323 + }, + { + "x": 651.8372379778052, + "y": 265.93751606188323 + }, + { + "x": 651.8372379778052, + "y": 325.93751606188323 + }, + { + "x": 609.7493449445129, + "y": 325.93751606188323 + } + ] + }, + { + "id": "qWqqJJHonA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 0, + "width": 0, + "left": 644.4719096794081, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 644.4719096794081, + "y": 355.4111842105263 + }, + { + "x": 644.4719096794081, + "y": 355.4111842105263 + }, + { + "x": 644.4719096794081, + "y": 355.4111842105263 + }, + { + "x": 644.4719096794081, + "y": 355.4111842105263 + } + ] + }, + { + "id": "d3Y92CcXY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 85.26315789473685, + "width": 34.722564734895194, + "left": 679.1944744143034, + "top": 190.1480423776727 + }, + "points": [ + { + "x": 679.1944744143034, + "y": 190.1480423776727 + }, + { + "x": 713.9170391491986, + "y": 190.1480423776727 + }, + { + "x": 713.9170391491986, + "y": 275.41120027240953 + }, + { + "x": 679.1944744143034, + "y": 275.41120027240953 + } + ] + }, + { + "id": "emhHUgQQi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 32.61819898273736, + "left": 630.793291461159, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 630.793291461159, + "y": 230.1480584395559 + }, + { + "x": 663.4114904438965, + "y": 230.1480584395559 + }, + { + "x": 663.4114904438965, + "y": 290.14805843955594 + }, + { + "x": 630.793291461159, + "y": 290.14805843955594 + } + ] + }, + { + "id": "YwKC29NNR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 80.00000803094161, + "width": 37.879161528976574, + "left": 562.4003930332923, + "top": 176.46382382041529 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 176.46382382041529 + }, + { + "x": 600.2795545622688, + "y": 176.46382382041529 + }, + { + "x": 600.2795545622688, + "y": 256.46383185135693 + }, + { + "x": 562.4003930332923, + "y": 256.46383185135693 + } + ] + } + ], + "version": "2.2.0" + }, + "246b8fc41e8274f630067783e10421a1": { + "asset": { + "id": "246b8fc41e8274f630067783e10421a1", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=54.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=54.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 54.55 + }, + "regions": [ + { + "id": "Il5YLJNv4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.78948171515214, + "width": 52.6100107891492, + "left": 686.5598027127004, + "top": 185.93750803094161 + }, + "points": [ + { + "x": 686.5598027127004, + "y": 185.93750803094161 + }, + { + "x": 739.1698135018496, + "y": 185.93750803094161 + }, + { + "x": 739.1698135018496, + "y": 281.72698974609375 + }, + { + "x": 686.5598027127004, + "y": 281.72698974609375 + } + ] + }, + { + "id": "-8_pxC2XD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 69.44512946979039, + "left": 967.4969173859433, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 967.4969173859433, + "y": 368.04276315789474 + }, + { + "x": 1036.9420468557337, + "y": 368.04276315789474 + }, + { + "x": 1036.9420468557337, + "y": 500.6743421052632 + }, + { + "x": 967.4969173859433, + "y": 500.6743421052632 + } + ] + }, + { + "id": "Q0fP-25Un", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52634791324013, + "width": 46.29672086929717, + "left": 627.6366946670777, + "top": 216.4638157894737 + }, + "points": [ + { + "x": 627.6366946670777, + "y": 216.4638157894737 + }, + { + "x": 673.9334155363748, + "y": 216.4638157894737 + }, + { + "x": 673.9334155363748, + "y": 286.9901637027138 + }, + { + "x": 627.6366946670777, + "y": 286.9901637027138 + } + ] + }, + { + "id": "Yh9ble-un", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 31.56596794081381, + "left": 618.1669042848335, + "top": 263.83223684210526 + }, + "points": [ + { + "x": 618.1669042848335, + "y": 263.83223684210526 + }, + { + "x": 649.7328722256474, + "y": 263.83223684210526 + }, + { + "x": 649.7328722256474, + "y": 341.72698974609375 + }, + { + "x": 618.1669042848335, + "y": 341.72698974609375 + } + ] + }, + { + "id": "xkmKxQx9O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 110.52631578947368, + "width": 83.12374768803946, + "left": 545.5651780209618, + "top": 297.51646343030427 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 297.51646343030427 + }, + { + "x": 628.6889257090013, + "y": 297.51646343030427 + }, + { + "x": 628.6889257090013, + "y": 408.04277921977797 + }, + { + "x": 545.5651780209618, + "y": 408.04277921977797 + } + ] + }, + { + "id": "MuccJPJ2S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73687422902961, + "width": 37.879161528976574, + "left": 460.3370645807645, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 460.3370645807645, + "y": 295.4111842105263 + }, + { + "x": 498.21622610974106, + "y": 295.4111842105263 + }, + { + "x": 498.21622610974106, + "y": 410.14805843955594 + }, + { + "x": 460.3370645807645, + "y": 410.14805843955594 + } + ] + }, + { + "id": "fhAuAK_jX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.47371633429276, + "width": 44.192355117139336, + "left": 150.99057876078916, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 150.99057876078916, + "y": 238.5690789473684 + }, + { + "x": 195.1829338779285, + "y": 238.5690789473684 + }, + { + "x": 195.1829338779285, + "y": 328.0427952816612 + }, + { + "x": 150.99057876078916, + "y": 328.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "7de2b5093638271ad4a4a749b345912a": { + "asset": { + "id": "7de2b5093638271ad4a4a749b345912a", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=54.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=54.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 54.4 + }, + "regions": [ + { + "id": "slHmVj-pP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.57893130653783, + "width": 49.45331766337855, + "left": 157.30377234895192, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 157.30377234895192, + "y": 242.77963738692435 + }, + { + "x": 206.75709001233045, + "y": 242.77963738692435 + }, + { + "x": 206.75709001233045, + "y": 354.3585686934622 + }, + { + "x": 157.30377234895192, + "y": 354.3585686934622 + } + ] + }, + { + "id": "FrE66Eb9L", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 79.96710272811345, + "left": 442.4496666923551, + "top": 285.9375 + }, + "points": [ + { + "x": 442.4496666923551, + "y": 285.9375 + }, + { + "x": 522.4167694204685, + "y": 285.9375 + }, + { + "x": 522.4167694204685, + "y": 420.6743581671464 + }, + { + "x": 442.4496666923551, + "y": 420.6743581671464 + } + ] + }, + { + "id": "9uaeOr1QD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 61.027570129469794, + "left": 564.5047587854501, + "top": 291.20067395662005 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 291.20067395662005 + }, + { + "x": 625.5323289149198, + "y": 291.20067395662005 + }, + { + "x": 625.5323289149198, + "y": 411.20067395662005 + }, + { + "x": 564.5047587854501, + "y": 411.20067395662005 + } + ] + }, + { + "id": "l85z3foci", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84213738692435, + "width": 79.9670545622688, + "left": 966.444782675709, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 966.444782675709, + "y": 377.51644736842104 + }, + { + "x": 1046.4118372379778, + "y": 377.51644736842104 + }, + { + "x": 1046.4118372379778, + "y": 514.3585847553454 + }, + { + "x": 966.444782675709, + "y": 514.3585847553454 + } + ] + }, + { + "id": "-6qmUuJ0G", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 93.68422658819901, + "width": 45.24448982737361, + "left": 641.3153128853268, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 641.3153128853268, + "y": 234.35856869346216 + }, + { + "x": 686.5598027127004, + "y": 234.35856869346216 + }, + { + "x": 686.5598027127004, + "y": 328.0427952816612 + }, + { + "x": 641.3153128853268, + "y": 328.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "ed358aabdc4ad0d8e2d426f0f7f58a33": { + "asset": { + "id": "ed358aabdc4ad0d8e2d426f0f7f58a33", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=54.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=54.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 54.25 + }, + "regions": [ + { + "id": "ZgsoOBUlV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 131.57896343030427, + "width": 65.23630163378544, + "left": 971.7057452219482, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 971.7057452219482, + "y": 368.04276315789474 + }, + { + "x": 1036.9420468557337, + "y": 368.04276315789474 + }, + { + "x": 1036.9420468557337, + "y": 499.621726588199 + }, + { + "x": 971.7057452219482, + "y": 499.621726588199 + } + ] + }, + { + "id": "9UwsLYg7R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 123.15791882966694, + "width": 53.66214549938348, + "left": 710.7604423551171, + "top": 176.46382382041529 + }, + "points": [ + { + "x": 710.7604423551171, + "y": 176.46382382041529 + }, + { + "x": 764.4225878545006, + "y": 176.46382382041529 + }, + { + "x": 764.4225878545006, + "y": 299.62174265008224 + }, + { + "x": 710.7604423551171, + "y": 299.62174265008224 + } + ] + }, + { + "id": "loEFdjioC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.7894576223273, + "width": 43.14012407521578, + "left": 589.7575331381012, + "top": 158.56909500925164 + }, + "points": [ + { + "x": 589.7575331381012, + "y": 158.56909500925164 + }, + { + "x": 632.8976572133168, + "y": 158.56909500925164 + }, + { + "x": 632.8976572133168, + "y": 254.35855263157896 + }, + { + "x": 589.7575331381012, + "y": 254.35855263157896 + } + ] + }, + { + "id": "e4w1XYDJa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 94.73684210526316, + "width": 43.14022040690506, + "left": 632.8976572133168, + "top": 256.46383185135693 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 256.46383185135693 + }, + { + "x": 676.0378776202219, + "y": 256.46383185135693 + }, + { + "x": 676.0378776202219, + "y": 351.20067395662005 + }, + { + "x": 632.8976572133168, + "y": 351.20067395662005 + } + ] + }, + { + "id": "Nursjs1Z5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 137.8947529039885, + "width": 86.28034448212084, + "left": 545.5651780209618, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 281.72698974609375 + }, + { + "x": 631.8455225030826, + "y": 281.72698974609375 + }, + { + "x": 631.8455225030826, + "y": 419.62174265008224 + }, + { + "x": 545.5651780209618, + "y": 419.62174265008224 + } + ] + }, + { + "id": "eo_FLd6-P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 128.42106869346216, + "width": 50.5055487053021, + "left": 457.1804677866831, + "top": 284.88488448293583 + }, + "points": [ + { + "x": 457.1804677866831, + "y": 284.88488448293583 + }, + { + "x": 507.6860164919852, + "y": 284.88488448293583 + }, + { + "x": 507.6860164919852, + "y": 413.305953176398 + }, + { + "x": 457.1804677866831, + "y": 413.305953176398 + } + ] + }, + { + "id": "4wDpTf56B", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 124.21055843955592, + "width": 47.348951911220716, + "left": 155.19935843094945, + "top": 222.7796052631579 + }, + "points": [ + { + "x": 155.19935843094945, + "y": 222.7796052631579 + }, + { + "x": 202.54831034217017, + "y": 222.7796052631579 + }, + { + "x": 202.54831034217017, + "y": 346.9901637027138 + }, + { + "x": 155.19935843094945, + "y": 346.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "f818659bf5252f8ec810f0b9007a4942": { + "asset": { + "id": "f818659bf5252f8ec810f0b9007a4942", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=54.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=54.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 54.1 + }, + "regions": [ + { + "id": "DjPe3opPP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15792686060854, + "width": 62.07970483970407, + "left": 969.6013794697903, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 969.6013794697903, + "y": 358.56907894736844 + }, + { + "x": 1031.6810843094945, + "y": 358.56907894736844 + }, + { + "x": 1031.6810843094945, + "y": 501.727005807977 + }, + { + "x": 969.6013794697903, + "y": 501.727005807977 + } + ] + }, + { + "id": "7iXT1tv2m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.7894576223273, + "width": 37.879161528976574, + "left": 723.3868295314427, + "top": 183.8322529039885 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 183.8322529039885 + }, + { + "x": 761.2659910604192, + "y": 183.8322529039885 + }, + { + "x": 761.2659910604192, + "y": 279.6217105263158 + }, + { + "x": 723.3868295314427, + "y": 279.6217105263158 + } + ] + }, + { + "id": "R0Bf3rsQr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 47.348951911220716, + "left": 599.2273235203453, + "top": 161.72698974609375 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 161.72698974609375 + }, + { + "x": 646.5762754315659, + "y": 161.72698974609375 + }, + { + "x": 646.5762754315659, + "y": 259.621726588199 + }, + { + "x": 599.2273235203453, + "y": 259.621726588199 + } + ] + }, + { + "id": "_SanePOQA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 112.63159500925164, + "width": 51.557779747225645, + "left": 665.5158561960543, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 665.5158561960543, + "y": 224.88488448293586 + }, + { + "x": 717.0736359432799, + "y": 224.88488448293586 + }, + { + "x": 717.0736359432799, + "y": 337.5164794921875 + }, + { + "x": 665.5158561960543, + "y": 337.5164794921875 + } + ] + }, + { + "id": "YxBfc05Vt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 101.05263157894737, + "width": 43.14022040690506, + "left": 623.4278668310727, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 623.4278668310727, + "y": 249.09542686060857 + }, + { + "x": 666.5680872379778, + "y": 249.09542686060857 + }, + { + "x": 666.5680872379778, + "y": 350.14805843955594 + }, + { + "x": 623.4278668310727, + "y": 350.14805843955594 + } + ] + }, + { + "id": "B6Jkcyqc8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26317395662007, + "width": 48.40108662145499, + "left": 562.4003930332923, + "top": 272.25330553556745 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 272.25330553556745 + }, + { + "x": 610.8014796547473, + "y": 272.25330553556745 + }, + { + "x": 610.8014796547473, + "y": 397.5164794921875 + }, + { + "x": 562.4003930332923, + "y": 397.5164794921875 + } + ] + }, + { + "id": "qTKOS8n6I", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 76.8105540998767, + "left": 431.92769343403205, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 431.92769343403205, + "y": 283.8322689658717 + }, + { + "x": 508.73824753390875, + "y": 283.8322689658717 + }, + { + "x": 508.73824753390875, + "y": 419.62174265008224 + }, + { + "x": 431.92769343403205, + "y": 419.62174265008224 + } + ] + }, + { + "id": "Rs2Sreacm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 55.76655941738594, + "left": 149.9383477188656, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 149.9383477188656, + "y": 212.25330553556745 + }, + { + "x": 205.70490713625153, + "y": 212.25330553556745 + }, + { + "x": 205.70490713625153, + "y": 348.04277921977797 + }, + { + "x": 149.9383477188656, + "y": 348.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "3d3467d1f84b9482645e8a7f99c64f7a": { + "asset": { + "id": "3d3467d1f84b9482645e8a7f99c64f7a", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.95 + }, + "regions": [ + { + "id": "nRd6vTNc-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 151.57894736842104, + "width": 51.557779747225645, + "left": 962.235954839704, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 962.235954839704, + "y": 359.62174265008224 + }, + { + "x": 1013.7937345869298, + "y": 359.62174265008224 + }, + { + "x": 1013.7937345869298, + "y": 511.2006900185033 + }, + { + "x": 962.235954839704, + "y": 511.2006900185033 + } + ] + }, + { + "id": "xLW-o2IJD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 69.44512946979039, + "left": 723.3868295314427, + "top": 181.72697368421052 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 181.72697368421052 + }, + { + "x": 792.831959001233, + "y": 181.72697368421052 + }, + { + "x": 792.831959001233, + "y": 301.7269736842105 + }, + { + "x": 723.3868295314427, + "y": 301.7269736842105 + } + ] + }, + { + "id": "knhKhXRZP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 78.94736842105263, + "width": 32.61810265104809, + "left": 669.7246840320591, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 669.7246840320591, + "y": 218.56909500925164 + }, + { + "x": 702.3427866831073, + "y": 218.56909500925164 + }, + { + "x": 702.3427866831073, + "y": 297.51646343030427 + }, + { + "x": 669.7246840320591, + "y": 297.51646343030427 + } + ] + }, + { + "id": "g_zNSwYE6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 103.15791079872533, + "width": 59.97533908754624, + "left": 619.219135326757, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 619.219135326757, + "y": 234.35856869346216 + }, + { + "x": 679.1944744143034, + "y": 234.35856869346216 + }, + { + "x": 679.1944744143034, + "y": 337.5164794921875 + }, + { + "x": 619.219135326757, + "y": 337.5164794921875 + } + ] + }, + { + "id": "zQswnn3HX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 128.42106869346216, + "width": 78.91491985203453, + "left": 541.3563501849568, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 541.3563501849568, + "y": 278.56909500925167 + }, + { + "x": 620.2712700369914, + "y": 278.56909500925167 + }, + { + "x": 620.2712700369914, + "y": 406.9901637027138 + }, + { + "x": 541.3563501849568, + "y": 406.9901637027138 + } + ] + }, + { + "id": "KfXycMx_r", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 48.40113478729963, + "left": 451.9194570745993, + "top": 273.30592105263156 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 273.30592105263156 + }, + { + "x": 500.3205918618989, + "y": 273.30592105263156 + }, + { + "x": 500.3205918618989, + "y": 405.9375 + }, + { + "x": 451.9194570745993, + "y": 405.9375 + } + ] + }, + { + "id": "9SLaIrQ-O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63160304019326, + "width": 33.67033369297164, + "left": 619.219135326757, + "top": 163.83224487304688 + }, + "points": [ + { + "x": 619.219135326757, + "y": 163.83224487304688 + }, + { + "x": 652.8894690197287, + "y": 163.83224487304688 + }, + { + "x": 652.8894690197287, + "y": 236.46384791324013 + }, + { + "x": 619.219135326757, + "y": 236.46384791324013 + } + ] + }, + { + "id": "HqGW3PJP8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 113.6842105263158, + "width": 52.60996262330456, + "left": 148.88616484278668, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 148.88616484278668, + "y": 226.99016370271383 + }, + { + "x": 201.49612746609125, + "y": 226.99016370271383 + }, + { + "x": 201.49612746609125, + "y": 340.67437422902964 + }, + { + "x": 148.88616484278668, + "y": 340.67437422902964 + } + ] + } + ], + "version": "2.2.0" + }, + "596552c8e8e5b4589ee921d92af9a1f3": { + "asset": { + "id": "596552c8e8e5b4589ee921d92af9a1f3", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.8 + }, + "regions": [ + { + "id": "8zVeFhP5q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 156.84212132504112, + "width": 62.07980117139334, + "left": 951.7139334155364, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 951.7139334155364, + "y": 332.25330553556745 + }, + { + "x": 1013.7937345869298, + "y": 332.25330553556745 + }, + { + "x": 1013.7937345869298, + "y": 489.09542686060854 + }, + { + "x": 951.7139334155364, + "y": 489.09542686060854 + } + ] + }, + { + "id": "SA2ggj5AK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 102.10527118883635, + "width": 42.0879893649815, + "left": 741.2741792540074, + "top": 179.6217185572574 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 179.6217185572574 + }, + { + "x": 783.3621686189889, + "y": 179.6217185572574 + }, + { + "x": 783.3621686189889, + "y": 281.72698974609375 + }, + { + "x": 741.2741792540074, + "y": 281.72698974609375 + } + ] + }, + { + "id": "adOyWbtKF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31577341180099, + "width": 42.0879893649815, + "left": 620.2712700369914, + "top": 158.56909500925164 + }, + "points": [ + { + "x": 620.2712700369914, + "y": 158.56909500925164 + }, + { + "x": 662.3592594019728, + "y": 158.56909500925164 + }, + { + "x": 662.3592594019728, + "y": 244.88486842105263 + }, + { + "x": 620.2712700369914, + "y": 244.88486842105263 + } + ] + }, + { + "id": "IQ0_Xr6T8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 106.31580553556743, + "width": 42.08789303329223, + "left": 676.0378776202219, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 676.0378776202219, + "y": 218.56909500925164 + }, + { + "x": 718.1257706535142, + "y": 218.56909500925164 + }, + { + "x": 718.1257706535142, + "y": 324.88490054481906 + }, + { + "x": 676.0378776202219, + "y": 324.88490054481906 + } + ] + }, + { + "id": "ubHJp35nI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 103.15791079872533, + "width": 31.56596794081381, + "left": 635.002119297164, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 635.002119297164, + "y": 237.51646343030427 + }, + { + "x": 666.5680872379778, + "y": 237.51646343030427 + }, + { + "x": 666.5680872379778, + "y": 340.67437422902964 + }, + { + "x": 635.002119297164, + "y": 340.67437422902964 + } + ] + }, + { + "id": "S-hJvpbzE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 131.57896343030427, + "width": 54.714376541307026, + "left": 560.2959309494452, + "top": 285.9375 + }, + "points": [ + { + "x": 560.2959309494452, + "y": 285.9375 + }, + { + "x": 615.0103074907522, + "y": 285.9375 + }, + { + "x": 615.0103074907522, + "y": 417.51646343030427 + }, + { + "x": 560.2959309494452, + "y": 417.51646343030427 + } + ] + }, + { + "id": "bgPTv0MJ9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 159.99996787623357, + "width": 77.86268881011098, + "left": 435.08429022811345, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 435.08429022811345, + "y": 277.5164794921875 + }, + { + "x": 512.9469790382244, + "y": 277.5164794921875 + }, + { + "x": 512.9469790382244, + "y": 437.51644736842104 + }, + { + "x": 435.08429022811345, + "y": 437.51644736842104 + } + ] + }, + { + "id": "TjC-EvSeF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 113.6842105263158, + "width": 55.76651125154131, + "left": 150.99057876078916, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 150.99057876078916, + "y": 226.99016370271383 + }, + { + "x": 206.75709001233045, + "y": 226.99016370271383 + }, + { + "x": 206.75709001233045, + "y": 340.67437422902964 + }, + { + "x": 150.99057876078916, + "y": 340.67437422902964 + } + ] + } + ], + "version": "2.2.0" + }, + "527d394347f0dc4320deabf20e5c4e96": { + "asset": { + "id": "527d394347f0dc4320deabf20e5c4e96", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.65 + }, + "regions": [ + { + "id": "xk5fg72w6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 153.684226588199, + "width": 52.60991445745993, + "left": 963.2881858816277, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 963.2881858816277, + "y": 354.3585686934622 + }, + { + "x": 1015.8981003390876, + "y": 354.3585686934622 + }, + { + "x": 1015.8981003390876, + "y": 508.0427952816612 + }, + { + "x": 963.2881858816277, + "y": 508.0427952816612 + } + ] + }, + { + "id": "456d0hZaH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 102.10524709601151, + "width": 48.401182953144264, + "left": 757.0571632244144, + "top": 180.67435816714638 + }, + "points": [ + { + "x": 757.0571632244144, + "y": 180.67435816714638 + }, + { + "x": 805.4583461775586, + "y": 180.67435816714638 + }, + { + "x": 805.4583461775586, + "y": 282.7796052631579 + }, + { + "x": 757.0571632244144, + "y": 282.7796052631579 + } + ] + }, + { + "id": "2NI9wuUmX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 35.77479577681874, + "left": 690.7686305487053, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 690.7686305487053, + "y": 218.56909500925164 + }, + { + "x": 726.543426325524, + "y": 218.56909500925164 + }, + { + "x": 726.543426325524, + "y": 294.3585686934622 + }, + { + "x": 690.7686305487053, + "y": 294.3585686934622 + } + ] + }, + { + "id": "jRvpQLrKd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 102.10524709601151, + "width": 35.77479577681874, + "left": 661.3070283600493, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 661.3070283600493, + "y": 243.8322529039885 + }, + { + "x": 697.081824136868, + "y": 243.8322529039885 + }, + { + "x": 697.081824136868, + "y": 345.9375 + }, + { + "x": 661.3070283600493, + "y": 345.9375 + } + ] + }, + { + "id": "646yjed0v", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 30.513833230579532, + "left": 648.6806411837238, + "top": 168.04277921977797 + }, + "points": [ + { + "x": 648.6806411837238, + "y": 168.04277921977797 + }, + { + "x": 679.1944744143034, + "y": 168.04277921977797 + }, + { + "x": 679.1944744143034, + "y": 235.41118421052633 + }, + { + "x": 648.6806411837238, + "y": 235.41118421052633 + } + ] + }, + { + "id": "11lyKQzFl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 62.07980117139334, + "left": 560.2959309494452, + "top": 284.88488448293583 + }, + "points": [ + { + "x": 560.2959309494452, + "y": 284.88488448293583 + }, + { + "x": 622.3757321208385, + "y": 284.88488448293583 + }, + { + "x": 622.3757321208385, + "y": 411.20067395662005 + }, + { + "x": 560.2959309494452, + "y": 411.20067395662005 + } + ] + }, + { + "id": "tt1qJ21W_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 142.10526315789474, + "width": 54.714376541307026, + "left": 449.8150431565968, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 449.8150431565968, + "y": 275.41120027240953 + }, + { + "x": 504.52941969790385, + "y": 275.41120027240953 + }, + { + "x": 504.52941969790385, + "y": 417.51646343030427 + }, + { + "x": 449.8150431565968, + "y": 417.51646343030427 + } + ] + }, + { + "id": "AkmkxLAl-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 131.57896343030427, + "width": 53.66214549938348, + "left": 154.14717555487053, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 154.14717555487053, + "y": 218.56909500925164 + }, + { + "x": 207.809321054254, + "y": 218.56909500925164 + }, + { + "x": 207.809321054254, + "y": 350.14805843955594 + }, + { + "x": 154.14717555487053, + "y": 350.14805843955594 + } + ] + } + ], + "version": "2.2.0" + }, + "136a5f37788f00a8fbe176d877c17f41": { + "asset": { + "id": "136a5f37788f00a8fbe176d877c17f41", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.5 + }, + "regions": [ + { + "id": "rGR_DU2bA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 57.87097333538841, + "left": 964.3403205918619, + "top": 353.305953176398 + }, + "points": [ + { + "x": 964.3403205918619, + "y": 353.305953176398 + }, + { + "x": 1022.2112939272503, + "y": 353.305953176398 + }, + { + "x": 1022.2112939272503, + "y": 499.621726588199 + }, + { + "x": 964.3403205918619, + "y": 499.621726588199 + } + ] + }, + { + "id": "EZ9BkGmop", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 112.63159500925164, + "width": 54.714280209617755, + "left": 783.3621686189889, + "top": 191.20065789473685 + }, + "points": [ + { + "x": 783.3621686189889, + "y": 191.20065789473685 + }, + { + "x": 838.0764488286067, + "y": 191.20065789473685 + }, + { + "x": 838.0764488286067, + "y": 303.8322529039885 + }, + { + "x": 783.3621686189889, + "y": 303.8322529039885 + } + ] + }, + { + "id": "Lu1MkFwJ7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 54.714376541307026, + "left": 697.081824136868, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 697.081824136868, + "y": 212.25330553556745 + }, + { + "x": 751.7962006781751, + "y": 212.25330553556745 + }, + { + "x": 751.7962006781751, + "y": 332.25330553556745 + }, + { + "x": 697.081824136868, + "y": 332.25330553556745 + } + ] + }, + { + "id": "nU4wdKnOv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 54.714280209617755, + "left": 657.0982968557337, + "top": 180.67435816714638 + }, + "points": [ + { + "x": 657.0982968557337, + "y": 180.67435816714638 + }, + { + "x": 711.8125770653514, + "y": 180.67435816714638 + }, + { + "x": 711.8125770653514, + "y": 253.30593711451482 + }, + { + "x": 657.0982968557337, + "y": 253.30593711451482 + } + ] + }, + { + "id": "H-7dtVm5m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 112.63159500925164, + "width": 50.5055487053021, + "left": 663.4114904438965, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 663.4114904438965, + "y": 241.72697368421052 + }, + { + "x": 713.9170391491986, + "y": 241.72697368421052 + }, + { + "x": 713.9170391491986, + "y": 354.3585686934622 + }, + { + "x": 663.4114904438965, + "y": 354.3585686934622 + } + ] + }, + { + "id": "-CFHAJa8S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 52.6100107891492, + "left": 595.0184956843403, + "top": 289.0953947368421 + }, + "points": [ + { + "x": 595.0184956843403, + "y": 289.0953947368421 + }, + { + "x": 647.6285064734896, + "y": 289.0953947368421 + }, + { + "x": 647.6285064734896, + "y": 424.88486842105266 + }, + { + "x": 595.0184956843403, + "y": 424.88486842105266 + } + ] + }, + { + "id": "0vM8-eHHW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.2105423776727, + "width": 67.34076371763256, + "left": 447.71067740443897, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 447.71067740443897, + "y": 278.56909500925167 + }, + { + "x": 515.0514411220715, + "y": 278.56909500925167 + }, + { + "x": 515.0514411220715, + "y": 422.7796373869243 + }, + { + "x": 447.71067740443897, + "y": 422.7796373869243 + } + ] + }, + { + "id": "JOH-6vq61", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.57893130653783, + "width": 59.97533908754624, + "left": 170.98234240135636, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 170.98234240135636, + "y": 230.1480584395559 + }, + { + "x": 230.95768148890258, + "y": 230.1480584395559 + }, + { + "x": 230.95768148890258, + "y": 341.72698974609375 + }, + { + "x": 170.98234240135636, + "y": 341.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "524f15f295a090005262f69dce47e047": { + "asset": { + "id": "524f15f295a090005262f69dce47e047", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.35 + }, + "regions": [ + { + "id": "EBoDFM_e1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 117.89472078022204, + "width": 66.288532675709, + "left": 580.2877427558569, + "top": 290.14805843955594 + }, + "points": [ + { + "x": 580.2877427558569, + "y": 290.14805843955594 + }, + { + "x": 646.5762754315659, + "y": 290.14805843955594 + }, + { + "x": 646.5762754315659, + "y": 408.04277921977797 + }, + { + "x": 580.2877427558569, + "y": 408.04277921977797 + } + ] + }, + { + "id": "IM_PKzvzU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 108.42103656969573, + "width": 61.027521963625155, + "left": 451.9194570745993, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 281.72698974609375 + }, + { + "x": 512.9469790382244, + "y": 281.72698974609375 + }, + { + "x": 512.9469790382244, + "y": 390.1480263157895 + }, + { + "x": 451.9194570745993, + "y": 390.1480263157895 + } + ] + }, + { + "id": "d1__Iw64D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 118.94738448293586, + "width": 69.44512946979039, + "left": 169.93015952527745, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 169.93015952527745, + "y": 237.51646343030427 + }, + { + "x": 239.37528899506782, + "y": 237.51646343030427 + }, + { + "x": 239.37528899506782, + "y": 356.46384791324016 + }, + { + "x": 169.93015952527745, + "y": 356.46384791324016 + } + ] + }, + { + "id": "1sZ0ATdDi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 142.10526315789474, + "width": 74.70618834771886, + "left": 954.8705302096178, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 954.8705302096178, + "y": 364.88486842105266 + }, + { + "x": 1029.5767185573366, + "y": 364.88486842105266 + }, + { + "x": 1029.5767185573366, + "y": 506.9901315789474 + }, + { + "x": 954.8705302096178, + "y": 506.9901315789474 + } + ] + }, + { + "id": "W-uYaEtXc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 102.10524709601151, + "width": 48.401182953144264, + "left": 712.8648081072749, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 712.8648081072749, + "y": 228.04277921977797 + }, + { + "x": 761.2659910604192, + "y": 228.04277921977797 + }, + { + "x": 761.2659910604192, + "y": 330.1480263157895 + }, + { + "x": 712.8648081072749, + "y": 330.1480263157895 + } + ] + }, + { + "id": "jr3Br6MS1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 27.35723643649815, + "left": 683.403205918619, + "top": 186.9901476408306 + }, + "points": [ + { + "x": 683.403205918619, + "y": 186.9901476408306 + }, + { + "x": 710.7604423551171, + "y": 186.9901476408306 + }, + { + "x": 710.7604423551171, + "y": 239.62174265008224 + }, + { + "x": 683.403205918619, + "y": 239.62174265008224 + } + ] + }, + { + "id": "dkz4_scKL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 116.84210526315789, + "width": 49.45331766337855, + "left": 660.254893649815, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 660.254893649815, + "y": 251.20065789473685 + }, + { + "x": 709.7082113131936, + "y": 251.20065789473685 + }, + { + "x": 709.7082113131936, + "y": 368.04276315789474 + }, + { + "x": 660.254893649815, + "y": 368.04276315789474 + } + ] + }, + { + "id": "Obja_nUln", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 93.68422658819901, + "width": 54.714376541307026, + "left": 794.9363247533909, + "top": 202.77962132504112 + }, + "points": [ + { + "x": 794.9363247533909, + "y": 202.77962132504112 + }, + { + "x": 849.6507012946979, + "y": 202.77962132504112 + }, + { + "x": 849.6507012946979, + "y": 296.46384791324016 + }, + { + "x": 794.9363247533909, + "y": 296.46384791324016 + } + ] + } + ], + "version": "2.2.0" + }, + "41e04e8c0aa75d2fab3850ab775e709c": { + "asset": { + "id": "41e04e8c0aa75d2fab3850ab775e709c", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.2 + }, + "regions": [ + { + "id": "mke_0ZlB7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 152.6315628854852, + "width": 61.027570129469794, + "left": 949.6095676633786, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 949.6095676633786, + "y": 363.8322529039885 + }, + { + "x": 1010.6371377928483, + "y": 363.8322529039885 + }, + { + "x": 1010.6371377928483, + "y": 516.4638157894736 + }, + { + "x": 949.6095676633786, + "y": 516.4638157894736 + } + ] + }, + { + "id": "tlMZugZyt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 53.66214549938348, + "left": 798.0929215474723, + "top": 193.30593711451482 + }, + "points": [ + { + "x": 798.0929215474723, + "y": 193.30593711451482 + }, + { + "x": 851.7550670468557, + "y": 193.30593711451482 + }, + { + "x": 851.7550670468557, + "y": 300.6743581671464 + }, + { + "x": 798.0929215474723, + "y": 300.6743581671464 + } + ] + }, + { + "id": "yjzeIOhRC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 110.52631578947368, + "width": 39.9835272811344, + "left": 720.2302327373613, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 720.2302327373613, + "y": 226.99016370271383 + }, + { + "x": 760.2137600184957, + "y": 226.99016370271383 + }, + { + "x": 760.2137600184957, + "y": 337.5164794921875 + }, + { + "x": 720.2302327373613, + "y": 337.5164794921875 + } + ] + }, + { + "id": "gwToUQS9H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15791882966694, + "width": 34.722564734895194, + "left": 685.5076680024661, + "top": 185.93750803094161 + }, + "points": [ + { + "x": 685.5076680024661, + "y": 185.93750803094161 + }, + { + "x": 720.2302327373613, + "y": 185.93750803094161 + }, + { + "x": 720.2302327373613, + "y": 249.09542686060857 + }, + { + "x": 685.5076680024661, + "y": 249.09542686060857 + } + ] + }, + { + "id": "hD4BtI2Ue", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.57893130653783, + "width": 32.61819898273736, + "left": 681.2988401664612, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 681.2988401664612, + "y": 255.41121633429276 + }, + { + "x": 713.9170391491986, + "y": 255.41121633429276 + }, + { + "x": 713.9170391491986, + "y": 366.99014764083057 + }, + { + "x": 681.2988401664612, + "y": 366.99014764083057 + } + ] + }, + { + "id": "-VqXpWkwy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 129.47368421052633, + "width": 83.12374768803946, + "left": 577.1311459617756, + "top": 291.20067395662005 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 291.20067395662005 + }, + { + "x": 660.254893649815, + "y": 291.20067395662005 + }, + { + "x": 660.254893649815, + "y": 420.6743581671464 + }, + { + "x": 577.1311459617756, + "y": 420.6743581671464 + } + ] + }, + { + "id": "dAcZBohzM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26317395662007, + "width": 55.76660758323058, + "left": 456.1282367447596, + "top": 289.0953947368421 + }, + "points": [ + { + "x": 456.1282367447596, + "y": 289.0953947368421 + }, + { + "x": 511.89484432799014, + "y": 289.0953947368421 + }, + { + "x": 511.89484432799014, + "y": 414.3585686934622 + }, + { + "x": 456.1282367447596, + "y": 414.3585686934622 + } + ] + }, + { + "id": "M5_8yF3_4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 59.97533908754624, + "left": 168.87792848335388, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 168.87792848335388, + "y": 218.56909500925164 + }, + { + "x": 228.85326757090013, + "y": 218.56909500925164 + }, + { + "x": 228.85326757090013, + "y": 351.20067395662005 + }, + { + "x": 168.87792848335388, + "y": 351.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "5036c065d9716afb68e57e5047033bef": { + "asset": { + "id": "5036c065d9716afb68e57e5047033bef", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=53.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=53.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 53.05 + }, + "regions": [ + { + "id": "5gamKftRi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 68.39289842786683, + "left": 938.0354115289766, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 938.0354115289766, + "y": 372.2533215974507 + }, + { + "x": 1006.4283099568435, + "y": 372.2533215974507 + }, + { + "x": 1006.4283099568435, + "y": 518.5690950092517 + }, + { + "x": 938.0354115289766, + "y": 518.5690950092517 + } + ] + }, + { + "id": "mo9lTS9BY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 112.63154682360198, + "width": 41.035758323057955, + "left": 812.8236744759556, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 812.8236744759556, + "y": 204.8849005448191 + }, + { + "x": 853.8594327990136, + "y": 204.8849005448191 + }, + { + "x": 853.8594327990136, + "y": 317.51644736842104 + }, + { + "x": 812.8236744759556, + "y": 317.51644736842104 + } + ] + }, + { + "id": "YdqXN2sPq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 103.15791079872533, + "width": 32.61819898273736, + "left": 727.5955610357584, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 727.5955610357584, + "y": 234.35856869346216 + }, + { + "x": 760.2137600184957, + "y": 234.35856869346216 + }, + { + "x": 760.2137600184957, + "y": 337.5164794921875 + }, + { + "x": 727.5955610357584, + "y": 337.5164794921875 + } + ] + }, + { + "id": "Az59FzVSL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.78950580797698, + "width": 36.8270268187423, + "left": 677.0900123304563, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 677.0900123304563, + "y": 254.35855263157896 + }, + { + "x": 713.9170391491986, + "y": 254.35855263157896 + }, + { + "x": 713.9170391491986, + "y": 350.14805843955594 + }, + { + "x": 677.0900123304563, + "y": 350.14805843955594 + } + ] + }, + { + "id": "aXCQF1yeR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73682604337993, + "width": 70.49736051171394, + "left": 566.609124537608, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 566.609124537608, + "y": 288.04277921977797 + }, + { + "x": 637.1064850493218, + "y": 288.04277921977797 + }, + { + "x": 637.1064850493218, + "y": 402.7796052631579 + }, + { + "x": 566.609124537608, + "y": 402.7796052631579 + } + ] + }, + { + "id": "xMyzlJ2Sv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 33.67033369297164, + "left": 693.9252273427867, + "top": 180.67435816714638 + }, + "points": [ + { + "x": 693.9252273427867, + "y": 180.67435816714638 + }, + { + "x": 727.5955610357584, + "y": 180.67435816714638 + }, + { + "x": 727.5955610357584, + "y": 241.72697368421052 + }, + { + "x": 693.9252273427867, + "y": 241.72697368421052 + } + ] + }, + { + "id": "xgFIZiDjg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 142.10526315789474, + "width": 53.662193665228116, + "left": 458.232650662762, + "top": 273.30592105263156 + }, + "points": [ + { + "x": 458.232650662762, + "y": 273.30592105263156 + }, + { + "x": 511.89484432799014, + "y": 273.30592105263156 + }, + { + "x": 511.89484432799014, + "y": 415.4111842105263 + }, + { + "x": 458.232650662762, + "y": 415.4111842105263 + } + ] + }, + { + "id": "a4Xijy10V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 102.10524709601151, + "width": 50.5055487053021, + "left": 181.5043156596794, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 181.5043156596794, + "y": 233.30595317639802 + }, + { + "x": 232.0098643649815, + "y": 233.30595317639802 + }, + { + "x": 232.0098643649815, + "y": 335.41120027240953 + }, + { + "x": 181.5043156596794, + "y": 335.41120027240953 + } + ] + } + ], + "version": "2.2.0" + }, + "01e48ad3067c3f61b74e6b6ce14045e4": { + "asset": { + "id": "01e48ad3067c3f61b74e6b6ce14045e4", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52.9 + }, + "regions": [ + { + "id": "Az9mu8Poi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 57.87097333538841, + "left": 168.87792848335388, + "top": 222.7796052631579 + }, + "points": [ + { + "x": 168.87792848335388, + "y": 222.7796052631579 + }, + { + "x": 226.7489018187423, + "y": 222.7796052631579 + }, + { + "x": 226.7489018187423, + "y": 349.09539473684214 + }, + { + "x": 168.87792848335388, + "y": 349.09539473684214 + } + ] + }, + { + "id": "oDux6raXS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 131.57896343030427, + "width": 70.4973123458693, + "left": 432.97987631011097, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 432.97987631011097, + "y": 275.41120027240953 + }, + { + "x": 503.4771886559803, + "y": 275.41120027240953 + }, + { + "x": 503.4771886559803, + "y": 406.9901637027138 + }, + { + "x": 432.97987631011097, + "y": 406.9901637027138 + } + ] + }, + { + "id": "mOBssl0c-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 69.44512946979039, + "left": 943.2963740752158, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 943.2963740752158, + "y": 370.1480423776727 + }, + { + "x": 1012.7415035450061, + "y": 370.1480423776727 + }, + { + "x": 1012.7415035450061, + "y": 504.88490054481906 + }, + { + "x": 943.2963740752158, + "y": 504.88490054481906 + } + ] + }, + { + "id": "qEV8A3_3a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 55.76651125154131, + "left": 587.6531673859433, + "top": 286.9901637027138 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 286.9901637027138 + }, + { + "x": 643.4196786374846, + "y": 286.9901637027138 + }, + { + "x": 643.4196786374846, + "y": 435.41121633429276 + }, + { + "x": 587.6531673859433, + "y": 435.41121633429276 + } + ] + }, + { + "id": "W1JTvU2_L", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 103.15791079872533, + "width": 37.879161528976574, + "left": 827.5545237361282, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 827.5545237361282, + "y": 205.93751606188323 + }, + { + "x": 865.4336852651048, + "y": 205.93751606188323 + }, + { + "x": 865.4336852651048, + "y": 309.09542686060854 + }, + { + "x": 827.5545237361282, + "y": 309.09542686060854 + } + ] + }, + { + "id": "MXSTovE_w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 19.99181180641184, + "left": 712.8648081072749, + "top": 186.9901476408306 + }, + "points": [ + { + "x": 712.8648081072749, + "y": 186.9901476408306 + }, + { + "x": 732.8566199136868, + "y": 186.9901476408306 + }, + { + "x": 732.8566199136868, + "y": 254.35855263157896 + }, + { + "x": 712.8648081072749, + "y": 254.35855263157896 + } + ] + }, + { + "id": "e093ve6QT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 109.47370027240954, + "width": 48.401182953144264, + "left": 734.9609856658446, + "top": 225.9375 + }, + "points": [ + { + "x": 734.9609856658446, + "y": 225.9375 + }, + { + "x": 783.3621686189889, + "y": 225.9375 + }, + { + "x": 783.3621686189889, + "y": 335.41120027240953 + }, + { + "x": 734.9609856658446, + "y": 335.41120027240953 + } + ] + }, + { + "id": "lV-S1fDSB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 46.29672086929717, + "left": 679.1944744143034, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 679.1944744143034, + "y": 251.20065789473685 + }, + { + "x": 725.4911952836005, + "y": 251.20065789473685 + }, + { + "x": 725.4911952836005, + "y": 383.83223684210526 + }, + { + "x": 679.1944744143034, + "y": 383.83223684210526 + } + ] + } + ], + "version": "2.2.0" + }, + "d586efec58905b43e2ce990d60a7b70a": { + "asset": { + "id": "d586efec58905b43e2ce990d60a7b70a", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52.75 + }, + "regions": [ + { + "id": "_58ahv_Ny", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 108.42108475534539, + "width": 38.93129623921085, + "left": 739.1698135018496, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 739.1698135018496, + "y": 238.5690789473684 + }, + { + "x": 778.1011097410604, + "y": 238.5690789473684 + }, + { + "x": 778.1011097410604, + "y": 346.9901637027138 + }, + { + "x": 739.1698135018496, + "y": 346.9901637027138 + } + ] + }, + { + "id": "NdGFnZT4M", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 26.3050053945746, + "left": 719.1780016954377, + "top": 190.1480423776727 + }, + "points": [ + { + "x": 719.1780016954377, + "y": 190.1480423776727 + }, + { + "x": 745.4830070900124, + "y": 190.1480423776727 + }, + { + "x": 745.4830070900124, + "y": 258.5691110711349 + }, + { + "x": 719.1780016954377, + "y": 258.5691110711349 + } + ] + }, + { + "id": "I7lYYmTNu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 109.47370027240954, + "width": 46.29681720098644, + "left": 677.0900123304563, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 677.0900123304563, + "y": 250.1480423776727 + }, + { + "x": 723.3868295314427, + "y": 250.1480423776727 + }, + { + "x": 723.3868295314427, + "y": 359.62174265008224 + }, + { + "x": 677.0900123304563, + "y": 359.62174265008224 + } + ] + }, + { + "id": "LT4JekGY1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84208920127466, + "width": 62.07970483970407, + "left": 577.1311459617756, + "top": 286.9901637027138 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 286.9901637027138 + }, + { + "x": 639.2108508014796, + "y": 286.9901637027138 + }, + { + "x": 639.2108508014796, + "y": 423.8322529039885 + }, + { + "x": 577.1311459617756, + "y": 423.8322529039885 + } + ] + }, + { + "id": "7SrEBvoJx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 69.44512946979039, + "left": 444.5540806103576, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 444.5540806103576, + "y": 277.5164794921875 + }, + { + "x": 513.9992100801479, + "y": 277.5164794921875 + }, + { + "x": 513.9992100801479, + "y": 420.6743581671464 + }, + { + "x": 444.5540806103576, + "y": 420.6743581671464 + } + ] + }, + { + "id": "HzMnZv-bP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 128.42106869346216, + "width": 59.97533908754624, + "left": 180.4521327836005, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 180.4521327836005, + "y": 234.35856869346216 + }, + { + "x": 240.42747187114674, + "y": 234.35856869346216 + }, + { + "x": 240.42747187114674, + "y": 362.7796373869243 + }, + { + "x": 180.4521327836005, + "y": 362.7796373869243 + } + ] + }, + { + "id": "1xMJDohj4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 133.68419446443258, + "width": 59.97533908754624, + "left": 936.983180487053, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 936.983180487053, + "y": 372.2533215974507 + }, + { + "x": 996.9585195745992, + "y": 372.2533215974507 + }, + { + "x": 996.9585195745992, + "y": 505.93751606188323 + }, + { + "x": 936.983180487053, + "y": 505.93751606188323 + } + ] + }, + { + "id": "ZoYw8grEj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 122.10527921977796, + "width": 41.035758323057955, + "left": 837.0243141183724, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 837.0243141183724, + "y": 200.67434210526315 + }, + { + "x": 878.0600724414303, + "y": 200.67434210526315 + }, + { + "x": 878.0600724414303, + "y": 322.77962132504115 + }, + { + "x": 837.0243141183724, + "y": 322.77962132504115 + } + ] + } + ], + "version": "2.2.0" + }, + "2fd92073763ad54c41db14062b22b919": { + "asset": { + "id": "2fd92073763ad54c41db14062b22b919", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52.6 + }, + "regions": [ + { + "id": "HaOfkkr-B", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 112.63159500925164, + "width": 47.348951911220716, + "left": 829.658889488286, + "top": 199.621726588199 + }, + "points": [ + { + "x": 829.658889488286, + "y": 199.621726588199 + }, + { + "x": 877.0078413995068, + "y": 199.621726588199 + }, + { + "x": 877.0078413995068, + "y": 312.2533215974507 + }, + { + "x": 829.658889488286, + "y": 312.2533215974507 + } + ] + }, + { + "id": "lvExozrJS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 51.557779747225645, + "left": 930.6699868988902, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 366.99014764083057 + }, + { + "x": 982.2277666461159, + "y": 366.99014764083057 + }, + { + "x": 982.2277666461159, + "y": 510.1480263157895 + }, + { + "x": 930.6699868988902, + "y": 510.1480263157895 + } + ] + }, + { + "id": "1akWLZhOh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 34.722564734895194, + "left": 723.3868295314427, + "top": 193.30593711451482 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 193.30593711451482 + }, + { + "x": 758.1093942663379, + "y": 193.30593711451482 + }, + { + "x": 758.1093942663379, + "y": 243.8322529039885 + }, + { + "x": 723.3868295314427, + "y": 243.8322529039885 + } + ] + }, + { + "id": "EB__9ADhG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 108.42103656969573, + "width": 25.25277435265105, + "left": 742.3264102959309, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 742.3264102959309, + "y": 228.04277921977797 + }, + { + "x": 767.579184648582, + "y": 228.04277921977797 + }, + { + "x": 767.579184648582, + "y": 336.4638157894737 + }, + { + "x": 742.3264102959309, + "y": 336.4638157894737 + } + ] + }, + { + "id": "2HH6wHsgt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 122.1052310341283, + "width": 42.0879893649815, + "left": 689.7163995067817, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 689.7163995067817, + "y": 249.09542686060857 + }, + { + "x": 731.8043888717633, + "y": 249.09542686060857 + }, + { + "x": 731.8043888717633, + "y": 371.2006578947368 + }, + { + "x": 689.7163995067817, + "y": 371.2006578947368 + } + ] + }, + { + "id": "vCAttTvem", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84208920127466, + "width": 76.8105540998767, + "left": 564.5047587854501, + "top": 290.14805843955594 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 290.14805843955594 + }, + { + "x": 641.3153128853268, + "y": 290.14805843955594 + }, + { + "x": 641.3153128853268, + "y": 426.99014764083057 + }, + { + "x": 564.5047587854501, + "y": 426.99014764083057 + } + ] + }, + { + "id": "p6G10rkbD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 57.870925169543774, + "left": 445.6062634864365, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 445.6062634864365, + "y": 277.5164794921875 + }, + { + "x": 503.4771886559803, + "y": 277.5164794921875 + }, + { + "x": 503.4771886559803, + "y": 420.6743581671464 + }, + { + "x": 445.6062634864365, + "y": 420.6743581671464 + } + ] + }, + { + "id": "Li-NINewP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 116.84210526315789, + "width": 44.192355117139336, + "left": 183.60872957768188, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 183.60872957768188, + "y": 226.99016370271383 + }, + { + "x": 227.8010846948212, + "y": 226.99016370271383 + }, + { + "x": 227.8010846948212, + "y": 343.8322689658717 + }, + { + "x": 183.60872957768188, + "y": 343.8322689658717 + } + ] + } + ], + "version": "2.2.0" + }, + "72b2df7e8ab66359a4cf880b2f77df9d": { + "asset": { + "id": "72b2df7e8ab66359a4cf880b2f77df9d", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52.45 + }, + "regions": [ + { + "id": "Sr-lU0e6i", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 46.29672086929717, + "left": 931.7222179408138, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 931.7222179408138, + "y": 370.1480423776727 + }, + { + "x": 978.018938810111, + "y": 370.1480423776727 + }, + { + "x": 978.018938810111, + "y": 513.3059210526316 + }, + { + "x": 931.7222179408138, + "y": 513.3059210526316 + } + ] + }, + { + "id": "ygt6tuLwM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73682604337993, + "width": 51.557779747225645, + "left": 850.7028360049322, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 850.7028360049322, + "y": 208.0427952816612 + }, + { + "x": 902.2606157521578, + "y": 208.0427952816612 + }, + { + "x": 902.2606157521578, + "y": 322.77962132504115 + }, + { + "x": 850.7028360049322, + "y": 322.77962132504115 + } + ] + }, + { + "id": "u0_Hu0th9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 32.61819898273736, + "left": 733.9087546239211, + "top": 193.30593711451482 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 193.30593711451482 + }, + { + "x": 766.5269536066585, + "y": 193.30593711451482 + }, + { + "x": 766.5269536066585, + "y": 249.09542686060857 + }, + { + "x": 733.9087546239211, + "y": 249.09542686060857 + } + ] + }, + { + "id": "FUarSNTiF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 115.78948974609375, + "width": 44.192355117139336, + "left": 744.4307760480888, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 238.5690789473684 + }, + { + "x": 788.6231311652281, + "y": 238.5690789473684 + }, + { + "x": 788.6231311652281, + "y": 354.3585686934622 + }, + { + "x": 744.4307760480888, + "y": 354.3585686934622 + } + ] + }, + { + "id": "5iHi7cvUm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 116.84210526315789, + "width": 53.66214549938348, + "left": 685.5076680024661, + "top": 262.77962132504115 + }, + "points": [ + { + "x": 685.5076680024661, + "y": 262.77962132504115 + }, + { + "x": 739.1698135018496, + "y": 262.77962132504115 + }, + { + "x": 739.1698135018496, + "y": 379.621726588199 + }, + { + "x": 685.5076680024661, + "y": 379.621726588199 + } + ] + }, + { + "id": "YPcnQ38Ey", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 71.54949522194822, + "left": 573.9745491676942, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 281.72698974609375 + }, + { + "x": 645.5240443896424, + "y": 281.72698974609375 + }, + { + "x": 645.5240443896424, + "y": 428.04276315789474 + }, + { + "x": 573.9745491676942, + "y": 428.04276315789474 + } + ] + }, + { + "id": "JEy99PmYp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 64.18411875770654, + "left": 442.4496666923551, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 442.4496666923551, + "y": 278.56909500925167 + }, + { + "x": 506.6337854500617, + "y": 278.56909500925167 + }, + { + "x": 506.6337854500617, + "y": 425.93753212376646 + }, + { + "x": 442.4496666923551, + "y": 425.93753212376646 + } + ] + }, + { + "id": "K-WPd6A0W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73680998149672, + "width": 66.288532675709, + "left": 169.93015952527745, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 169.93015952527745, + "y": 230.1480584395559 + }, + { + "x": 236.21869220098645, + "y": 230.1480584395559 + }, + { + "x": 236.21869220098645, + "y": 364.88486842105266 + }, + { + "x": 169.93015952527745, + "y": 364.88486842105266 + } + ] + } + ], + "version": "2.2.0" + }, + "35c4523ae782b32dfd06c388a97223ad": { + "asset": { + "id": "35c4523ae782b32dfd06c388a97223ad", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52.3 + }, + "regions": [ + { + "id": "p_PqDpQQ5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 101.05263157894737, + "width": 42.08794119913687, + "left": 192.0263370838471, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 192.0263370838471, + "y": 233.30595317639802 + }, + { + "x": 234.11427828298397, + "y": 233.30595317639802 + }, + { + "x": 234.11427828298397, + "y": 334.3585847553454 + }, + { + "x": 192.0263370838471, + "y": 334.3585847553454 + } + ] + }, + { + "id": "LMV5VChVQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 104.21052631578948, + "width": 49.45341399506782, + "left": 853.8594327990136, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 853.8594327990136, + "y": 215.41120027240953 + }, + { + "x": 903.3128467940813, + "y": 215.41120027240953 + }, + { + "x": 903.3128467940813, + "y": 319.621726588199 + }, + { + "x": 853.8594327990136, + "y": 319.621726588199 + } + ] + }, + { + "id": "mv2YvJ0po", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 61.027570129469794, + "left": 918.0435997225647, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 918.0435997225647, + "y": 359.62174265008224 + }, + { + "x": 979.0711698520346, + "y": 359.62174265008224 + }, + { + "x": 979.0711698520346, + "y": 492.2533215974507 + }, + { + "x": 918.0435997225647, + "y": 492.2533215974507 + } + ] + }, + { + "id": "u1tdRaZ4o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 36.82693048705302, + "left": 753.9005664303329, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 753.9005664303329, + "y": 252.25332159745065 + }, + { + "x": 790.7274969173859, + "y": 252.25332159745065 + }, + { + "x": 790.7274969173859, + "y": 340.67437422902964 + }, + { + "x": 753.9005664303329, + "y": 340.67437422902964 + } + ] + }, + { + "id": "H6lPVeLLf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 36.82693048705302, + "left": 744.4307760480888, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 204.8849005448191 + }, + { + "x": 781.2577065351418, + "y": 204.8849005448191 + }, + { + "x": 781.2577065351418, + "y": 248.04276315789474 + }, + { + "x": 744.4307760480888, + "y": 248.04276315789474 + } + ] + }, + { + "id": "33twhhpVy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.47371633429276, + "width": 62.07970483970407, + "left": 678.1422433723798, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 678.1422433723798, + "y": 254.35855263157896 + }, + { + "x": 740.2219482120838, + "y": 254.35855263157896 + }, + { + "x": 740.2219482120838, + "y": 343.8322689658717 + }, + { + "x": 678.1422433723798, + "y": 343.8322689658717 + } + ] + }, + { + "id": "hsOUlyMkH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 130.52629972759047, + "width": 65.23630163378544, + "left": 586.6009363440197, + "top": 294.3585686934622 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 294.3585686934622 + }, + { + "x": 651.8372379778052, + "y": 294.3585686934622 + }, + { + "x": 651.8372379778052, + "y": 424.88486842105266 + }, + { + "x": 586.6009363440197, + "y": 424.88486842105266 + } + ] + }, + { + "id": "aQVZEz2DZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 145.26315789473685, + "width": 54.714376541307026, + "left": 449.8150431565968, + "top": 284.88488448293583 + }, + "points": [ + { + "x": 449.8150431565968, + "y": 284.88488448293583 + }, + { + "x": 504.52941969790385, + "y": 284.88488448293583 + }, + { + "x": 504.52941969790385, + "y": 430.1480423776727 + }, + { + "x": 449.8150431565968, + "y": 430.1480423776727 + } + ] + } + ], + "version": "2.2.0" + }, + "2dadcefea648af9abd8d3a69705e5418": { + "asset": { + "id": "2dadcefea648af9abd8d3a69705e5418", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52.15 + }, + "regions": [ + { + "id": "O-MkPEnhH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 128.42106869346216, + "width": 54.714328375462394, + "left": 195.1829338779285, + "top": 225.9375 + }, + "points": [ + { + "x": 195.1829338779285, + "y": 225.9375 + }, + { + "x": 249.8972622533909, + "y": 225.9375 + }, + { + "x": 249.8972622533909, + "y": 354.3585686934622 + }, + { + "x": 195.1829338779285, + "y": 354.3585686934622 + } + ] + }, + { + "id": "HnywVYX7m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84213738692435, + "width": 52.60991445745993, + "left": 447.71067740443897, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 447.71067740443897, + "y": 276.4638157894737 + }, + { + "x": 500.3205918618989, + "y": 276.4638157894737 + }, + { + "x": 500.3205918618989, + "y": 413.305953176398 + }, + { + "x": 447.71067740443897, + "y": 413.305953176398 + } + ] + }, + { + "id": "TBtYRHdcg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 47.348951911220716, + "left": 590.8097641800247, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 590.8097641800247, + "y": 295.4111842105263 + }, + { + "x": 638.1587160912454, + "y": 295.4111842105263 + }, + { + "x": 638.1587160912454, + "y": 428.04276315789474 + }, + { + "x": 590.8097641800247, + "y": 428.04276315789474 + } + ] + }, + { + "id": "RhEntoS-0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 149.4736681486431, + "width": 52.6100107891492, + "left": 699.1861898890259, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 699.1861898890259, + "y": 250.1480423776727 + }, + { + "x": 751.7962006781751, + "y": 250.1480423776727 + }, + { + "x": 751.7962006781751, + "y": 399.6217105263158 + }, + { + "x": 699.1861898890259, + "y": 399.6217105263158 + } + ] + }, + { + "id": "EjjoKt7qj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 116.84210526315789, + "width": 53.66214549938348, + "left": 765.4747225647349, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 765.4747225647349, + "y": 253.30593711451482 + }, + { + "x": 819.1368680641184, + "y": 253.30593711451482 + }, + { + "x": 819.1368680641184, + "y": 370.1480423776727 + }, + { + "x": 765.4747225647349, + "y": 370.1480423776727 + } + ] + }, + { + "id": "uDhOJffJc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.73685013620477, + "width": 47.348951911220716, + "left": 746.5351418002466, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 195.41119224146794 + }, + { + "x": 793.8840937114674, + "y": 195.41119224146794 + }, + { + "x": 793.8840937114674, + "y": 250.1480423776727 + }, + { + "x": 746.5351418002466, + "y": 250.1480423776727 + } + ] + }, + { + "id": "Yi1hXkZC0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.36838892886513, + "width": 55.76651125154131, + "left": 919.0958307644883, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 919.0958307644883, + "y": 365.93753212376646 + }, + { + "x": 974.8623420160296, + "y": 365.93753212376646 + }, + { + "x": 974.8623420160296, + "y": 513.3059210526316 + }, + { + "x": 919.0958307644883, + "y": 513.3059210526316 + } + ] + }, + { + "id": "2cada0Jv0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 116.84210526315789, + "width": 52.60991445745993, + "left": 851.7550670468557, + "top": 217.5164794921875 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 217.5164794921875 + }, + { + "x": 904.3649815043157, + "y": 217.5164794921875 + }, + { + "x": 904.3649815043157, + "y": 334.3585847553454 + }, + { + "x": 851.7550670468557, + "y": 334.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "7ce3f72ad7aa7e09050fe81e602178f1": { + "asset": { + "id": "7ce3f72ad7aa7e09050fe81e602178f1", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=52.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=52", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 52 + }, + "regions": [ + { + "id": "42D7S-LMN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 54.714376541307026, + "left": 194.13070283600493, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 194.13070283600493, + "y": 231.20067395662008 + }, + { + "x": 248.84507937731198, + "y": 231.20067395662008 + }, + { + "x": 248.84507937731198, + "y": 365.93753212376646 + }, + { + "x": 194.13070283600493, + "y": 365.93753212376646 + } + ] + }, + { + "id": "5Gsdrb0gx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 164.21052631578948, + "width": 72.60172626387177, + "left": 438.24088702219484, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 438.24088702219484, + "y": 265.93751606188323 + }, + { + "x": 510.8426132860666, + "y": 265.93751606188323 + }, + { + "x": 510.8426132860666, + "y": 430.1480423776727 + }, + { + "x": 438.24088702219484, + "y": 430.1480423776727 + } + ] + }, + { + "id": "ZDn7DfRqL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36840499074836, + "width": 52.60991445745993, + "left": 586.6009363440197, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 288.04277921977797 + }, + { + "x": 639.2108508014796, + "y": 288.04277921977797 + }, + { + "x": 639.2108508014796, + "y": 415.4111842105263 + }, + { + "x": 586.6009363440197, + "y": 415.4111842105263 + } + ] + }, + { + "id": "cGIZoINnU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 124.21051025390625, + "width": 48.401182953144264, + "left": 703.3950177250308, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 253.30593711451482 + }, + { + "x": 751.7962006781751, + "y": 253.30593711451482 + }, + { + "x": 751.7962006781751, + "y": 377.51644736842104 + }, + { + "x": 703.3950177250308, + "y": 377.51644736842104 + } + ] + }, + { + "id": "CA5kJ1llh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 114.73682604337993, + "width": 55.76660758323058, + "left": 759.1615289765722, + "top": 240.67435816714638 + }, + "points": [ + { + "x": 759.1615289765722, + "y": 240.67435816714638 + }, + { + "x": 814.9281365598027, + "y": 240.67435816714638 + }, + { + "x": 814.9281365598027, + "y": 355.4111842105263 + }, + { + "x": 759.1615289765722, + "y": 355.4111842105263 + } + ] + }, + { + "id": "FQSSPRBGT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26316592567846, + "width": 34.722564734895194, + "left": 765.4747225647349, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 765.4747225647349, + "y": 195.41119224146794 + }, + { + "x": 800.1972872996301, + "y": 195.41119224146794 + }, + { + "x": 800.1972872996301, + "y": 240.67435816714638 + }, + { + "x": 765.4747225647349, + "y": 240.67435816714638 + } + ] + }, + { + "id": "BtPmwHRfA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 45.244586159062884, + "left": 873.8512446054254, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 873.8512446054254, + "y": 208.0427952816612 + }, + { + "x": 919.0958307644883, + "y": 208.0427952816612 + }, + { + "x": 919.0958307644883, + "y": 343.8322689658717 + }, + { + "x": 873.8512446054254, + "y": 343.8322689658717 + } + ] + }, + { + "id": "aB58Mg6fs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 51.557779747225645, + "left": 923.3045622688039, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 923.3045622688039, + "y": 368.04276315789474 + }, + { + "x": 974.8623420160296, + "y": 368.04276315789474 + }, + { + "x": 974.8623420160296, + "y": 515.4112002724096 + }, + { + "x": 923.3045622688039, + "y": 515.4112002724096 + } + ] + } + ], + "version": "2.2.0" + }, + "d4590a0469180f5ff23b4ff83ff1c57a": { + "asset": { + "id": "d4590a0469180f5ff23b4ff83ff1c57a", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=51.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=51.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 51.8 + }, + "regions": [ + { + "id": "8U_caJ3Lt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 51.557779747225645, + "left": 200.4438964241677, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 200.4438964241677, + "y": 230.1480584395559 + }, + { + "x": 252.00167617139334, + "y": 230.1480584395559 + }, + { + "x": 252.00167617139334, + "y": 356.46384791324016 + }, + { + "x": 200.4438964241677, + "y": 356.46384791324016 + } + ] + }, + { + "id": "fxPgcH8G_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 133.68424265008224, + "width": 52.60996262330456, + "left": 451.9194570745993, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 276.4638157894737 + }, + { + "x": 504.52941969790385, + "y": 276.4638157894737 + }, + { + "x": 504.52941969790385, + "y": 410.14805843955594 + }, + { + "x": 451.9194570745993, + "y": 410.14805843955594 + } + ] + }, + { + "id": "4qJKicox7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36840499074836, + "width": 48.401182953144264, + "left": 595.0184956843403, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 595.0184956843403, + "y": 288.04277921977797 + }, + { + "x": 643.4196786374846, + "y": 288.04277921977797 + }, + { + "x": 643.4196786374846, + "y": 415.4111842105263 + }, + { + "x": 595.0184956843403, + "y": 415.4111842105263 + } + ] + }, + { + "id": "1l-rtCcts", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36840499074836, + "width": 42.0879893649815, + "left": 711.8125770653514, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 711.8125770653514, + "y": 246.9901476408306 + }, + { + "x": 753.9005664303329, + "y": 246.9901476408306 + }, + { + "x": 753.9005664303329, + "y": 374.35855263157896 + }, + { + "x": 711.8125770653514, + "y": 374.35855263157896 + } + ] + }, + { + "id": "cLl-572qr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 117.89472078022204, + "width": 58.92310804562269, + "left": 763.370356812577, + "top": 240.67435816714638 + }, + "points": [ + { + "x": 763.370356812577, + "y": 240.67435816714638 + }, + { + "x": 822.2934648581997, + "y": 240.67435816714638 + }, + { + "x": 822.2934648581997, + "y": 358.56907894736844 + }, + { + "x": 763.370356812577, + "y": 358.56907894736844 + } + ] + }, + { + "id": "P7s8JfSH-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 53.66214549938348, + "left": 774.9445129469791, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 774.9445129469791, + "y": 200.67434210526315 + }, + { + "x": 828.6066584463625, + "y": 200.67434210526315 + }, + { + "x": 828.6066584463625, + "y": 308.04276315789474 + }, + { + "x": 774.9445129469791, + "y": 308.04276315789474 + } + ] + }, + { + "id": "wPfI4dUHU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 95.7894576223273, + "width": 48.401182953144264, + "left": 880.1644381935881, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 880.1644381935881, + "y": 220.6743742290296 + }, + { + "x": 928.5656211467325, + "y": 220.6743742290296 + }, + { + "x": 928.5656211467325, + "y": 316.46383185135693 + }, + { + "x": 880.1644381935881, + "y": 316.46383185135693 + } + ] + }, + { + "id": "UsbbJx5tI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 62.07970483970407, + "left": 909.6260403822441, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 909.6260403822441, + "y": 357.51646343030427 + }, + { + "x": 971.7057452219482, + "y": 357.51646343030427 + }, + { + "x": 971.7057452219482, + "y": 492.2533215974507 + }, + { + "x": 909.6260403822441, + "y": 492.2533215974507 + } + ] + } + ], + "version": "2.2.0" + }, + "2c2c714457d57a8614c3d12adfe6aa76": { + "asset": { + "id": "2c2c714457d57a8614c3d12adfe6aa76", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=51.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=51.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 51.65 + }, + "regions": [ + { + "id": "xDQes_8AM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 133.68419446443258, + "width": 59.97533908754624, + "left": 203.60049321824908, + "top": 223.83226896587172 + }, + "points": [ + { + "x": 203.60049321824908, + "y": 223.83226896587172 + }, + { + "x": 263.5758323057953, + "y": 223.83226896587172 + }, + { + "x": 263.5758323057953, + "y": 357.51646343030427 + }, + { + "x": 203.60049321824908, + "y": 357.51646343030427 + } + ] + }, + { + "id": "ZRCqm8332", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 69.44512946979039, + "left": 449.8150431565968, + "top": 261.727005807977 + }, + "points": [ + { + "x": 449.8150431565968, + "y": 261.727005807977 + }, + { + "x": 519.2601726263872, + "y": 261.727005807977 + }, + { + "x": 519.2601726263872, + "y": 416.46384791324016 + }, + { + "x": 449.8150431565968, + "y": 416.46384791324016 + } + ] + }, + { + "id": "lWRAlHRqF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84208920127466, + "width": 54.714376541307026, + "left": 599.2273235203453, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 288.04277921977797 + }, + { + "x": 653.9417000616523, + "y": 288.04277921977797 + }, + { + "x": 653.9417000616523, + "y": 424.88486842105266 + }, + { + "x": 599.2273235203453, + "y": 424.88486842105266 + } + ] + }, + { + "id": "7B978b-Gt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 112.63159500925164, + "width": 66.288532675709, + "left": 862.2770884710235, + "top": 202.77962132504112 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 202.77962132504112 + }, + { + "x": 928.5656211467325, + "y": 202.77962132504112 + }, + { + "x": 928.5656211467325, + "y": 315.41121633429276 + }, + { + "x": 862.2770884710235, + "y": 315.41121633429276 + } + ] + }, + { + "id": "PPB0Z5oUA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 50.5055487053021, + "left": 772.8401471948213, + "top": 225.9375 + }, + "points": [ + { + "x": 772.8401471948213, + "y": 225.9375 + }, + { + "x": 823.3456959001234, + "y": 225.9375 + }, + { + "x": 823.3456959001234, + "y": 358.56907894736844 + }, + { + "x": 772.8401471948213, + "y": 358.56907894736844 + } + ] + }, + { + "id": "xnDkZ0il8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 117.89472078022204, + "width": 52.60991445745993, + "left": 703.3950177250308, + "top": 259.621726588199 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 259.621726588199 + }, + { + "x": 756.0049321824907, + "y": 259.621726588199 + }, + { + "x": 756.0049321824907, + "y": 377.51644736842104 + }, + { + "x": 703.3950177250308, + "y": 377.51644736842104 + } + ] + }, + { + "id": "CM_6NuBth", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 163.15791079872534, + "width": 79.9670545622688, + "left": 896.9996532059187, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 896.9996532059187, + "y": 352.2532894736842 + }, + { + "x": 976.9667077681875, + "y": 352.2532894736842 + }, + { + "x": 976.9667077681875, + "y": 515.4112002724096 + }, + { + "x": 896.9996532059187, + "y": 515.4112002724096 + } + ] + } + ], + "version": "2.2.0" + }, + "3649e194a2470e8e33350c128131e7bb": { + "asset": { + "id": "3649e194a2470e8e33350c128131e7bb", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=51.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=51.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 51.5 + }, + "regions": [ + { + "id": "b0P-Tcmiv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26317395662007, + "width": 38.93129623921085, + "left": 893.8430564118372, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 893.8430564118372, + "y": 212.25330553556745 + }, + { + "x": 932.774352651048, + "y": 212.25330553556745 + }, + { + "x": 932.774352651048, + "y": 337.5164794921875 + }, + { + "x": 893.8430564118372, + "y": 337.5164794921875 + } + ] + }, + { + "id": "vg9NKoHJ0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31582159745066, + "width": 47.348951911220716, + "left": 800.1972872996301, + "top": 197.51644736842107 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 197.51644736842107 + }, + { + "x": 847.5462392108508, + "y": 197.51644736842107 + }, + { + "x": 847.5462392108508, + "y": 283.8322689658717 + }, + { + "x": 800.1972872996301, + "y": 283.8322689658717 + } + ] + }, + { + "id": "noGp1jNwh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 117.8947689658717, + "width": 62.07980117139334, + "left": 774.9445129469791, + "top": 248.04276315789474 + }, + "points": [ + { + "x": 774.9445129469791, + "y": 248.04276315789474 + }, + { + "x": 837.0243141183724, + "y": 248.04276315789474 + }, + { + "x": 837.0243141183724, + "y": 365.93753212376646 + }, + { + "x": 774.9445129469791, + "y": 365.93753212376646 + } + ] + }, + { + "id": "LxQtJnj8p", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 65.23630163378544, + "left": 703.3950177250308, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 253.30593711451482 + }, + { + "x": 768.6313193588163, + "y": 253.30593711451482 + }, + { + "x": 768.6313193588163, + "y": 388.0427952816612 + }, + { + "x": 703.3950177250308, + "y": 388.0427952816612 + } + ] + }, + { + "id": "fiWpKffdo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 137.8947529039885, + "width": 64.18416692355117, + "left": 588.7053020961775, + "top": 289.0953947368421 + }, + "points": [ + { + "x": 588.7053020961775, + "y": 289.0953947368421 + }, + { + "x": 652.8894690197287, + "y": 289.0953947368421 + }, + { + "x": 652.8894690197287, + "y": 426.99014764083057 + }, + { + "x": 588.7053020961775, + "y": 426.99014764083057 + } + ] + }, + { + "id": "uua9DBaR8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 153.68417840254935, + "width": 54.714376541307026, + "left": 457.1804677866831, + "top": 274.3585847553454 + }, + "points": [ + { + "x": 457.1804677866831, + "y": 274.3585847553454 + }, + { + "x": 511.89484432799014, + "y": 274.3585847553454 + }, + { + "x": 511.89484432799014, + "y": 428.04276315789474 + }, + { + "x": 457.1804677866831, + "y": 428.04276315789474 + } + ] + }, + { + "id": "Sj9e9g-Xc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 54.714376541307026, + "left": 206.75709001233045, + "top": 229.0953947368421 + }, + "points": [ + { + "x": 206.75709001233045, + "y": 229.0953947368421 + }, + { + "x": 261.47146655363747, + "y": 229.0953947368421 + }, + { + "x": 261.47146655363747, + "y": 377.51644736842104 + }, + { + "x": 206.75709001233045, + "y": 377.51644736842104 + } + ] + }, + { + "id": "pGcrL9laB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 166.31575734991776, + "width": 45.24448982737361, + "left": 909.6260403822441, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 909.6260403822441, + "y": 350.14805843955594 + }, + { + "x": 954.8705302096178, + "y": 350.14805843955594 + }, + { + "x": 954.8705302096178, + "y": 516.4638157894736 + }, + { + "x": 909.6260403822441, + "y": 516.4638157894736 + } + ] + } + ], + "version": "2.2.0" + }, + "90abda15ee10a635d11252a1083237c2": { + "asset": { + "id": "90abda15ee10a635d11252a1083237c2", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=51.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=51.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 51.35 + }, + "regions": [ + { + "id": "V3gMtPwja", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26312577097039, + "width": 58.92315621146732, + "left": 199.39171354808877, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 199.39171354808877, + "y": 220.6743742290296 + }, + { + "x": 258.31486975955613, + "y": 220.6743742290296 + }, + { + "x": 258.31486975955613, + "y": 345.9375 + }, + { + "x": 199.39171354808877, + "y": 345.9375 + } + ] + }, + { + "id": "PfiwILQmy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 55.76651125154131, + "left": 441.39748381627624, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 441.39748381627624, + "y": 278.56909500925167 + }, + { + "x": 497.1639950678175, + "y": 278.56909500925167 + }, + { + "x": 497.1639950678175, + "y": 421.7269736842105 + }, + { + "x": 441.39748381627624, + "y": 421.7269736842105 + } + ] + }, + { + "id": "kFejQQwFE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36840499074836, + "width": 50.5055487053021, + "left": 600.2795545622688, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 600.2795545622688, + "y": 303.8322529039885 + }, + { + "x": 650.7851032675709, + "y": 303.8322529039885 + }, + { + "x": 650.7851032675709, + "y": 431.2006578947368 + }, + { + "x": 600.2795545622688, + "y": 431.2006578947368 + } + ] + }, + { + "id": "Fj1q50Xqd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 66.288532675709, + "left": 711.8125770653514, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 711.8125770653514, + "y": 254.35855263157896 + }, + { + "x": 778.1011097410604, + "y": 254.35855263157896 + }, + { + "x": 778.1011097410604, + "y": 401.72698974609375 + }, + { + "x": 711.8125770653514, + "y": 401.72698974609375 + } + ] + }, + { + "id": "pqDiRviOy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0525994551809, + "width": 54.714280209617755, + "left": 780.2055718249076, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 780.2055718249076, + "y": 252.25332159745065 + }, + { + "x": 834.9198520345253, + "y": 252.25332159745065 + }, + { + "x": 834.9198520345253, + "y": 393.30592105263156 + }, + { + "x": 780.2055718249076, + "y": 393.30592105263156 + } + ] + }, + { + "id": "QZTggpcdC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 102.10529528166118, + "width": 59.97533908754624, + "left": 795.9885557953145, + "top": 194.35855263157896 + }, + "points": [ + { + "x": 795.9885557953145, + "y": 194.35855263157896 + }, + { + "x": 855.9638948828607, + "y": 194.35855263157896 + }, + { + "x": 855.9638948828607, + "y": 296.46384791324016 + }, + { + "x": 795.9885557953145, + "y": 296.46384791324016 + } + ] + }, + { + "id": "pYuaIBku9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 71.54949522194822, + "left": 887.5298628236745, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 361.7269736842105 + }, + { + "x": 959.0793580456227, + "y": 361.7269736842105 + }, + { + "x": 959.0793580456227, + "y": 510.1480263157895 + }, + { + "x": 887.5298628236745, + "y": 510.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "d408eb4b7cfef7d576d6d5f3b4abea8b": { + "asset": { + "id": "d408eb4b7cfef7d576d6d5f3b4abea8b", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=51.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=51.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 51.2 + }, + "regions": [ + { + "id": "1QLvCqd9J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 152.63161107113487, + "width": 70.49736051171394, + "left": 579.2355117139334, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 579.2355117139334, + "y": 282.7796052631579 + }, + { + "x": 649.7328722256474, + "y": 282.7796052631579 + }, + { + "x": 649.7328722256474, + "y": 435.41121633429276 + }, + { + "x": 579.2355117139334, + "y": 435.41121633429276 + } + ] + }, + { + "id": "p2s_0kRsa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 151.57894736842104, + "width": 61.027570129469794, + "left": 437.1886559802713, + "top": 274.3585847553454 + }, + "points": [ + { + "x": 437.1886559802713, + "y": 274.3585847553454 + }, + { + "x": 498.21622610974106, + "y": 274.3585847553454 + }, + { + "x": 498.21622610974106, + "y": 425.93753212376646 + }, + { + "x": 437.1886559802713, + "y": 425.93753212376646 + } + ] + }, + { + "id": "-5dv0ucCo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 130.52629972759047, + "width": 59.97533908754624, + "left": 199.39171354808877, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 199.39171354808877, + "y": 228.04277921977797 + }, + { + "x": 259.36705263563505, + "y": 228.04277921977797 + }, + { + "x": 259.36705263563505, + "y": 358.56907894736844 + }, + { + "x": 199.39171354808877, + "y": 358.56907894736844 + } + ] + }, + { + "id": "5JBW4TOA_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 123.15789473684211, + "width": 63.13193588162762, + "left": 693.9252273427867, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 693.9252273427867, + "y": 253.30593711451482 + }, + { + "x": 757.0571632244144, + "y": 253.30593711451482 + }, + { + "x": 757.0571632244144, + "y": 376.46383185135693 + }, + { + "x": 693.9252273427867, + "y": 376.46383185135693 + } + ] + }, + { + "id": "-Tekfzr43", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 110.52631578947368, + "width": 55.76660758323058, + "left": 768.6313193588163, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 768.6313193588163, + "y": 250.1480423776727 + }, + { + "x": 824.3979269420469, + "y": 250.1480423776727 + }, + { + "x": 824.3979269420469, + "y": 360.6743581671464 + }, + { + "x": 768.6313193588163, + "y": 360.6743581671464 + } + ] + }, + { + "id": "UO821Ch7F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26312577097039, + "width": 55.76651125154131, + "left": 887.5298628236745, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 204.8849005448191 + }, + { + "x": 943.2963740752158, + "y": 204.8849005448191 + }, + { + "x": 943.2963740752158, + "y": 330.1480263157895 + }, + { + "x": 887.5298628236745, + "y": 330.1480263157895 + } + ] + }, + { + "id": "FetNd1fgg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 97.89473684210526, + "width": 63.13193588162762, + "left": 785.4665343711467, + "top": 199.621726588199 + }, + "points": [ + { + "x": 785.4665343711467, + "y": 199.621726588199 + }, + { + "x": 848.5984702527744, + "y": 199.621726588199 + }, + { + "x": 848.5984702527744, + "y": 297.51646343030427 + }, + { + "x": 785.4665343711467, + "y": 297.51646343030427 + } + ] + }, + { + "id": "LVH_IaJV4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.2105423776727, + "width": 61.027570129469794, + "left": 883.3210349876696, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 883.3210349876696, + "y": 355.4111842105263 + }, + { + "x": 944.3486051171393, + "y": 355.4111842105263 + }, + { + "x": 944.3486051171393, + "y": 499.621726588199 + }, + { + "x": 883.3210349876696, + "y": 499.621726588199 + } + ] + } + ], + "version": "2.2.0" + }, + "f809d2721f9e96b5d70db4ab460d85f7": { + "asset": { + "id": "f809d2721f9e96b5d70db4ab460d85f7", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.95 + }, + "regions": [ + { + "id": "LQZILlAUG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 53.66214549938348, + "left": 871.7468788532676, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 871.7468788532676, + "y": 344.8848844829359 + }, + { + "x": 925.409024352651, + "y": 344.8848844829359 + }, + { + "x": 925.409024352651, + "y": 492.2533215974507 + }, + { + "x": 871.7468788532676, + "y": 492.2533215974507 + } + ] + }, + { + "id": "R82SsfViJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 42.08789303329223, + "left": 887.5298628236745, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 210.14802631578948 + }, + { + "x": 929.6177558569667, + "y": 210.14802631578948 + }, + { + "x": 929.6177558569667, + "y": 317.51644736842104 + }, + { + "x": 887.5298628236745, + "y": 317.51644736842104 + } + ] + }, + { + "id": "q6QBQyvbl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 46.29672086929717, + "left": 792.831959001233, + "top": 199.621726588199 + }, + "points": [ + { + "x": 792.831959001233, + "y": 199.621726588199 + }, + { + "x": 839.1286798705303, + "y": 199.621726588199 + }, + { + "x": 839.1286798705303, + "y": 306.99014764083057 + }, + { + "x": 792.831959001233, + "y": 306.99014764083057 + } + ] + }, + { + "id": "Cmow0SO7J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 118.94738448293586, + "width": 56.81874229346486, + "left": 757.0571632244144, + "top": 229.0953947368421 + }, + "points": [ + { + "x": 757.0571632244144, + "y": 229.0953947368421 + }, + { + "x": 813.8759055178791, + "y": 229.0953947368421 + }, + { + "x": 813.8759055178791, + "y": 348.04277921977797 + }, + { + "x": 757.0571632244144, + "y": 348.04277921977797 + } + ] + }, + { + "id": "UoNlHp_MB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 168.4210847553454, + "width": 42.08789303329223, + "left": 707.6038455610358, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 707.6038455610358, + "y": 210.14802631578948 + }, + { + "x": 749.691738594328, + "y": 210.14802631578948 + }, + { + "x": 749.691738594328, + "y": 378.5691110711349 + }, + { + "x": 707.6038455610358, + "y": 378.5691110711349 + } + ] + }, + { + "id": "OotGfQKNs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 123.15789473684211, + "width": 57.870877003699135, + "left": 562.4003930332923, + "top": 289.0953947368421 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 289.0953947368421 + }, + { + "x": 620.2712700369914, + "y": 289.0953947368421 + }, + { + "x": 620.2712700369914, + "y": 412.2532894736842 + }, + { + "x": 562.4003930332923, + "y": 412.2532894736842 + } + ] + }, + { + "id": "YFWa3ZA9w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 52.6100107891492, + "left": 427.71886559802715, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 427.71886559802715, + "y": 268.0427952816612 + }, + { + "x": 480.3288763871763, + "y": 268.0427952816612 + }, + { + "x": 480.3288763871763, + "y": 414.3585686934622 + }, + { + "x": 427.71886559802715, + "y": 414.3585686934622 + } + ] + }, + { + "id": "WKlN11A0f", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0526476408306, + "width": 54.714328375462394, + "left": 185.71314349568433, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 185.71314349568433, + "y": 210.14802631578948 + }, + { + "x": 240.42747187114674, + "y": 210.14802631578948 + }, + { + "x": 240.42747187114674, + "y": 351.20067395662005 + }, + { + "x": 185.71314349568433, + "y": 351.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "f7cd6db6f728f56f6b2a2c6ec6fa524a": { + "asset": { + "id": "f7cd6db6f728f56f6b2a2c6ec6fa524a", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.8 + }, + "regions": [ + { + "id": "WAe4lEnUw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 68.39289842786683, + "left": 855.9638948828607, + "top": 345.9375 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 345.9375 + }, + { + "x": 924.3567933107275, + "y": 345.9375 + }, + { + "x": 924.3567933107275, + "y": 500.6743421052632 + }, + { + "x": 855.9638948828607, + "y": 500.6743421052632 + } + ] + }, + { + "id": "E-C1DHMeh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 128.42106869346216, + "width": 50.5055487053021, + "left": 884.3732660295931, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 884.3732660295931, + "y": 205.93751606188323 + }, + { + "x": 934.8788147348952, + "y": 205.93751606188323 + }, + { + "x": 934.8788147348952, + "y": 334.3585847553454 + }, + { + "x": 884.3732660295931, + "y": 334.3585847553454 + } + ] + }, + { + "id": "m-GoL_TvI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 124.21051025390625, + "width": 56.81874229346486, + "left": 790.7274969173859, + "top": 209.09541079872534 + }, + "points": [ + { + "x": 790.7274969173859, + "y": 209.09541079872534 + }, + { + "x": 847.5462392108508, + "y": 209.09541079872534 + }, + { + "x": 847.5462392108508, + "y": 333.30592105263156 + }, + { + "x": 790.7274969173859, + "y": 333.30592105263156 + } + ] + }, + { + "id": "BDgJejap9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 110.52631578947368, + "width": 45.244586159062884, + "left": 763.370356812577, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 763.370356812577, + "y": 246.9901476408306 + }, + { + "x": 808.61494297164, + "y": 246.9901476408306 + }, + { + "x": 808.61494297164, + "y": 357.51646343030427 + }, + { + "x": 763.370356812577, + "y": 357.51646343030427 + } + ] + }, + { + "id": "4FSBff0_z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 116.84210526315789, + "width": 54.714376541307026, + "left": 689.7163995067817, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 689.7163995067817, + "y": 241.72697368421052 + }, + { + "x": 744.4307760480888, + "y": 241.72697368421052 + }, + { + "x": 744.4307760480888, + "y": 358.56907894736844 + }, + { + "x": 689.7163995067817, + "y": 358.56907894736844 + } + ] + }, + { + "id": "lSmX9_X9y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.2105423776727, + "width": 44.192355117139336, + "left": 578.1833770036991, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 292.2532894736842 + }, + { + "x": 622.3757321208385, + "y": 292.2532894736842 + }, + { + "x": 622.3757321208385, + "y": 436.46383185135693 + }, + { + "x": 578.1833770036991, + "y": 436.46383185135693 + } + ] + }, + { + "id": "Jfrp584Pu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84213738692435, + "width": 71.54949522194822, + "left": 403.5183222872996, + "top": 273.30592105263156 + }, + "points": [ + { + "x": 403.5183222872996, + "y": 273.30592105263156 + }, + { + "x": 475.06781750924785, + "y": 273.30592105263156 + }, + { + "x": 475.06781750924785, + "y": 410.14805843955594 + }, + { + "x": 403.5183222872996, + "y": 410.14805843955594 + } + ] + }, + { + "id": "uEdYy0yGD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 56.81874229346486, + "left": 187.81750924784217, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 187.81750924784217, + "y": 224.88488448293586 + }, + { + "x": 244.63625154130702, + "y": 224.88488448293586 + }, + { + "x": 244.63625154130702, + "y": 372.2533215974507 + }, + { + "x": 187.81750924784217, + "y": 372.2533215974507 + } + ] + } + ], + "version": "2.2.0" + }, + "0dc2fa0c4c1f295178e91033b7d21365": { + "asset": { + "id": "0dc2fa0c4c1f295178e91033b7d21365", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.65 + }, + "regions": [ + { + "id": "r3Xfl8c6P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 157.89473684210526, + "width": 65.23630163378544, + "left": 840.1809109124538, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 840.1809109124538, + "y": 350.14805843955594 + }, + { + "x": 905.4172125462392, + "y": 350.14805843955594 + }, + { + "x": 905.4172125462392, + "y": 508.0427952816612 + }, + { + "x": 840.1809109124538, + "y": 508.0427952816612 + } + ] + }, + { + "id": "g0h0VS_Nz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 105.26314183285362, + "width": 45.24448982737361, + "left": 887.5298628236745, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 218.56909500925164 + }, + { + "x": 932.774352651048, + "y": 218.56909500925164 + }, + { + "x": 932.774352651048, + "y": 323.83223684210526 + }, + { + "x": 887.5298628236745, + "y": 323.83223684210526 + } + ] + }, + { + "id": "h-WGM9_5a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 91.57894736842105, + "width": 50.5055487053021, + "left": 797.0406905055487, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 797.0406905055487, + "y": 210.14802631578948 + }, + { + "x": 847.5462392108508, + "y": 210.14802631578948 + }, + { + "x": 847.5462392108508, + "y": 301.7269736842105 + }, + { + "x": 797.0406905055487, + "y": 301.7269736842105 + } + ] + }, + { + "id": "99_cGuggo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 46.29672086929717, + "left": 770.7357814426634, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 770.7357814426634, + "y": 245.93753212376646 + }, + { + "x": 817.0325023119606, + "y": 245.93753212376646 + }, + { + "x": 817.0325023119606, + "y": 372.2533215974507 + }, + { + "x": 770.7357814426634, + "y": 372.2533215974507 + } + ] + }, + { + "id": "_9rA_ivi5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 124.21055843955592, + "width": 66.288532675709, + "left": 681.2988401664612, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 681.2988401664612, + "y": 254.35855263157896 + }, + { + "x": 747.5873728421702, + "y": 254.35855263157896 + }, + { + "x": 747.5873728421702, + "y": 378.5691110711349 + }, + { + "x": 681.2988401664612, + "y": 378.5691110711349 + } + ] + }, + { + "id": "qwLq5GmQ2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.36838892886513, + "width": 56.81874229346486, + "left": 563.4525277435265, + "top": 286.9901637027138 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 286.9901637027138 + }, + { + "x": 620.2712700369914, + "y": 286.9901637027138 + }, + { + "x": 620.2712700369914, + "y": 434.35855263157896 + }, + { + "x": 563.4525277435265, + "y": 434.35855263157896 + } + ] + }, + { + "id": "NYGlkbCcW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 65.23634979963009, + "left": 414.0402955456227, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 414.0402955456227, + "y": 275.41120027240953 + }, + { + "x": 479.2766453452528, + "y": 275.41120027240953 + }, + { + "x": 479.2766453452528, + "y": 418.56907894736844 + }, + { + "x": 414.0402955456227, + "y": 418.56907894736844 + } + ] + }, + { + "id": "uk7wOl8wH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26317395662007, + "width": 54.714328375462394, + "left": 183.60872957768188, + "top": 222.7796052631579 + }, + "points": [ + { + "x": 183.60872957768188, + "y": 222.7796052631579 + }, + { + "x": 238.32305795314426, + "y": 222.7796052631579 + }, + { + "x": 238.32305795314426, + "y": 348.04277921977797 + }, + { + "x": 183.60872957768188, + "y": 348.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "511ba2b9200bc0e1dbe102fdcac918e8": { + "asset": { + "id": "511ba2b9200bc0e1dbe102fdcac918e8", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.5 + }, + "regions": [ + { + "id": "2KQOhix3H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 65.23630163378544, + "left": 173.0867563193588, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 173.0867563193588, + "y": 224.88488448293586 + }, + { + "x": 238.32305795314426, + "y": 224.88488448293586 + }, + { + "x": 238.32305795314426, + "y": 359.62174265008224 + }, + { + "x": 173.0867563193588, + "y": 359.62174265008224 + } + ] + }, + { + "id": "5KxEMgKAb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.21049419202302, + "width": 53.66214549938348, + "left": 403.5183222872996, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 403.5183222872996, + "y": 268.0427952816612 + }, + { + "x": 457.1804677866831, + "y": 268.0427952816612 + }, + { + "x": 457.1804677866831, + "y": 412.2532894736842 + }, + { + "x": 403.5183222872996, + "y": 412.2532894736842 + } + ] + }, + { + "id": "OGaa_zYIq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0525994551809, + "width": 68.3929947595561, + "left": 550.826140567201, + "top": 302.7796373869243 + }, + "points": [ + { + "x": 550.826140567201, + "y": 302.7796373869243 + }, + { + "x": 619.219135326757, + "y": 302.7796373869243 + }, + { + "x": 619.219135326757, + "y": 443.83223684210526 + }, + { + "x": 550.826140567201, + "y": 443.83223684210526 + } + ] + }, + { + "id": "jx63BoybG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 58.92310804562269, + "left": 691.8208615906289, + "top": 266.9901315789474 + }, + "points": [ + { + "x": 691.8208615906289, + "y": 266.9901315789474 + }, + { + "x": 750.7439696362516, + "y": 266.9901315789474 + }, + { + "x": 750.7439696362516, + "y": 414.3585686934622 + }, + { + "x": 691.8208615906289, + "y": 414.3585686934622 + } + ] + }, + { + "id": "g39D490Sk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 165.26314183285362, + "width": 63.13193588162762, + "left": 841.233045622688, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 841.233045622688, + "y": 346.9901637027138 + }, + { + "x": 904.3649815043157, + "y": 346.9901637027138 + }, + { + "x": 904.3649815043157, + "y": 512.2533055355674 + }, + { + "x": 841.233045622688, + "y": 512.2533055355674 + } + ] + }, + { + "id": "fkc63Ey7O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0526476408306, + "width": 49.45331766337855, + "left": 889.6342285758324, + "top": 221.72698974609375 + }, + "points": [ + { + "x": 889.6342285758324, + "y": 221.72698974609375 + }, + { + "x": 939.0875462392108, + "y": 221.72698974609375 + }, + { + "x": 939.0875462392108, + "y": 362.7796373869243 + }, + { + "x": 889.6342285758324, + "y": 362.7796373869243 + } + ] + }, + { + "id": "FAKp8IzYs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 129.47368421052633, + "width": 53.66214549938348, + "left": 791.7797279593095, + "top": 213.3059210526316 + }, + "points": [ + { + "x": 791.7797279593095, + "y": 213.3059210526316 + }, + { + "x": 845.441873458693, + "y": 213.3059210526316 + }, + { + "x": 845.441873458693, + "y": 342.7796052631579 + }, + { + "x": 791.7797279593095, + "y": 342.7796052631579 + } + ] + }, + { + "id": "2gSo1x5Vj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 149.47371633429276, + "width": 48.40108662145499, + "left": 758.1093942663379, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 758.1093942663379, + "y": 238.5690789473684 + }, + { + "x": 806.5104808877928, + "y": 238.5690789473684 + }, + { + "x": 806.5104808877928, + "y": 388.0427952816612 + }, + { + "x": 758.1093942663379, + "y": 388.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "1f587be269861ff1b564a56ded93d68f": { + "asset": { + "id": "1f587be269861ff1b564a56ded93d68f", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.35 + }, + "regions": [ + { + "id": "26BFGp96g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 162.1052470960115, + "width": 68.3929947595561, + "left": 828.6066584463625, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 828.6066584463625, + "y": 340.67437422902964 + }, + { + "x": 896.9996532059187, + "y": 340.67437422902964 + }, + { + "x": 896.9996532059187, + "y": 502.77962132504115 + }, + { + "x": 828.6066584463625, + "y": 502.77962132504115 + } + ] + }, + { + "id": "XuswaKMk6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 142.10526315789474, + "width": 49.45331766337855, + "left": 887.5298628236745, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 208.0427952816612 + }, + { + "x": 936.983180487053, + "y": 208.0427952816612 + }, + { + "x": 936.983180487053, + "y": 350.14805843955594 + }, + { + "x": 887.5298628236745, + "y": 350.14805843955594 + } + ] + }, + { + "id": "iALNX7Q89", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 48.401182953144264, + "left": 793.8840937114674, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 793.8840937114674, + "y": 220.6743742290296 + }, + { + "x": 842.2852766646116, + "y": 220.6743742290296 + }, + { + "x": 842.2852766646116, + "y": 328.0427952816612 + }, + { + "x": 793.8840937114674, + "y": 328.0427952816612 + } + ] + }, + { + "id": "nlClNUcxQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 122.10527921977796, + "width": 55.76651125154131, + "left": 744.4307760480888, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 234.35856869346216 + }, + { + "x": 800.1972872996301, + "y": 234.35856869346216 + }, + { + "x": 800.1972872996301, + "y": 356.46384791324016 + }, + { + "x": 744.4307760480888, + "y": 356.46384791324016 + } + ] + }, + { + "id": "2l6UK6CWi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 138.94736842105263, + "width": 59.97533908754624, + "left": 684.4554369605426, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 684.4554369605426, + "y": 252.25332159745065 + }, + { + "x": 744.4307760480888, + "y": 252.25332159745065 + }, + { + "x": 744.4307760480888, + "y": 391.2006900185033 + }, + { + "x": 684.4554369605426, + "y": 391.2006900185033 + } + ] + }, + { + "id": "TmiePhkT3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 81.01938193588163, + "left": 535.0431565967941, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 281.72698974609375 + }, + { + "x": 616.0625385326757, + "y": 281.72698974609375 + }, + { + "x": 616.0625385326757, + "y": 436.46383185135693 + }, + { + "x": 535.0431565967941, + "y": 436.46383185135693 + } + ] + }, + { + "id": "RUsskYxd2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 175.78948974609375, + "width": 74.70614018187423, + "left": 395.1007147811344, + "top": 272.25330553556745 + }, + "points": [ + { + "x": 395.1007147811344, + "y": 272.25330553556745 + }, + { + "x": 469.8068549630086, + "y": 272.25330553556745 + }, + { + "x": 469.8068549630086, + "y": 448.0427952816612 + }, + { + "x": 395.1007147811344, + "y": 448.0427952816612 + } + ] + }, + { + "id": "W4YAj_LaZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 48.40113478729963, + "left": 179.39994990752157, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 179.39994990752157, + "y": 233.30595317639802 + }, + { + "x": 227.8010846948212, + "y": 233.30595317639802 + }, + { + "x": 227.8010846948212, + "y": 381.727005807977 + }, + { + "x": 179.39994990752157, + "y": 381.727005807977 + } + ] + } + ], + "version": "2.2.0" + }, + "27940f55c3000179e9250ca9392c6891": { + "asset": { + "id": "27940f55c3000179e9250ca9392c6891", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.2 + }, + "regions": [ + { + "id": "k7ZPYO565", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 62.07970483970407, + "left": 887.5298628236745, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 208.0427952816612 + }, + { + "x": 949.6095676633786, + "y": 208.0427952816612 + }, + { + "x": 949.6095676633786, + "y": 343.8322689658717 + }, + { + "x": 887.5298628236745, + "y": 343.8322689658717 + } + ] + }, + { + "id": "rddVFK6hR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 121.05266370271382, + "width": 52.60991445745993, + "left": 804.406115135635, + "top": 203.83223684210526 + }, + "points": [ + { + "x": 804.406115135635, + "y": 203.83223684210526 + }, + { + "x": 857.0160295930949, + "y": 203.83223684210526 + }, + { + "x": 857.0160295930949, + "y": 324.88490054481906 + }, + { + "x": 804.406115135635, + "y": 324.88490054481906 + } + ] + }, + { + "id": "ixsHKBLuN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 45.24448982737361, + "left": 767.579184648582, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 767.579184648582, + "y": 234.35856869346216 + }, + { + "x": 812.8236744759556, + "y": 234.35856869346216 + }, + { + "x": 812.8236744759556, + "y": 381.727005807977 + }, + { + "x": 767.579184648582, + "y": 381.727005807977 + } + ] + }, + { + "id": "xgtbNzjiu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 165.26314183285362, + "width": 70.49736051171394, + "left": 829.658889488286, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 829.658889488286, + "y": 338.56909500925167 + }, + { + "x": 900.15625, + "y": 338.56909500925167 + }, + { + "x": 900.15625, + "y": 503.83223684210526 + }, + { + "x": 829.658889488286, + "y": 503.83223684210526 + } + ] + }, + { + "id": "H7rBImeYu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 138.94736842105263, + "width": 61.027570129469794, + "left": 687.6120337546239, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 687.6120337546239, + "y": 241.72697368421052 + }, + { + "x": 748.6396038840937, + "y": 241.72697368421052 + }, + { + "x": 748.6396038840937, + "y": 380.6743421052632 + }, + { + "x": 687.6120337546239, + "y": 380.6743421052632 + } + ] + }, + { + "id": "toQ0p7t9d", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 152.6315628854852, + "width": 51.557779747225645, + "left": 560.2959309494452, + "top": 293.305953176398 + }, + "points": [ + { + "x": 560.2959309494452, + "y": 293.305953176398 + }, + { + "x": 611.8537106966708, + "y": 293.305953176398 + }, + { + "x": 611.8537106966708, + "y": 445.93751606188323 + }, + { + "x": 560.2959309494452, + "y": 445.93751606188323 + } + ] + }, + { + "id": "EwT3KXNxB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 160.00001606188323, + "width": 77.86278514180025, + "left": 386.6831072749692, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 386.6831072749692, + "y": 246.9901476408306 + }, + { + "x": 464.54589241676945, + "y": 246.9901476408306 + }, + { + "x": 464.54589241676945, + "y": 406.9901637027138 + }, + { + "x": 386.6831072749692, + "y": 406.9901637027138 + } + ] + }, + { + "id": "THdyT8jBZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 153.68417840254935, + "width": 59.97533908754624, + "left": 175.19112207151665, + "top": 223.83226896587172 + }, + "points": [ + { + "x": 175.19112207151665, + "y": 223.83226896587172 + }, + { + "x": 235.1664611590629, + "y": 223.83226896587172 + }, + { + "x": 235.1664611590629, + "y": 377.51644736842104 + }, + { + "x": 175.19112207151665, + "y": 377.51644736842104 + } + ] + } + ], + "version": "2.2.0" + }, + "bb42407e9c4cf29506501fc8d727dbdd": { + "asset": { + "id": "bb42407e9c4cf29506501fc8d727dbdd", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=50.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=50.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 50.05 + }, + "regions": [ + { + "id": "Idnm27sGl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0526476408306, + "width": 56.81874229346486, + "left": 906.4694435881628, + "top": 213.3059210526316 + }, + "points": [ + { + "x": 906.4694435881628, + "y": 213.3059210526316 + }, + { + "x": 963.2881858816277, + "y": 213.3059210526316 + }, + { + "x": 963.2881858816277, + "y": 354.3585686934622 + }, + { + "x": 906.4694435881628, + "y": 354.3585686934622 + } + ] + }, + { + "id": "C1BloQgBf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 152.6315628854852, + "width": 57.870877003699135, + "left": 843.3375077065351, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 843.3375077065351, + "y": 340.67437422902964 + }, + { + "x": 901.2083847102343, + "y": 340.67437422902964 + }, + { + "x": 901.2083847102343, + "y": 493.3059371145148 + }, + { + "x": 843.3375077065351, + "y": 493.3059371145148 + } + ] + }, + { + "id": "iSBnvYdat", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 115.78944156044408, + "width": 38.93139257090012, + "left": 828.6066584463625, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 828.6066584463625, + "y": 211.20069001850328 + }, + { + "x": 867.5380510172627, + "y": 211.20069001850328 + }, + { + "x": 867.5380510172627, + "y": 326.9901315789474 + }, + { + "x": 828.6066584463625, + "y": 326.9901315789474 + } + ] + }, + { + "id": "iywFE2jZg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36840499074836, + "width": 57.87097333538841, + "left": 765.4747225647349, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 765.4747225647349, + "y": 236.46384791324013 + }, + { + "x": 823.3456959001234, + "y": 236.46384791324013 + }, + { + "x": 823.3456959001234, + "y": 363.8322529039885 + }, + { + "x": 765.4747225647349, + "y": 363.8322529039885 + } + ] + }, + { + "id": "HjpqK6HFU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0526476408306, + "width": 52.60991445745993, + "left": 707.6038455610358, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 707.6038455610358, + "y": 250.1480423776727 + }, + { + "x": 760.2137600184957, + "y": 250.1480423776727 + }, + { + "x": 760.2137600184957, + "y": 391.2006900185033 + }, + { + "x": 707.6038455610358, + "y": 391.2006900185033 + } + ] + }, + { + "id": "xO0SIwAW0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 170.5263157894737, + "width": 53.66214549938348, + "left": 563.4525277435265, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 268.0427952816612 + }, + { + "x": 617.11467324291, + "y": 268.0427952816612 + }, + { + "x": 617.11467324291, + "y": 438.5691110711349 + }, + { + "x": 563.4525277435265, + "y": 438.5691110711349 + } + ] + }, + { + "id": "8uAZ1xuw9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 160.00001606188323, + "width": 59.97538725339088, + "left": 417.19689233970405, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 417.19689233970405, + "y": 265.93751606188323 + }, + { + "x": 477.17227959309497, + "y": 265.93751606188323 + }, + { + "x": 477.17227959309497, + "y": 425.93753212376646 + }, + { + "x": 417.19689233970405, + "y": 425.93753212376646 + } + ] + }, + { + "id": "JAxfoSvkN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 65.23630163378544, + "left": 192.0263370838471, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 192.0263370838471, + "y": 228.04277921977797 + }, + { + "x": 257.26263871763257, + "y": 228.04277921977797 + }, + { + "x": 257.26263871763257, + "y": 374.35855263157896 + }, + { + "x": 192.0263370838471, + "y": 374.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "7040360c4eb6e1a69eef0f5efdc47013": { + "asset": { + "id": "7040360c4eb6e1a69eef0f5efdc47013", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49.9 + }, + "regions": [ + { + "id": "CuRJ-4g48", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 70.49736051171394, + "left": 930.6699868988902, + "top": 216.4638157894737 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 216.4638157894737 + }, + { + "x": 1001.1673474106042, + "y": 216.4638157894737 + }, + { + "x": 1001.1673474106042, + "y": 351.20067395662005 + }, + { + "x": 930.6699868988902, + "y": 351.20067395662005 + } + ] + }, + { + "id": "2QQa6-gFm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 123.15789473684211, + "width": 70.49736051171394, + "left": 826.5022926942047, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 826.5022926942047, + "y": 205.93751606188323 + }, + { + "x": 896.9996532059187, + "y": 205.93751606188323 + }, + { + "x": 896.9996532059187, + "y": 329.0954107987253 + }, + { + "x": 826.5022926942047, + "y": 329.0954107987253 + } + ] + }, + { + "id": "QxwlC-Un-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 70.49736051171394, + "left": 772.8401471948213, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 772.8401471948213, + "y": 234.35856869346216 + }, + { + "x": 843.3375077065351, + "y": 234.35856869346216 + }, + { + "x": 843.3375077065351, + "y": 370.1480423776727 + }, + { + "x": 772.8401471948213, + "y": 370.1480423776727 + } + ] + }, + { + "id": "ngrnXSCjd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 163.15786261307565, + "width": 57.870877003699135, + "left": 849.6507012946979, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 849.6507012946979, + "y": 334.3585847553454 + }, + { + "x": 907.521578298397, + "y": 334.3585847553454 + }, + { + "x": 907.521578298397, + "y": 497.51644736842104 + }, + { + "x": 849.6507012946979, + "y": 497.51644736842104 + } + ] + }, + { + "id": "nC7EZIyIy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 150.52628366570724, + "width": 53.66214549938348, + "left": 718.1257706535142, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 718.1257706535142, + "y": 245.93753212376646 + }, + { + "x": 771.7879161528977, + "y": 245.93753212376646 + }, + { + "x": 771.7879161528977, + "y": 396.4638157894737 + }, + { + "x": 718.1257706535142, + "y": 396.4638157894737 + } + ] + }, + { + "id": "4PZ7JVCC7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 157.89473684210526, + "width": 69.44512946979039, + "left": 561.3481619913687, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 282.7796052631579 + }, + { + "x": 630.793291461159, + "y": 282.7796052631579 + }, + { + "x": 630.793291461159, + "y": 440.6743421052632 + }, + { + "x": 561.3481619913687, + "y": 440.6743421052632 + } + ] + }, + { + "id": "8T6etkjbK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 155.78945762232732, + "width": 53.662193665228116, + "left": 426.66668272194823, + "top": 261.727005807977 + }, + "points": [ + { + "x": 426.66668272194823, + "y": 261.727005807977 + }, + { + "x": 480.3288763871763, + "y": 261.727005807977 + }, + { + "x": 480.3288763871763, + "y": 417.51646343030427 + }, + { + "x": 426.66668272194823, + "y": 417.51646343030427 + } + ] + }, + { + "id": "1qih5f72T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 135.78947368421052, + "width": 49.45331766337855, + "left": 204.65272426017262, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 204.65272426017262, + "y": 228.04277921977797 + }, + { + "x": 254.10604192355117, + "y": 228.04277921977797 + }, + { + "x": 254.10604192355117, + "y": 363.8322529039885 + }, + { + "x": 204.65272426017262, + "y": 363.8322529039885 + } + ] + } + ], + "version": "2.2.0" + }, + "c67144b49f6ab61cffc77f4e098fe5ed": { + "asset": { + "id": "c67144b49f6ab61cffc77f4e098fe5ed", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49.75 + }, + "regions": [ + { + "id": "TdYr4YTfp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 53.66214549938348, + "left": 847.5462392108508, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 325.93751606188323 + }, + { + "x": 901.2083847102343, + "y": 325.93751606188323 + }, + { + "x": 901.2083847102343, + "y": 480.6743581671464 + }, + { + "x": 847.5462392108508, + "y": 480.6743581671464 + } + ] + }, + { + "id": "tmN5J_Bps", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 69.44512946979039, + "left": 941.192008323058, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 941.192008323058, + "y": 218.56909500925164 + }, + { + "x": 1010.6371377928483, + "y": 218.56909500925164 + }, + { + "x": 1010.6371377928483, + "y": 366.99014764083057 + }, + { + "x": 941.192008323058, + "y": 366.99014764083057 + } + ] + }, + { + "id": "pixLlaMkW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 136.84208920127466, + "width": 55.76651125154131, + "left": 852.8072980887792, + "top": 209.09541079872534 + }, + "points": [ + { + "x": 852.8072980887792, + "y": 209.09541079872534 + }, + { + "x": 908.5738093403206, + "y": 209.09541079872534 + }, + { + "x": 908.5738093403206, + "y": 345.9375 + }, + { + "x": 852.8072980887792, + "y": 345.9375 + } + ] + }, + { + "id": "QGtPtvLuZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 126.31578947368422, + "width": 61.027473797780516, + "left": 777.0489750308261, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 777.0489750308261, + "y": 242.77963738692435 + }, + { + "x": 838.0764488286067, + "y": 242.77963738692435 + }, + { + "x": 838.0764488286067, + "y": 369.09542686060854 + }, + { + "x": 777.0489750308261, + "y": 369.09542686060854 + } + ] + }, + { + "id": "R2xRGWZA4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.36838892886513, + "width": 64.18416692355117, + "left": 721.2823674475956, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 721.2823674475956, + "y": 242.77963738692435 + }, + { + "x": 785.4665343711467, + "y": 242.77963738692435 + }, + { + "x": 785.4665343711467, + "y": 390.1480263157895 + }, + { + "x": 721.2823674475956, + "y": 390.1480263157895 + } + ] + }, + { + "id": "z31pvGIrS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 155.78950580797698, + "width": 62.07970483970407, + "left": 577.1311459617756, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 276.4638157894737 + }, + { + "x": 639.2108508014796, + "y": 276.4638157894737 + }, + { + "x": 639.2108508014796, + "y": 432.2533215974507 + }, + { + "x": 577.1311459617756, + "y": 432.2533215974507 + } + ] + }, + { + "id": "Jn9Gjfqrw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 155.78945762232732, + "width": 71.54949522194822, + "left": 412.9881126695438, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 412.9881126695438, + "y": 255.41121633429276 + }, + { + "x": 484.537607891492, + "y": 255.41121633429276 + }, + { + "x": 484.537607891492, + "y": 411.20067395662005 + }, + { + "x": 412.9881126695438, + "y": 411.20067395662005 + } + ] + }, + { + "id": "EYTJriifr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 63.13193588162762, + "left": 198.33953067200986, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 198.33953067200986, + "y": 226.99016370271383 + }, + { + "x": 261.47146655363747, + "y": 226.99016370271383 + }, + { + "x": 261.47146655363747, + "y": 375.41121633429276 + }, + { + "x": 198.33953067200986, + "y": 375.41121633429276 + } + ] + } + ], + "version": "2.2.0" + }, + "8d4e334f202ce360243a6c8895e93824": { + "asset": { + "id": "8d4e334f202ce360243a6c8895e93824", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49.6 + }, + "regions": [ + { + "id": "_ywLpOGgd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 176.8421052631579, + "width": 57.87097333538841, + "left": 831.7632552404439, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 831.7632552404439, + "y": 334.3585847553454 + }, + { + "x": 889.6342285758324, + "y": 334.3585847553454 + }, + { + "x": 889.6342285758324, + "y": 511.2006900185033 + }, + { + "x": 831.7632552404439, + "y": 511.2006900185033 + } + ] + }, + { + "id": "03nZbEmj-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 138.94736842105263, + "width": 47.348951911220716, + "left": 943.2963740752158, + "top": 216.4638157894737 + }, + "points": [ + { + "x": 943.2963740752158, + "y": 216.4638157894737 + }, + { + "x": 990.6453259864365, + "y": 216.4638157894737 + }, + { + "x": 990.6453259864365, + "y": 355.4111842105263 + }, + { + "x": 943.2963740752158, + "y": 355.4111842105263 + } + ] + }, + { + "id": "v6bJ-X5NO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36845317639803, + "width": 65.23630163378544, + "left": 833.867717324291, + "top": 213.3059210526316 + }, + "points": [ + { + "x": 833.867717324291, + "y": 213.3059210526316 + }, + { + "x": 899.1040189580765, + "y": 213.3059210526316 + }, + { + "x": 899.1040189580765, + "y": 340.67437422902964 + }, + { + "x": 833.867717324291, + "y": 340.67437422902964 + } + ] + }, + { + "id": "YjDxfDQLx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26312577097039, + "width": 53.66214549938348, + "left": 783.3621686189889, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 783.3621686189889, + "y": 236.46384791324013 + }, + { + "x": 837.0243141183724, + "y": 236.46384791324013 + }, + { + "x": 837.0243141183724, + "y": 361.7269736842105 + }, + { + "x": 783.3621686189889, + "y": 361.7269736842105 + } + ] + }, + { + "id": "o6VpFxEOW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 147.3684371145148, + "width": 70.49736051171394, + "left": 702.3427866831073, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 702.3427866831073, + "y": 241.72697368421052 + }, + { + "x": 772.8401471948213, + "y": 241.72697368421052 + }, + { + "x": 772.8401471948213, + "y": 389.0954107987253 + }, + { + "x": 702.3427866831073, + "y": 389.0954107987253 + } + ] + }, + { + "id": "RW8wnDPoy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 155.78945762232732, + "width": 72.60172626387177, + "left": 547.6695437731196, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 547.6695437731196, + "y": 283.8322689658717 + }, + { + "x": 620.2712700369914, + "y": 283.8322689658717 + }, + { + "x": 620.2712700369914, + "y": 439.621726588199 + }, + { + "x": 547.6695437731196, + "y": 439.621726588199 + } + ] + }, + { + "id": "HuglpGJnU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 57.870925169543774, + "left": 420.35348913378544, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 420.35348913378544, + "y": 264.88490054481906 + }, + { + "x": 478.22441430332924, + "y": 264.88490054481906 + }, + { + "x": 478.22441430332924, + "y": 413.305953176398 + }, + { + "x": 420.35348913378544, + "y": 413.305953176398 + } + ] + }, + { + "id": "Nf3IRvUEW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 145.26315789473685, + "width": 63.13193588162762, + "left": 189.92192316584465, + "top": 216.4638157894737 + }, + "points": [ + { + "x": 189.92192316584465, + "y": 216.4638157894737 + }, + { + "x": 253.05385904747226, + "y": 216.4638157894737 + }, + { + "x": 253.05385904747226, + "y": 361.7269736842105 + }, + { + "x": 189.92192316584465, + "y": 361.7269736842105 + } + ] + } + ], + "version": "2.2.0" + }, + "21c2397f06b12a1eaa4e4490a0ba312b": { + "asset": { + "id": "21c2397f06b12a1eaa4e4490a0ba312b", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49.45 + }, + "regions": [ + { + "id": "uSKYcapEe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 58.92310804562269, + "left": 940.1397772811345, + "top": 206.99013157894737 + }, + "points": [ + { + "x": 940.1397772811345, + "y": 206.99013157894737 + }, + { + "x": 999.062885326757, + "y": 206.99013157894737 + }, + { + "x": 999.062885326757, + "y": 361.7269736842105 + }, + { + "x": 940.1397772811345, + "y": 361.7269736842105 + } + ] + }, + { + "id": "FBpXWa_IL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 150.52628366570724, + "width": 56.81874229346486, + "left": 847.5462392108508, + "top": 214.3585847553454 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 214.3585847553454 + }, + { + "x": 904.3649815043157, + "y": 214.3585847553454 + }, + { + "x": 904.3649815043157, + "y": 364.88486842105266 + }, + { + "x": 847.5462392108508, + "y": 364.88486842105266 + } + ] + }, + { + "id": "Pz94hZUUw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 164.21052631578948, + "width": 57.87097333538841, + "left": 826.5022926942047, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 826.5022926942047, + "y": 333.30592105263156 + }, + { + "x": 884.3732660295931, + "y": 333.30592105263156 + }, + { + "x": 884.3732660295931, + "y": 497.51644736842104 + }, + { + "x": 826.5022926942047, + "y": 497.51644736842104 + } + ] + }, + { + "id": "YSTlfOsvD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.2105423776727, + "width": 56.81874229346486, + "left": 780.2055718249076, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 780.2055718249076, + "y": 237.51646343030427 + }, + { + "x": 837.0243141183724, + "y": 237.51646343030427 + }, + { + "x": 837.0243141183724, + "y": 381.727005807977 + }, + { + "x": 780.2055718249076, + "y": 381.727005807977 + } + ] + }, + { + "id": "JxIIgc6Xa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 62.07970483970407, + "left": 719.1780016954377, + "top": 239.62174265008224 + }, + "points": [ + { + "x": 719.1780016954377, + "y": 239.62174265008224 + }, + { + "x": 781.2577065351418, + "y": 239.62174265008224 + }, + { + "x": 781.2577065351418, + "y": 385.93751606188323 + }, + { + "x": 719.1780016954377, + "y": 385.93751606188323 + } + ] + }, + { + "id": "6FucmTkxT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 153.68417840254935, + "width": 82.07151664611591, + "left": 543.4608122688039, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 543.4608122688039, + "y": 283.8322689658717 + }, + { + "x": 625.5323289149198, + "y": 283.8322689658717 + }, + { + "x": 625.5323289149198, + "y": 437.51644736842104 + }, + { + "x": 543.4608122688039, + "y": 437.51644736842104 + } + ] + }, + { + "id": "LJHnhdMUs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 168.42103656969573, + "width": 65.23639796547472, + "left": 411.93588162762023, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 411.93588162762023, + "y": 249.09542686060857 + }, + { + "x": 477.17227959309497, + "y": 249.09542686060857 + }, + { + "x": 477.17227959309497, + "y": 417.51646343030427 + }, + { + "x": 411.93588162762023, + "y": 417.51646343030427 + } + ] + }, + { + "id": "PC84wgzGj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73685816714638, + "width": 69.44512946979039, + "left": 176.2433531134402, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 176.2433531134402, + "y": 218.56909500925164 + }, + { + "x": 245.68848258323058, + "y": 218.56909500925164 + }, + { + "x": 245.68848258323058, + "y": 353.305953176398 + }, + { + "x": 176.2433531134402, + "y": 353.305953176398 + } + ] + }, + { + "id": "chuYyD6S_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 0, + "width": 1.0522310419235512, + "left": 582.3921085080148, + "top": 457.5164794921875 + }, + "points": [ + { + "x": 582.3921085080148, + "y": 457.5164794921875 + }, + { + "x": 583.4443395499384, + "y": 457.5164794921875 + }, + { + "x": 583.4443395499384, + "y": 457.5164794921875 + }, + { + "x": 582.3921085080148, + "y": 457.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "6bf633859855316a666ba02ca88c2a4d": { + "asset": { + "id": "6bf633859855316a666ba02ca88c2a4d", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49.3 + }, + "regions": [ + { + "id": "0WBtjz6-x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0526476408306, + "width": 52.60991445745993, + "left": 943.2963740752158, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 943.2963740752158, + "y": 212.25330553556745 + }, + { + "x": 995.9062885326757, + "y": 212.25330553556745 + }, + { + "x": 995.9062885326757, + "y": 353.305953176398 + }, + { + "x": 943.2963740752158, + "y": 353.305953176398 + } + ] + }, + { + "id": "JHuCKzdz7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26312577097039, + "width": 55.76660758323058, + "left": 841.233045622688, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 841.233045622688, + "y": 211.20069001850328 + }, + { + "x": 896.9996532059187, + "y": 211.20069001850328 + }, + { + "x": 896.9996532059187, + "y": 336.4638157894737 + }, + { + "x": 841.233045622688, + "y": 336.4638157894737 + } + ] + }, + { + "id": "v177hM4Va", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 130.52629972759047, + "width": 45.24448982737361, + "left": 767.579184648582, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 767.579184648582, + "y": 230.1480584395559 + }, + { + "x": 812.8236744759556, + "y": 230.1480584395559 + }, + { + "x": 812.8236744759556, + "y": 360.6743581671464 + }, + { + "x": 767.579184648582, + "y": 360.6743581671464 + } + ] + }, + { + "id": "8OEfxyY42", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 149.4736681486431, + "width": 57.870877003699135, + "left": 704.4472487669544, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 704.4472487669544, + "y": 243.8322529039885 + }, + { + "x": 762.3181257706535, + "y": 243.8322529039885 + }, + { + "x": 762.3181257706535, + "y": 393.30592105263156 + }, + { + "x": 704.4472487669544, + "y": 393.30592105263156 + } + ] + }, + { + "id": "dqU3qQBnc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.2105423776727, + "width": 65.23630163378544, + "left": 532.9387908446363, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 276.4638157894737 + }, + { + "x": 598.1750924784217, + "y": 276.4638157894737 + }, + { + "x": 598.1750924784217, + "y": 420.6743581671464 + }, + { + "x": 532.9387908446363, + "y": 420.6743581671464 + } + ] + }, + { + "id": "vMX3YJOfp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 182.10527921977797, + "width": 86.28034448212084, + "left": 374.05672009864367, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 374.05672009864367, + "y": 246.9901476408306 + }, + { + "x": 460.3370645807645, + "y": 246.9901476408306 + }, + { + "x": 460.3370645807645, + "y": 429.09542686060854 + }, + { + "x": 374.05672009864367, + "y": 429.09542686060854 + } + ] + }, + { + "id": "BRRkbcZjA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 158.9473523591694, + "width": 49.45336582922318, + "left": 189.92192316584465, + "top": 221.72698974609375 + }, + "points": [ + { + "x": 189.92192316584465, + "y": 221.72698974609375 + }, + { + "x": 239.37528899506782, + "y": 221.72698974609375 + }, + { + "x": 239.37528899506782, + "y": 380.6743421052632 + }, + { + "x": 189.92192316584465, + "y": 380.6743421052632 + } + ] + }, + { + "id": "0-pCRiSVU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 201.0526476408306, + "width": 71.54959155363748, + "left": 812.8236744759556, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 812.8236744759556, + "y": 310.1480423776727 + }, + { + "x": 884.3732660295931, + "y": 310.1480423776727 + }, + { + "x": 884.3732660295931, + "y": 511.2006900185033 + }, + { + "x": 812.8236744759556, + "y": 511.2006900185033 + } + ] + } + ], + "version": "2.2.0" + }, + "063a9ece475a0e8c4d02ab5be31e3eca": { + "asset": { + "id": "063a9ece475a0e8c4d02ab5be31e3eca", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49.15 + }, + "regions": [ + { + "id": "-oXatGdXv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 127.36840499074836, + "width": 63.13193588162762, + "left": 918.0435997225647, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 918.0435997225647, + "y": 211.20069001850328 + }, + { + "x": 981.1755356041924, + "y": 211.20069001850328 + }, + { + "x": 981.1755356041924, + "y": 338.56909500925167 + }, + { + "x": 918.0435997225647, + "y": 338.56909500925167 + } + ] + }, + { + "id": "_oejayM4P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 63.13193588162762, + "left": 841.233045622688, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 841.233045622688, + "y": 200.67434210526315 + }, + { + "x": 904.3649815043157, + "y": 200.67434210526315 + }, + { + "x": 904.3649815043157, + "y": 355.4111842105263 + }, + { + "x": 841.233045622688, + "y": 355.4111842105263 + } + ] + }, + { + "id": "KOUjWD2IU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.31582159745065, + "width": 50.5055487053021, + "left": 817.0325023119606, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 817.0325023119606, + "y": 314.35855263157896 + }, + { + "x": 867.5380510172627, + "y": 314.35855263157896 + }, + { + "x": 867.5380510172627, + "y": 460.67437422902964 + }, + { + "x": 817.0325023119606, + "y": 460.67437422902964 + } + ] + }, + { + "id": "HiXk79Ffn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 145.26315789473685, + "width": 57.87097333538841, + "left": 760.2137600184957, + "top": 239.62174265008224 + }, + "points": [ + { + "x": 760.2137600184957, + "y": 239.62174265008224 + }, + { + "x": 818.0847333538841, + "y": 239.62174265008224 + }, + { + "x": 818.0847333538841, + "y": 384.88490054481906 + }, + { + "x": 760.2137600184957, + "y": 384.88490054481906 + } + ] + }, + { + "id": "eYJ-0l2HW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 137.8947529039885, + "width": 61.027570129469794, + "left": 693.9252273427867, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 693.9252273427867, + "y": 241.72697368421052 + }, + { + "x": 754.9527974722565, + "y": 241.72697368421052 + }, + { + "x": 754.9527974722565, + "y": 379.621726588199 + }, + { + "x": 693.9252273427867, + "y": 379.621726588199 + } + ] + }, + { + "id": "BnZCagsXf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 165.26314183285362, + "width": 71.54949522194822, + "left": 526.6255972564735, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 526.6255972564735, + "y": 275.41120027240953 + }, + { + "x": 598.1750924784217, + "y": 275.41120027240953 + }, + { + "x": 598.1750924784217, + "y": 440.6743421052632 + }, + { + "x": 526.6255972564735, + "y": 440.6743421052632 + } + ] + }, + { + "id": "U7kIWTP16", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 160.00001606188323, + "width": 55.76651125154131, + "left": 384.57874152281136, + "top": 244.88486842105263 + }, + "points": [ + { + "x": 384.57874152281136, + "y": 244.88486842105263 + }, + { + "x": 440.3452527743527, + "y": 244.88486842105263 + }, + { + "x": 440.3452527743527, + "y": 404.8848844829359 + }, + { + "x": 384.57874152281136, + "y": 404.8848844829359 + } + ] + }, + { + "id": "jd31t4J4x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 142.10526315789474, + "width": 64.18411875770654, + "left": 177.29553598951912, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 177.29553598951912, + "y": 224.88488448293586 + }, + { + "x": 241.47965474722565, + "y": 224.88488448293586 + }, + { + "x": 241.47965474722565, + "y": 366.99014764083057 + }, + { + "x": 177.29553598951912, + "y": 366.99014764083057 + } + ] + } + ], + "version": "2.2.0" + }, + "6ede942beba72753fb2ad6e4e4c1060a": { + "asset": { + "id": "6ede942beba72753fb2ad6e4e4c1060a", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=49.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=49", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 49 + }, + "regions": [ + { + "id": "ndiN5ICar", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 59.97533908754624, + "left": 942.2441430332923, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 942.2441430332923, + "y": 211.20069001850328 + }, + { + "x": 1002.2194821208385, + "y": 211.20069001850328 + }, + { + "x": 1002.2194821208385, + "y": 354.3585686934622 + }, + { + "x": 942.2441430332923, + "y": 354.3585686934622 + } + ] + }, + { + "id": "-eXGuUI-L", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 137.89470471833883, + "width": 69.44512946979039, + "left": 834.9198520345253, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 834.9198520345253, + "y": 211.20069001850328 + }, + { + "x": 904.3649815043157, + "y": 211.20069001850328 + }, + { + "x": 904.3649815043157, + "y": 349.09539473684214 + }, + { + "x": 834.9198520345253, + "y": 349.09539473684214 + } + ] + }, + { + "id": "KOJNLFjr3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 111.5789794921875, + "width": 38.93139257090012, + "left": 779.153340782984, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 779.153340782984, + "y": 241.72697368421052 + }, + { + "x": 818.0847333538841, + "y": 241.72697368421052 + }, + { + "x": 818.0847333538841, + "y": 353.305953176398 + }, + { + "x": 779.153340782984, + "y": 353.305953176398 + } + ] + }, + { + "id": "P-puN2n6H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 169.47370027240953, + "width": 65.23630163378544, + "left": 808.61494297164, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 808.61494297164, + "y": 320.6743421052632 + }, + { + "x": 873.8512446054254, + "y": 320.6743421052632 + }, + { + "x": 873.8512446054254, + "y": 490.1480423776727 + }, + { + "x": 808.61494297164, + "y": 490.1480423776727 + } + ] + }, + { + "id": "2Gtxsc6o7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 169.47370027240953, + "width": 44.192355117139336, + "left": 708.6559802712701, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 708.6559802712701, + "y": 235.41118421052633 + }, + { + "x": 752.8483353884094, + "y": 235.41118421052633 + }, + { + "x": 752.8483353884094, + "y": 404.8848844829359 + }, + { + "x": 708.6559802712701, + "y": 404.8848844829359 + } + ] + }, + { + "id": "aH-9DOyIG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 125.26317395662007, + "width": 56.81874229346486, + "left": 530.8344250924785, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 530.8344250924785, + "y": 288.04277921977797 + }, + { + "x": 587.6531673859433, + "y": 288.04277921977797 + }, + { + "x": 587.6531673859433, + "y": 413.305953176398 + }, + { + "x": 530.8344250924785, + "y": 413.305953176398 + } + ] + }, + { + "id": "B9uvJV46d", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 178.94738448293586, + "width": 48.40113478729963, + "left": 398.2573115752158, + "top": 241.72697368421052 + }, + "points": [ + { + "x": 398.2573115752158, + "y": 241.72697368421052 + }, + { + "x": 446.6584463625154, + "y": 241.72697368421052 + }, + { + "x": 446.6584463625154, + "y": 420.6743581671464 + }, + { + "x": 398.2573115752158, + "y": 420.6743581671464 + } + ] + }, + { + "id": "qCHI_oAVY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 129.47368421052633, + "width": 53.66214549938348, + "left": 181.5043156596794, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 181.5043156596794, + "y": 220.6743742290296 + }, + { + "x": 235.1664611590629, + "y": 220.6743742290296 + }, + { + "x": 235.1664611590629, + "y": 350.14805843955594 + }, + { + "x": 181.5043156596794, + "y": 350.14805843955594 + } + ] + } + ], + "version": "2.2.0" + }, + "83b70019813ce7e25b169bbb446bfa2e": { + "asset": { + "id": "83b70019813ce7e25b169bbb446bfa2e", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=48.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=48.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 48.85 + }, + "regions": [ + { + "id": "zjpyI_TBK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 168.4210847553454, + "width": 55.76660758323058, + "left": 793.8840937114674, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 793.8840937114674, + "y": 320.6743421052632 + }, + { + "x": 849.6507012946979, + "y": 320.6743421052632 + }, + { + "x": 849.6507012946979, + "y": 489.09542686060854 + }, + { + "x": 793.8840937114674, + "y": 489.09542686060854 + } + ] + }, + { + "id": "G7qVIMJQC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 134.73680998149672, + "width": 44.192355117139336, + "left": 951.7139334155364, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 951.7139334155364, + "y": 220.6743742290296 + }, + { + "x": 995.9062885326757, + "y": 220.6743742290296 + }, + { + "x": 995.9062885326757, + "y": 355.4111842105263 + }, + { + "x": 951.7139334155364, + "y": 355.4111842105263 + } + ] + }, + { + "id": "Tl1FdNr5K", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 163.1578867059005, + "width": 58.92310804562269, + "left": 851.7550670468557, + "top": 201.72698171515214 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 201.72698171515214 + }, + { + "x": 910.6781750924785, + "y": 201.72698171515214 + }, + { + "x": 910.6781750924785, + "y": 364.88486842105266 + }, + { + "x": 851.7550670468557, + "y": 364.88486842105266 + } + ] + }, + { + "id": "wyOTEPfLj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 143.15787867495888, + "width": 56.81874229346486, + "left": 758.1093942663379, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 758.1093942663379, + "y": 233.30595317639802 + }, + { + "x": 814.9281365598027, + "y": 233.30595317639802 + }, + { + "x": 814.9281365598027, + "y": 376.46383185135693 + }, + { + "x": 758.1093942663379, + "y": 376.46383185135693 + } + ] + }, + { + "id": "WPMp4YPUJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 141.0526476408306, + "width": 48.401182953144264, + "left": 705.4993834771886, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 705.4993834771886, + "y": 237.51646343030427 + }, + { + "x": 753.9005664303329, + "y": 237.51646343030427 + }, + { + "x": 753.9005664303329, + "y": 378.5691110711349 + }, + { + "x": 705.4993834771886, + "y": 378.5691110711349 + } + ] + }, + { + "id": "3-OQmXHAj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 166.31580553556745, + "width": 79.9670545622688, + "left": 518.2080379161529, + "top": 270.1480263157895 + }, + "points": [ + { + "x": 518.2080379161529, + "y": 270.1480263157895 + }, + { + "x": 598.1750924784217, + "y": 270.1480263157895 + }, + { + "x": 598.1750924784217, + "y": 436.46383185135693 + }, + { + "x": 518.2080379161529, + "y": 436.46383185135693 + } + ] + }, + { + "id": "oZjpseZnM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 169.47365208675987, + "width": 61.027521963625155, + "left": 379.3177308107275, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 379.3177308107275, + "y": 245.93753212376646 + }, + { + "x": 440.3452527743527, + "y": 245.93753212376646 + }, + { + "x": 440.3452527743527, + "y": 415.4111842105263 + }, + { + "x": 379.3177308107275, + "y": 415.4111842105263 + } + ] + }, + { + "id": "VermwmBNa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 167.3684210526316, + "width": 56.81874229346486, + "left": 173.0867563193588, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 173.0867563193588, + "y": 218.56909500925164 + }, + { + "x": 229.90549861282366, + "y": 218.56909500925164 + }, + { + "x": 229.90549861282366, + "y": 385.93751606188323 + }, + { + "x": 173.0867563193588, + "y": 385.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "0cc78501ade176a0a45e2ccb5be5b776": { + "asset": { + "id": "0cc78501ade176a0a45e2ccb5be5b776", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=48.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=48.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 48.7 + }, + "regions": [ + { + "id": "1uV1CEbda", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 153.684226588199, + "width": 68.39289842786683, + "left": 944.3486051171393, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 210.14802631578948 + }, + { + "x": 1012.7415035450061, + "y": 210.14802631578948 + }, + { + "x": 1012.7415035450061, + "y": 363.8322529039885 + }, + { + "x": 944.3486051171393, + "y": 363.8322529039885 + } + ] + }, + { + "id": "4beSpjX2R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 74.7060920160296, + "left": 851.7550670468557, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 205.93751606188323 + }, + { + "x": 926.4611590628854, + "y": 205.93751606188323 + }, + { + "x": 926.4611590628854, + "y": 354.3585686934622 + }, + { + "x": 851.7550670468557, + "y": 354.3585686934622 + } + ] + }, + { + "id": "FpWAAa6Fg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 101.05263157894737, + "width": 56.81874229346486, + "left": 761.2659910604192, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 761.2659910604192, + "y": 228.04277921977797 + }, + { + "x": 818.0847333538841, + "y": 228.04277921977797 + }, + { + "x": 818.0847333538841, + "y": 329.0954107987253 + }, + { + "x": 761.2659910604192, + "y": 329.0954107987253 + } + ] + }, + { + "id": "z8Pg66hy0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 152.6315628854852, + "width": 61.027473797780516, + "left": 780.2055718249076, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 780.2055718249076, + "y": 316.46383185135693 + }, + { + "x": 841.233045622688, + "y": 316.46383185135693 + }, + { + "x": 841.233045622688, + "y": 469.09539473684214 + }, + { + "x": 780.2055718249076, + "y": 469.09539473684214 + } + ] + }, + { + "id": "AIZechpv2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 169.47365208675987, + "width": 66.288532675709, + "left": 690.7686305487053, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 690.7686305487053, + "y": 236.46384791324013 + }, + { + "x": 757.0571632244144, + "y": 236.46384791324013 + }, + { + "x": 757.0571632244144, + "y": 405.9375 + }, + { + "x": 690.7686305487053, + "y": 405.9375 + } + ] + }, + { + "id": "qOAMfCOxA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 160.00001606188323, + "width": 67.34076371763256, + "left": 520.3124036683107, + "top": 269.0954107987253 + }, + "points": [ + { + "x": 520.3124036683107, + "y": 269.0954107987253 + }, + { + "x": 587.6531673859433, + "y": 269.0954107987253 + }, + { + "x": 587.6531673859433, + "y": 429.09542686060854 + }, + { + "x": 520.3124036683107, + "y": 429.09542686060854 + } + ] + }, + { + "id": "MMR02kxDP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 171.57893130653784, + "width": 64.18411875770654, + "left": 373.00453722256475, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 373.00453722256475, + "y": 242.77963738692435 + }, + { + "x": 437.1886559802713, + "y": 242.77963738692435 + }, + { + "x": 437.1886559802713, + "y": 414.3585686934622 + }, + { + "x": 373.00453722256475, + "y": 414.3585686934622 + } + ] + }, + { + "id": "WbZV8k3sY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 139.99998393811677, + "width": 72.60172626387177, + "left": 173.0867563193588, + "top": 228.04277921977797 + }, + "points": [ + { + "x": 173.0867563193588, + "y": 228.04277921977797 + }, + { + "x": 245.68848258323058, + "y": 228.04277921977797 + }, + { + "x": 245.68848258323058, + "y": 368.04276315789474 + }, + { + "x": 173.0867563193588, + "y": 368.04276315789474 + } + ] + } + ], + "version": "2.2.0" + }, + "2ca2a7ef5a507a94c24d7f8ea5bccecb": { + "asset": { + "id": "2ca2a7ef5a507a94c24d7f8ea5bccecb", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=48.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=48.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 48.55 + }, + "regions": [ + { + "id": "F9XLRDVgX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 149.4736681486431, + "width": 59.97533908754624, + "left": 953.8183954993835, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 953.8183954993835, + "y": 212.25330553556745 + }, + { + "x": 1013.7937345869298, + "y": 212.25330553556745 + }, + { + "x": 1013.7937345869298, + "y": 361.7269736842105 + }, + { + "x": 953.8183954993835, + "y": 361.7269736842105 + } + ] + }, + { + "id": "MljDFf4ow", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 163.1578867059005, + "width": 67.34076371763256, + "left": 854.9116638409371, + "top": 198.56908697831003 + }, + "points": [ + { + "x": 854.9116638409371, + "y": 198.56908697831003 + }, + { + "x": 922.2524275585697, + "y": 198.56908697831003 + }, + { + "x": 922.2524275585697, + "y": 361.7269736842105 + }, + { + "x": 854.9116638409371, + "y": 361.7269736842105 + } + ] + }, + { + "id": "EXYeGsgJ9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.315773411801, + "width": 57.87097333538841, + "left": 787.5709001233046, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 787.5709001233046, + "y": 312.2533215974507 + }, + { + "x": 845.441873458693, + "y": 312.2533215974507 + }, + { + "x": 845.441873458693, + "y": 458.56909500925167 + }, + { + "x": 787.5709001233046, + "y": 458.56909500925167 + } + ] + }, + { + "id": "deMly6j7d", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89470471833882, + "width": 42.0879893649815, + "left": 778.1011097410604, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 778.1011097410604, + "y": 242.77963738692435 + }, + { + "x": 820.1890991060419, + "y": 242.77963738692435 + }, + { + "x": 820.1890991060419, + "y": 320.6743421052632 + }, + { + "x": 778.1011097410604, + "y": 320.6743421052632 + } + ] + }, + { + "id": "UkW7LW0zz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 145.26315789473685, + "width": 81.01928560419236, + "left": 679.1944744143034, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 679.1944744143034, + "y": 234.35856869346216 + }, + { + "x": 760.2137600184957, + "y": 234.35856869346216 + }, + { + "x": 760.2137600184957, + "y": 379.621726588199 + }, + { + "x": 679.1944744143034, + "y": 379.621726588199 + } + ] + }, + { + "id": "KCVyPxXKj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 157.89473684210526, + "width": 51.557683415536374, + "left": 540.3042154747226, + "top": 263.83223684210526 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 263.83223684210526 + }, + { + "x": 591.861898890259, + "y": 263.83223684210526 + }, + { + "x": 591.861898890259, + "y": 421.7269736842105 + }, + { + "x": 540.3042154747226, + "y": 421.7269736842105 + } + ] + }, + { + "id": "YJ7uzjKwE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 160.00001606188323, + "width": 81.019333770037, + "left": 366.69134363440196, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 366.69134363440196, + "y": 251.20065789473685 + }, + { + "x": 447.71067740443897, + "y": 251.20065789473685 + }, + { + "x": 447.71067740443897, + "y": 411.20067395662005 + }, + { + "x": 366.69134363440196, + "y": 411.20067395662005 + } + ] + }, + { + "id": "9WOinD0Qq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 58.92310804562269, + "left": 182.55654670160297, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 182.55654670160297, + "y": 212.25330553556745 + }, + { + "x": 241.47965474722565, + "y": 212.25330553556745 + }, + { + "x": 241.47965474722565, + "y": 366.99014764083057 + }, + { + "x": 182.55654670160297, + "y": 366.99014764083057 + } + ] + } + ], + "version": "2.2.0" + }, + "9ce0a06cbae5a0e051dca4179e500a76": { + "asset": { + "id": "9ce0a06cbae5a0e051dca4179e500a76", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=48.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=48.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 48.4 + }, + "regions": [ + { + "id": "9D9lnu759", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 144.21049419202302, + "width": 52.60991445745993, + "left": 952.7661644574599, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 952.7661644574599, + "y": 208.0427952816612 + }, + { + "x": 1005.3760789149198, + "y": 208.0427952816612 + }, + { + "x": 1005.3760789149198, + "y": 352.2532894736842 + }, + { + "x": 952.7661644574599, + "y": 352.2532894736842 + } + ] + }, + { + "id": "lP6y8xrCf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 155.78945762232732, + "width": 62.07970483970407, + "left": 855.9638948828607, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 204.8849005448191 + }, + { + "x": 918.0435997225647, + "y": 204.8849005448191 + }, + { + "x": 918.0435997225647, + "y": 360.6743581671464 + }, + { + "x": 855.9638948828607, + "y": 360.6743581671464 + } + ] + }, + { + "id": "78zgcbnNB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.2105423776727, + "width": 63.13193588162762, + "left": 764.4225878545006, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 764.4225878545006, + "y": 235.41118421052633 + }, + { + "x": 827.5545237361282, + "y": 235.41118421052633 + }, + { + "x": 827.5545237361282, + "y": 319.621726588199 + }, + { + "x": 764.4225878545006, + "y": 319.621726588199 + } + ] + }, + { + "id": "O5hZHMh2e", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 168.42103656969573, + "width": 71.54949522194822, + "left": 766.5269536066585, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 766.5269536066585, + "y": 309.09542686060854 + }, + { + "x": 838.0764488286067, + "y": 309.09542686060854 + }, + { + "x": 838.0764488286067, + "y": 477.51646343030427 + }, + { + "x": 766.5269536066585, + "y": 477.51646343030427 + } + ] + }, + { + "id": "Bl2kq-6Si", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 153.684226588199, + "width": 65.23639796547472, + "left": 692.8729963008632, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 692.8729963008632, + "y": 234.35856869346216 + }, + { + "x": 758.1093942663379, + "y": 234.35856869346216 + }, + { + "x": 758.1093942663379, + "y": 388.0427952816612 + }, + { + "x": 692.8729963008632, + "y": 388.0427952816612 + } + ] + }, + { + "id": "yIT54Q1xT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 167.3684210526316, + "width": 70.49726418002466, + "left": 511.89484432799014, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 511.89484432799014, + "y": 268.0427952816612 + }, + { + "x": 582.3921085080148, + "y": 268.0427952816612 + }, + { + "x": 582.3921085080148, + "y": 435.41121633429276 + }, + { + "x": 511.89484432799014, + "y": 435.41121633429276 + } + ] + }, + { + "id": "f4OckAZuo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 165.26314183285362, + "width": 66.288532675709, + "left": 373.00453722256475, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 373.00453722256475, + "y": 243.8322529039885 + }, + { + "x": 439.29306989827376, + "y": 243.8322529039885 + }, + { + "x": 439.29306989827376, + "y": 409.09539473684214 + }, + { + "x": 373.00453722256475, + "y": 409.09539473684214 + } + ] + }, + { + "id": "9rpw2RWfH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 169.47370027240953, + "width": 63.13193588162762, + "left": 180.4521327836005, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 180.4521327836005, + "y": 215.41120027240953 + }, + { + "x": 243.58406866522813, + "y": 215.41120027240953 + }, + { + "x": 243.58406866522813, + "y": 384.88490054481906 + }, + { + "x": 180.4521327836005, + "y": 384.88490054481906 + } + ] + } + ], + "version": "2.2.0" + }, + "d71d373e9bc9218b75281c33c7cbce88": { + "asset": { + "id": "d71d373e9bc9218b75281c33c7cbce88", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=48.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=48.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 48.25 + }, + "regions": [ + { + "id": "cjcfG_6Rp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 145.26315789473685, + "width": 55.76651125154131, + "left": 952.7661644574599, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 952.7661644574599, + "y": 211.20069001850328 + }, + { + "x": 1008.5326757090013, + "y": 211.20069001850328 + }, + { + "x": 1008.5326757090013, + "y": 356.46384791324016 + }, + { + "x": 952.7661644574599, + "y": 356.46384791324016 + } + ] + }, + { + "id": "TLXSkE6Rv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 151.57894736842104, + "width": 65.23630163378544, + "left": 859.120491676942, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 859.120491676942, + "y": 204.8849005448191 + }, + { + "x": 924.3567933107275, + "y": 204.8849005448191 + }, + { + "x": 924.3567933107275, + "y": 356.46384791324016 + }, + { + "x": 859.120491676942, + "y": 356.46384791324016 + } + ] + }, + { + "id": "yVoCrCD3G", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 78.94736842105263, + "width": 57.87097333538841, + "left": 757.0571632244144, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 757.0571632244144, + "y": 230.1480584395559 + }, + { + "x": 814.9281365598027, + "y": 230.1480584395559 + }, + { + "x": 814.9281365598027, + "y": 309.09542686060854 + }, + { + "x": 757.0571632244144, + "y": 309.09542686060854 + } + ] + }, + { + "id": "dpPWNGJ4j", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 148.42105263157896, + "width": 69.44512946979039, + "left": 746.5351418002466, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 309.09542686060854 + }, + { + "x": 815.980271270037, + "y": 309.09542686060854 + }, + { + "x": 815.980271270037, + "y": 457.5164794921875 + }, + { + "x": 746.5351418002466, + "y": 457.5164794921875 + } + ] + }, + { + "id": "G2n5sq-8H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 146.31582159745065, + "width": 41.035758323057955, + "left": 699.1861898890259, + "top": 222.7796052631579 + }, + "points": [ + { + "x": 699.1861898890259, + "y": 222.7796052631579 + }, + { + "x": 740.2219482120838, + "y": 222.7796052631579 + }, + { + "x": 740.2219482120838, + "y": 369.09542686060854 + }, + { + "x": 699.1861898890259, + "y": 369.09542686060854 + } + ] + }, + { + "id": "SjabCXvTD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 154.73684210526315, + "width": 71.54949522194822, + "left": 501.37282290382245, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 501.37282290382245, + "y": 268.0427952816612 + }, + { + "x": 572.9223181257706, + "y": 268.0427952816612 + }, + { + "x": 572.9223181257706, + "y": 422.7796373869243 + }, + { + "x": 501.37282290382245, + "y": 422.7796373869243 + } + ] + }, + { + "id": "P3tTSIDVx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 180, + "width": 66.288532675709, + "left": 362.4825639642417, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 362.4825639642417, + "y": 235.41118421052633 + }, + { + "x": 428.77109663995066, + "y": 235.41118421052633 + }, + { + "x": 428.77109663995066, + "y": 415.4111842105263 + }, + { + "x": 362.4825639642417, + "y": 415.4111842105263 + } + ] + }, + { + "id": "VLQJIrlid", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 145.26315789473685, + "width": 54.714328375462394, + "left": 179.39994990752157, + "top": 217.5164794921875 + }, + "points": [ + { + "x": 179.39994990752157, + "y": 217.5164794921875 + }, + { + "x": 234.11427828298397, + "y": 217.5164794921875 + }, + { + "x": 234.11427828298397, + "y": 362.7796373869243 + }, + { + "x": 179.39994990752157, + "y": 362.7796373869243 + } + ] + } + ], + "version": "2.2.0" + }, + "be423857b99bc0cc13e7c2d5a2fcf2a4": { + "asset": { + "id": "be423857b99bc0cc13e7c2d5a2fcf2a4", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=48.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=48.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 48.1 + }, + "regions": [ + { + "id": "TEHOypUMS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 161.05263157894737, + "width": 57.87097333538841, + "left": 734.9609856658446, + "top": 298.56907894736844 + }, + "points": [ + { + "x": 734.9609856658446, + "y": 298.56907894736844 + }, + { + "x": 792.831959001233, + "y": 298.56907894736844 + }, + { + "x": 792.831959001233, + "y": 459.6217105263158 + }, + { + "x": 734.9609856658446, + "y": 459.6217105263158 + } + ] + }, + { + "id": "02_0ZIu-6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 132.6315789473684, + "width": 55.76660758323058, + "left": 942.2441430332923, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 942.2441430332923, + "y": 212.25330553556745 + }, + { + "x": 998.0107506165228, + "y": 212.25330553556745 + }, + { + "x": 998.0107506165228, + "y": 344.8848844829359 + }, + { + "x": 942.2441430332923, + "y": 344.8848844829359 + } + ] + }, + { + "id": "Y_J29IKY_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 120, + "width": 59.97533908754624, + "left": 847.5462392108508, + "top": 212.25330553556745 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 212.25330553556745 + }, + { + "x": 907.521578298397, + "y": 212.25330553556745 + }, + { + "x": 907.521578298397, + "y": 332.25330553556745 + }, + { + "x": 847.5462392108508, + "y": 332.25330553556745 + } + ] + }, + { + "id": "gGrINDjTm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.2105423776727, + "width": 47.348951911220716, + "left": 758.1093942663379, + "top": 225.9375 + }, + "points": [ + { + "x": 758.1093942663379, + "y": 225.9375 + }, + { + "x": 805.4583461775586, + "y": 225.9375 + }, + { + "x": 805.4583461775586, + "y": 310.1480423776727 + }, + { + "x": 758.1093942663379, + "y": 310.1480423776727 + } + ] + }, + { + "id": "wJKXSArPc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 158.9474005448191, + "width": 68.39289842786683, + "left": 666.5680872379778, + "top": 225.9375 + }, + "points": [ + { + "x": 666.5680872379778, + "y": 225.9375 + }, + { + "x": 734.9609856658446, + "y": 225.9375 + }, + { + "x": 734.9609856658446, + "y": 384.88490054481906 + }, + { + "x": 666.5680872379778, + "y": 384.88490054481906 + } + ] + }, + { + "id": "2lJEujpkC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 169.47370027240953, + "width": 58.92310804562269, + "left": 501.37282290382245, + "top": 269.0954107987253 + }, + "points": [ + { + "x": 501.37282290382245, + "y": 269.0954107987253 + }, + { + "x": 560.2959309494452, + "y": 269.0954107987253 + }, + { + "x": 560.2959309494452, + "y": 438.5691110711349 + }, + { + "x": 501.37282290382245, + "y": 438.5691110711349 + } + ] + }, + { + "id": "f5A-vCce4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 161.05263157894737, + "width": 81.019333770037, + "left": 341.4385692817509, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 341.4385692817509, + "y": 230.1480584395559 + }, + { + "x": 422.4579030517879, + "y": 230.1480584395559 + }, + { + "x": 422.4579030517879, + "y": 391.2006900185033 + }, + { + "x": 341.4385692817509, + "y": 391.2006900185033 + } + ] + }, + { + "id": "zThKggQOF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 142.10526315789474, + "width": 50.5055487053021, + "left": 169.93015952527745, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 169.93015952527745, + "y": 220.6743742290296 + }, + { + "x": 220.43570823057954, + "y": 220.6743742290296 + }, + { + "x": 220.43570823057954, + "y": 362.7796373869243 + }, + { + "x": 169.93015952527745, + "y": 362.7796373869243 + } + ] + } + ], + "version": "2.2.0" + }, + "64306c275387f80f2b98b2880e2a1d2c": { + "asset": { + "id": "64306c275387f80f2b98b2880e2a1d2c", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.95 + }, + "regions": [ + { + "id": "cIz-4qbrV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31582159745066, + "width": 48.401182953144264, + "left": 615.0103074907522, + "top": 478.56907894736844 + }, + "points": [ + { + "x": 615.0103074907522, + "y": 478.56907894736844 + }, + { + "x": 663.4114904438965, + "y": 478.56907894736844 + }, + { + "x": 663.4114904438965, + "y": 564.8849005448191 + }, + { + "x": 615.0103074907522, + "y": 564.8849005448191 + } + ] + }, + { + "id": "H57ivVgO9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.7368099814967, + "width": 32.61819898273736, + "left": 935.9309494451295, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 935.9309494451295, + "y": 208.0427952816612 + }, + { + "x": 968.5491484278668, + "y": 208.0427952816612 + }, + { + "x": 968.5491484278668, + "y": 282.7796052631579 + }, + { + "x": 935.9309494451295, + "y": 282.7796052631579 + } + ] + }, + { + "id": "herI-MrQA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 78.94736842105263, + "width": 39.9835272811344, + "left": 862.2770884710235, + "top": 194.35855263157896 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 194.35855263157896 + }, + { + "x": 902.2606157521578, + "y": 194.35855263157896 + }, + { + "x": 902.2606157521578, + "y": 273.30592105263156 + }, + { + "x": 862.2770884710235, + "y": 273.30592105263156 + } + ] + }, + { + "id": "w96UaQT1m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 52.60991445745993, + "left": 779.153340782984, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 779.153340782984, + "y": 243.8322529039885 + }, + { + "x": 831.7632552404439, + "y": 243.8322529039885 + }, + { + "x": 831.7632552404439, + "y": 315.41121633429276 + }, + { + "x": 779.153340782984, + "y": 315.41121633429276 + } + ] + }, + { + "id": "Z8UCJoOah", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 85.26315789473685, + "width": 47.348951911220716, + "left": 725.4911952836005, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 725.4911952836005, + "y": 246.9901476408306 + }, + { + "x": 772.8401471948213, + "y": 246.9901476408306 + }, + { + "x": 772.8401471948213, + "y": 332.25330553556745 + }, + { + "x": 725.4911952836005, + "y": 332.25330553556745 + } + ] + }, + { + "id": "4bs9q4xQJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.05259945518092, + "width": 33.67033369297164, + "left": 567.6613555795315, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 309.09542686060854 + }, + { + "x": 601.3316892725031, + "y": 309.09542686060854 + }, + { + "x": 601.3316892725031, + "y": 390.1480263157895 + }, + { + "x": 567.6613555795315, + "y": 390.1480263157895 + } + ] + }, + { + "id": "JISWyBG2S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 35.77469944512947, + "left": 515.0514411220715, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 515.0514411220715, + "y": 233.30595317639802 + }, + { + "x": 550.826140567201, + "y": 233.30595317639802 + }, + { + "x": 550.826140567201, + "y": 296.46384791324016 + }, + { + "x": 515.0514411220715, + "y": 296.46384791324016 + } + ] + }, + { + "id": "XpDAYli9Q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 41.035758323057955, + "left": 481.38101109741064, + "top": 129.09540276778372 + }, + "points": [ + { + "x": 481.38101109741064, + "y": 129.09540276778372 + }, + { + "x": 522.4167694204685, + "y": 129.09540276778372 + }, + { + "x": 522.4167694204685, + "y": 185.93750803094161 + }, + { + "x": 481.38101109741064, + "y": 185.93750803094161 + } + ] + } + ], + "version": "2.2.0" + }, + "1e6577ee790b2a5334d3d0929635698e": { + "asset": { + "id": "1e6577ee790b2a5334d3d0929635698e", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.8 + }, + "regions": [ + { + "id": "8VXUrCj3W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 82.10526315789474, + "width": 47.348951911220716, + "left": 931.7222179408138, + "top": 209.09541079872534 + }, + "points": [ + { + "x": 931.7222179408138, + "y": 209.09541079872534 + }, + { + "x": 979.0711698520346, + "y": 209.09541079872534 + }, + { + "x": 979.0711698520346, + "y": 291.20067395662005 + }, + { + "x": 931.7222179408138, + "y": 291.20067395662005 + } + ] + }, + { + "id": "p_6mEuLrA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89470471833882, + "width": 37.879161528976574, + "left": 880.1644381935881, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 880.1644381935881, + "y": 211.20069001850328 + }, + { + "x": 918.0435997225647, + "y": 211.20069001850328 + }, + { + "x": 918.0435997225647, + "y": 289.0953947368421 + }, + { + "x": 880.1644381935881, + "y": 289.0953947368421 + } + ] + }, + { + "id": "xvzkymhHz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 87.3684371145148, + "width": 39.9835272811344, + "left": 785.4665343711467, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 785.4665343711467, + "y": 235.41118421052633 + }, + { + "x": 825.4500616522812, + "y": 235.41118421052633 + }, + { + "x": 825.4500616522812, + "y": 322.77962132504115 + }, + { + "x": 785.4665343711467, + "y": 322.77962132504115 + } + ] + }, + { + "id": "dGhhw6eB5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 50.5055487053021, + "left": 727.5955610357584, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 727.5955610357584, + "y": 231.20067395662008 + }, + { + "x": 778.1011097410604, + "y": 231.20067395662008 + }, + { + "x": 778.1011097410604, + "y": 303.8322529039885 + }, + { + "x": 727.5955610357584, + "y": 303.8322529039885 + } + ] + }, + { + "id": "k6DIgAmll", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 47.348951911220716, + "left": 561.3481619913687, + "top": 308.04276315789474 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 308.04276315789474 + }, + { + "x": 608.6971139025894, + "y": 308.04276315789474 + }, + { + "x": 608.6971139025894, + "y": 371.2006578947368 + }, + { + "x": 561.3481619913687, + "y": 371.2006578947368 + } + ] + }, + { + "id": "D0AskOK8S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 94.73684210526316, + "width": 43.14012407521578, + "left": 521.3646347102343, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 521.3646347102343, + "y": 235.41118421052633 + }, + { + "x": 564.5047587854501, + "y": 235.41118421052633 + }, + { + "x": 564.5047587854501, + "y": 330.1480263157895 + }, + { + "x": 521.3646347102343, + "y": 330.1480263157895 + } + ] + }, + { + "id": "5OhqXbEev", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 32.61819898273736, + "left": 494.00739827373616, + "top": 134.35855263157896 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 134.35855263157896 + }, + { + "x": 526.6255972564735, + "y": 134.35855263157896 + }, + { + "x": 526.6255972564735, + "y": 210.14802631578948 + }, + { + "x": 494.00739827373616, + "y": 210.14802631578948 + } + ] + }, + { + "id": "h2n7wni9L", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 48.40108662145499, + "left": 616.0625385326757, + "top": 474.3585686934622 + }, + "points": [ + { + "x": 616.0625385326757, + "y": 474.3585686934622 + }, + { + "x": 664.4636251541307, + "y": 474.3585686934622 + }, + { + "x": 664.4636251541307, + "y": 545.9375321237665 + }, + { + "x": 616.0625385326757, + "y": 545.9375321237665 + } + ] + } + ], + "version": "2.2.0" + }, + "3109f75f6b1ae08b869cd1f228b0683e": { + "asset": { + "id": "3109f75f6b1ae08b869cd1f228b0683e", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.65 + }, + "regions": [ + { + "id": "0HWrtSVf8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52634791324013, + "width": 36.8270268187423, + "left": 945.4007398273736, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 945.4007398273736, + "y": 210.14802631578948 + }, + { + "x": 982.2277666461159, + "y": 210.14802631578948 + }, + { + "x": 982.2277666461159, + "y": 280.6743742290296 + }, + { + "x": 945.4007398273736, + "y": 280.6743742290296 + } + ] + }, + { + "id": "6w18fCCgT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 34.722564734895194, + "left": 880.1644381935881, + "top": 197.51644736842107 + }, + "points": [ + { + "x": 880.1644381935881, + "y": 197.51644736842107 + }, + { + "x": 914.8870029284834, + "y": 197.51644736842107 + }, + { + "x": 914.8870029284834, + "y": 275.41120027240953 + }, + { + "x": 880.1644381935881, + "y": 275.41120027240953 + } + ] + }, + { + "id": "FOMsxk92C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 35.77479577681874, + "left": 788.6231311652281, + "top": 248.04276315789474 + }, + "points": [ + { + "x": 788.6231311652281, + "y": 248.04276315789474 + }, + { + "x": 824.3979269420469, + "y": 248.04276315789474 + }, + { + "x": 824.3979269420469, + "y": 314.35855263157896 + }, + { + "x": 788.6231311652281, + "y": 314.35855263157896 + } + ] + }, + { + "id": "sSSFCRpPCp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 37.879161528976574, + "left": 738.117582459926, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 738.117582459926, + "y": 237.51646343030427 + }, + { + "x": 775.9967439889026, + "y": 237.51646343030427 + }, + { + "x": 775.9967439889026, + "y": 296.46384791324016 + }, + { + "x": 738.117582459926, + "y": 296.46384791324016 + } + ] + }, + { + "id": "flh13EURb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 106.31580553556743, + "width": 61.027473797780516, + "left": 609.7493449445129, + "top": 452.25330553556745 + }, + "points": [ + { + "x": 609.7493449445129, + "y": 452.25330553556745 + }, + { + "x": 670.7768187422935, + "y": 452.25330553556745 + }, + { + "x": 670.7768187422935, + "y": 558.5691110711349 + }, + { + "x": 609.7493449445129, + "y": 558.5691110711349 + } + ] + }, + { + "id": "Bo7U3UMRO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 107.36842105263158, + "width": 51.557779747225645, + "left": 566.609124537608, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 566.609124537608, + "y": 295.4111842105263 + }, + { + "x": 618.1669042848335, + "y": 295.4111842105263 + }, + { + "x": 618.1669042848335, + "y": 402.7796052631579 + }, + { + "x": 566.609124537608, + "y": 402.7796052631579 + } + ] + }, + { + "id": "NAN5E2v9V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 87.3684371145148, + "width": 44.192355117139336, + "left": 520.3124036683107, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 520.3124036683107, + "y": 231.20067395662008 + }, + { + "x": 564.5047587854501, + "y": 231.20067395662008 + }, + { + "x": 564.5047587854501, + "y": 318.5691110711349 + }, + { + "x": 520.3124036683107, + "y": 318.5691110711349 + } + ] + }, + { + "id": "cvAWzz5mt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57893933747944, + "width": 33.67043002466091, + "left": 500.3205918618989, + "top": 138.56908697831003 + }, + "points": [ + { + "x": 500.3205918618989, + "y": 138.56908697831003 + }, + { + "x": 533.9910218865598, + "y": 138.56908697831003 + }, + { + "x": 533.9910218865598, + "y": 210.14802631578948 + }, + { + "x": 500.3205918618989, + "y": 210.14802631578948 + } + ] + } + ], + "version": "2.2.0" + }, + "df999b1c9b1c505b341a87eec2dab02d": { + "asset": { + "id": "df999b1c9b1c505b341a87eec2dab02d", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.5 + }, + "regions": [ + { + "id": "CCspFgndU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 93.68417840254935, + "width": 48.40108662145499, + "left": 944.3486051171393, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 211.20069001850328 + }, + { + "x": 992.7496917385944, + "y": 211.20069001850328 + }, + { + "x": 992.7496917385944, + "y": 304.88486842105266 + }, + { + "x": 944.3486051171393, + "y": 304.88486842105266 + } + ] + }, + { + "id": "rrQQLzwUv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 35.77479577681874, + "left": 883.3210349876696, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 883.3210349876696, + "y": 205.93751606188323 + }, + { + "x": 919.0958307644883, + "y": 205.93751606188323 + }, + { + "x": 919.0958307644883, + "y": 294.3585686934622 + }, + { + "x": 883.3210349876696, + "y": 294.3585686934622 + } + ] + }, + { + "id": "8513xmYze", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.21049419202303, + "width": 33.67043002466091, + "left": 803.3538840937115, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 803.3538840937115, + "y": 233.30595317639802 + }, + { + "x": 837.0243141183724, + "y": 233.30595317639802 + }, + { + "x": 837.0243141183724, + "y": 317.51644736842104 + }, + { + "x": 803.3538840937115, + "y": 317.51644736842104 + } + ] + }, + { + "id": "V7ciTpCS27", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 44.192355117139336, + "left": 740.2219482120838, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 740.2219482120838, + "y": 245.93753212376646 + }, + { + "x": 784.4143033292232, + "y": 245.93753212376646 + }, + { + "x": 784.4143033292232, + "y": 318.5691110711349 + }, + { + "x": 740.2219482120838, + "y": 318.5691110711349 + } + ] + }, + { + "id": "4zY6Rda_o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 78.94736842105263, + "width": 48.401182953144264, + "left": 623.4278668310727, + "top": 448.0427952816612 + }, + "points": [ + { + "x": 623.4278668310727, + "y": 448.0427952816612 + }, + { + "x": 671.829049784217, + "y": 448.0427952816612 + }, + { + "x": 671.829049784217, + "y": 526.9901637027139 + }, + { + "x": 623.4278668310727, + "y": 526.9901637027139 + } + ] + }, + { + "id": "7CVoRr1uta", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31577341180099, + "width": 57.87097333538841, + "left": 583.4443395499384, + "top": 302.7796373869243 + }, + "points": [ + { + "x": 583.4443395499384, + "y": 302.7796373869243 + }, + { + "x": 641.3153128853268, + "y": 302.7796373869243 + }, + { + "x": 641.3153128853268, + "y": 389.0954107987253 + }, + { + "x": 583.4443395499384, + "y": 389.0954107987253 + } + ] + }, + { + "id": "Wm3t2bK86", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 35.77479577681874, + "left": 536.0953876387176, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 536.0953876387176, + "y": 231.20067395662008 + }, + { + "x": 571.8701834155364, + "y": 231.20067395662008 + }, + { + "x": 571.8701834155364, + "y": 294.3585686934622 + }, + { + "x": 536.0953876387176, + "y": 294.3585686934622 + } + ] + }, + { + "id": "vfnBfJudu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.105255126953125, + "width": 39.9835272811344, + "left": 505.58165073982735, + "top": 139.621726588199 + }, + "points": [ + { + "x": 505.58165073982735, + "y": 139.621726588199 + }, + { + "x": 545.5651780209618, + "y": 139.621726588199 + }, + { + "x": 545.5651780209618, + "y": 201.72698171515214 + }, + { + "x": 505.58165073982735, + "y": 201.72698171515214 + } + ] + } + ], + "version": "2.2.0" + }, + "7dececbf708ad44732849348b09c0623": { + "asset": { + "id": "7dececbf708ad44732849348b09c0623", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.4 + }, + "regions": [ + { + "id": "qtQ4xgQcS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68424265008224, + "width": 45.244586159062884, + "left": 948.557336621455, + "top": 206.99013157894737 + }, + "points": [ + { + "x": 948.557336621455, + "y": 206.99013157894737 + }, + { + "x": 993.8019227805179, + "y": 206.99013157894737 + }, + { + "x": 993.8019227805179, + "y": 280.6743742290296 + }, + { + "x": 948.557336621455, + "y": 280.6743742290296 + } + ] + }, + { + "id": "QJVJ5OJny", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.4210205078125, + "width": 42.08789303329223, + "left": 878.0600724414303, + "top": 214.3585847553454 + }, + "points": [ + { + "x": 878.0600724414303, + "y": 214.3585847553454 + }, + { + "x": 920.1479654747226, + "y": 214.3585847553454 + }, + { + "x": 920.1479654747226, + "y": 282.7796052631579 + }, + { + "x": 878.0600724414303, + "y": 282.7796052631579 + } + ] + }, + { + "id": "Y-kCbKD5-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 36.82693048705302, + "left": 805.4583461775586, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 805.4583461775586, + "y": 231.20067395662008 + }, + { + "x": 842.2852766646116, + "y": 231.20067395662008 + }, + { + "x": 842.2852766646116, + "y": 298.56907894736844 + }, + { + "x": 805.4583461775586, + "y": 298.56907894736844 + } + ] + }, + { + "id": "_X8SftAK-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 24.20063964241677, + "left": 743.3785450061653, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 743.3785450061653, + "y": 245.93753212376646 + }, + { + "x": 767.579184648582, + "y": 245.93753212376646 + }, + { + "x": 767.579184648582, + "y": 304.88486842105266 + }, + { + "x": 743.3785450061653, + "y": 304.88486842105266 + } + ] + }, + { + "id": "Z8a7uG2qo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.7368099814967, + "width": 51.557779747225645, + "left": 611.8537106966708, + "top": 435.41121633429276 + }, + "points": [ + { + "x": 611.8537106966708, + "y": 435.41121633429276 + }, + { + "x": 663.4114904438965, + "y": 435.41121633429276 + }, + { + "x": 663.4114904438965, + "y": 510.1480263157895 + }, + { + "x": 611.8537106966708, + "y": 510.1480263157895 + } + ] + }, + { + "id": "9iKALZiNe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 79.99998393811678, + "width": 56.81874229346486, + "left": 570.8179523736128, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 306.99014764083057 + }, + { + "x": 627.6366946670777, + "y": 306.99014764083057 + }, + { + "x": 627.6366946670777, + "y": 386.9901315789474 + }, + { + "x": 570.8179523736128, + "y": 386.9901315789474 + } + ] + }, + { + "id": "Iv5L9lRGq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 48.40108662145499, + "left": 524.5212315043157, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 524.5212315043157, + "y": 230.1480584395559 + }, + { + "x": 572.9223181257706, + "y": 230.1480584395559 + }, + { + "x": 572.9223181257706, + "y": 285.9375 + }, + { + "x": 524.5212315043157, + "y": 285.9375 + } + ] + }, + { + "id": "MgtHlRPZMu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 34.722564734895194, + "left": 508.73824753390875, + "top": 136.4638318513569 + }, + "points": [ + { + "x": 508.73824753390875, + "y": 136.4638318513569 + }, + { + "x": 543.4608122688039, + "y": 136.4638318513569 + }, + { + "x": 543.4608122688039, + "y": 184.88486842105263 + }, + { + "x": 508.73824753390875, + "y": 184.88486842105263 + } + ] + } + ], + "version": "2.2.0" + }, + "008ce9688b9d652ec46dc30440afdc4f": { + "asset": { + "id": "008ce9688b9d652ec46dc30440afdc4f", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.05 + }, + "regions": [ + { + "id": "n0eesUp1o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 92.6315628854852, + "width": 41.035758323057955, + "left": 950.6617987053021, + "top": 202.77962132504112 + }, + "points": [ + { + "x": 950.6617987053021, + "y": 202.77962132504112 + }, + { + "x": 991.69755702836, + "y": 202.77962132504112 + }, + { + "x": 991.69755702836, + "y": 295.4111842105263 + }, + { + "x": 950.6617987053021, + "y": 295.4111842105263 + } + ] + }, + { + "id": "PpU3ATiSx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 45.244586159062884, + "left": 879.1122071516646, + "top": 202.77962132504112 + }, + "points": [ + { + "x": 879.1122071516646, + "y": 202.77962132504112 + }, + { + "x": 924.3567933107275, + "y": 202.77962132504112 + }, + { + "x": 924.3567933107275, + "y": 275.41120027240953 + }, + { + "x": 879.1122071516646, + "y": 275.41120027240953 + } + ] + }, + { + "id": "9yuE3hmUyf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 31.56596794081381, + "left": 799.1451525893958, + "top": 232.25328947368422 + }, + "points": [ + { + "x": 799.1451525893958, + "y": 232.25328947368422 + }, + { + "x": 830.7111205302097, + "y": 232.25328947368422 + }, + { + "x": 830.7111205302097, + "y": 286.9901637027138 + }, + { + "x": 799.1451525893958, + "y": 286.9901637027138 + } + ] + }, + { + "id": "U0Y0102OY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.0526476408306, + "width": 39.9835272811344, + "left": 742.3264102959309, + "top": 222.7796052631579 + }, + "points": [ + { + "x": 742.3264102959309, + "y": 222.7796052631579 + }, + { + "x": 782.3099375770654, + "y": 222.7796052631579 + }, + { + "x": 782.3099375770654, + "y": 303.8322529039885 + }, + { + "x": 742.3264102959309, + "y": 303.8322529039885 + } + ] + }, + { + "id": "YBlUZVyIX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 90.52633185135691, + "width": 48.40108662145499, + "left": 619.219135326757, + "top": 424.88486842105266 + }, + "points": [ + { + "x": 619.219135326757, + "y": 424.88486842105266 + }, + { + "x": 667.6202219482121, + "y": 424.88486842105266 + }, + { + "x": 667.6202219482121, + "y": 515.4112002724096 + }, + { + "x": 619.219135326757, + "y": 515.4112002724096 + } + ] + }, + { + "id": "CDW27un9N", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 30.513833230579532, + "left": 582.3921085080148, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 582.3921085080148, + "y": 300.6743581671464 + }, + { + "x": 612.9059417385944, + "y": 300.6743581671464 + }, + { + "x": 612.9059417385944, + "y": 377.51644736842104 + }, + { + "x": 582.3921085080148, + "y": 377.51644736842104 + } + ] + }, + { + "id": "CADp12lNd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 32.61819898273736, + "left": 539.2519844327991, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 249.09542686060857 + }, + { + "x": 571.8701834155364, + "y": 249.09542686060857 + }, + { + "x": 571.8701834155364, + "y": 304.88486842105266 + }, + { + "x": 539.2519844327991, + "y": 304.88486842105266 + } + ] + }, + { + "id": "jWbJ1abb6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26314986379523, + "width": 36.82693048705302, + "left": 515.0514411220715, + "top": 151.20066592567846 + }, + "points": [ + { + "x": 515.0514411220715, + "y": 151.20066592567846 + }, + { + "x": 551.8783716091245, + "y": 151.20066592567846 + }, + { + "x": 551.8783716091245, + "y": 216.4638157894737 + }, + { + "x": 515.0514411220715, + "y": 216.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "3a8f432bc96435eca9a683543265b8c2": { + "asset": { + "id": "3a8f432bc96435eca9a683543265b8c2", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46.9 + }, + "regions": [ + { + "id": "hFt6GQ5PG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.2105423776727, + "width": 42.0879893649815, + "left": 939.0875462392108, + "top": 199.621726588199 + }, + "points": [ + { + "x": 939.0875462392108, + "y": 199.621726588199 + }, + { + "x": 981.1755356041924, + "y": 199.621726588199 + }, + { + "x": 981.1755356041924, + "y": 283.8322689658717 + }, + { + "x": 939.0875462392108, + "y": 283.8322689658717 + } + ] + }, + { + "id": "LrntKzhGQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 47.348951911220716, + "left": 869.6424167694205, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 869.6424167694205, + "y": 210.14802631578948 + }, + { + "x": 916.9913686806412, + "y": 210.14802631578948 + }, + { + "x": 916.9913686806412, + "y": 272.25330553556745 + }, + { + "x": 869.6424167694205, + "y": 272.25330553556745 + } + ] + }, + { + "id": "a9Zyr2VYIf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 36.82693048705302, + "left": 795.9885557953145, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 795.9885557953145, + "y": 237.51646343030427 + }, + { + "x": 832.8154862823675, + "y": 237.51646343030427 + }, + { + "x": 832.8154862823675, + "y": 305.93753212376646 + }, + { + "x": 795.9885557953145, + "y": 305.93753212376646 + } + ] + }, + { + "id": "NBBJ6-O-o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 82.10526315789474, + "width": 43.14012407521578, + "left": 741.2741792540074, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 237.51646343030427 + }, + { + "x": 784.4143033292232, + "y": 237.51646343030427 + }, + { + "x": 784.4143033292232, + "y": 319.621726588199 + }, + { + "x": 741.2741792540074, + "y": 319.621726588199 + } + ] + }, + { + "id": "kVpOrYJ57", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 41.035758323057955, + "left": 606.5927481504316, + "top": 423.8322529039885 + }, + "points": [ + { + "x": 606.5927481504316, + "y": 423.8322529039885 + }, + { + "x": 647.6285064734896, + "y": 423.8322529039885 + }, + { + "x": 647.6285064734896, + "y": 500.6743421052632 + }, + { + "x": 606.5927481504316, + "y": 500.6743421052632 + } + ] + }, + { + "id": "0EHqp8YB2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.21049419202303, + "width": 46.29672086929717, + "left": 570.8179523736128, + "top": 302.7796373869243 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 302.7796373869243 + }, + { + "x": 617.11467324291, + "y": 302.7796373869243 + }, + { + "x": 617.11467324291, + "y": 386.9901315789474 + }, + { + "x": 570.8179523736128, + "y": 386.9901315789474 + } + ] + }, + { + "id": "wGmD2rWpH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 31.56596794081381, + "left": 533.9910218865598, + "top": 244.88486842105263 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 244.88486842105263 + }, + { + "x": 565.5569898273736, + "y": 244.88486842105263 + }, + { + "x": 565.5569898273736, + "y": 313.3059371145148 + }, + { + "x": 533.9910218865598, + "y": 313.3059371145148 + } + ] + }, + { + "id": "7HEZH_5QD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.894744873046875, + "width": 30.513736898890258, + "left": 513.9992100801479, + "top": 160.67435013620477 + }, + "points": [ + { + "x": 513.9992100801479, + "y": 160.67435013620477 + }, + { + "x": 544.5129469790382, + "y": 160.67435013620477 + }, + { + "x": 544.5129469790382, + "y": 218.56909500925164 + }, + { + "x": 513.9992100801479, + "y": 218.56909500925164 + } + ] + } + ], + "version": "2.2.0" + }, + "dec0e6d4e7ce4c7a0d4e1f027187e078": { + "asset": { + "id": "dec0e6d4e7ce4c7a0d4e1f027187e078", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46.75 + }, + "regions": [ + { + "id": "VoymVWAkJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57891524465461, + "width": 36.8270268187423, + "left": 939.0875462392108, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 939.0875462392108, + "y": 208.0427952816612 + }, + { + "x": 975.9145730579531, + "y": 208.0427952816612 + }, + { + "x": 975.9145730579531, + "y": 279.6217105263158 + }, + { + "x": 939.0875462392108, + "y": 279.6217105263158 + } + ] + }, + { + "id": "XuFqRnKki1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.0526476408306, + "width": 35.77479577681874, + "left": 877.0078413995068, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 877.0078413995068, + "y": 215.41120027240953 + }, + { + "x": 912.7826371763256, + "y": 215.41120027240953 + }, + { + "x": 912.7826371763256, + "y": 296.46384791324016 + }, + { + "x": 877.0078413995068, + "y": 296.46384791324016 + } + ] + }, + { + "id": "EdC63yKDz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 32.61819898273736, + "left": 784.4143033292232, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 784.4143033292232, + "y": 245.93753212376646 + }, + { + "x": 817.0325023119606, + "y": 245.93753212376646 + }, + { + "x": 817.0325023119606, + "y": 321.727005807977 + }, + { + "x": 784.4143033292232, + "y": 321.727005807977 + } + ] + }, + { + "id": "niRZ8tI8H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.73685816714638, + "width": 50.5055487053021, + "left": 723.3868295314427, + "top": 235.41118421052633 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 235.41118421052633 + }, + { + "x": 773.8923782367448, + "y": 235.41118421052633 + }, + { + "x": 773.8923782367448, + "y": 310.1480423776727 + }, + { + "x": 723.3868295314427, + "y": 310.1480423776727 + } + ] + }, + { + "id": "QbVQu8Cbu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 80.00003212376645, + "width": 48.401182953144264, + "left": 596.0707267262638, + "top": 428.04276315789474 + }, + "points": [ + { + "x": 596.0707267262638, + "y": 428.04276315789474 + }, + { + "x": 644.4719096794081, + "y": 428.04276315789474 + }, + { + "x": 644.4719096794081, + "y": 508.0427952816612 + }, + { + "x": 596.0707267262638, + "y": 508.0427952816612 + } + ] + }, + { + "id": "kYneQvk7-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 39.9835272811344, + "left": 558.1915651972873, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 309.09542686060854 + }, + { + "x": 598.1750924784217, + "y": 309.09542686060854 + }, + { + "x": 598.1750924784217, + "y": 365.93753212376646 + }, + { + "x": 558.1915651972873, + "y": 365.93753212376646 + } + ] + }, + { + "id": "B2ktnx5hZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 36.82693048705302, + "left": 521.3646347102343, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 521.3646347102343, + "y": 255.41121633429276 + }, + { + "x": 558.1915651972873, + "y": 255.41121633429276 + }, + { + "x": 558.1915651972873, + "y": 316.46383185135693 + }, + { + "x": 521.3646347102343, + "y": 316.46383185135693 + } + ] + }, + { + "id": "8asTNeH8x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 78.94736842105263, + "width": 42.08789303329223, + "left": 502.425053945746, + "top": 174.35856869346216 + }, + "points": [ + { + "x": 502.425053945746, + "y": 174.35856869346216 + }, + { + "x": 544.5129469790382, + "y": 174.35856869346216 + }, + { + "x": 544.5129469790382, + "y": 253.30593711451482 + }, + { + "x": 502.425053945746, + "y": 253.30593711451482 + } + ] + } + ], + "version": "2.2.0" + }, + "bf690570b500c11feeb5befe876f606b": { + "asset": { + "id": "bf690570b500c11feeb5befe876f606b", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46.6 + }, + "regions": [ + { + "id": "fdSyEfK5V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 88.42105263157895, + "width": 34.722564734895194, + "left": 938.0354115289766, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 938.0354115289766, + "y": 220.6743742290296 + }, + { + "x": 972.7579762638718, + "y": 220.6743742290296 + }, + { + "x": 972.7579762638718, + "y": 309.09542686060854 + }, + { + "x": 938.0354115289766, + "y": 309.09542686060854 + } + ] + }, + { + "id": "yvNLEuJYt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 36.82693048705302, + "left": 868.5902820591862, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 868.5902820591862, + "y": 230.1480584395559 + }, + { + "x": 905.4172125462392, + "y": 230.1480584395559 + }, + { + "x": 905.4172125462392, + "y": 303.8322529039885 + }, + { + "x": 868.5902820591862, + "y": 303.8322529039885 + } + ] + }, + { + "id": "5XlVKSZOf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 42.08789303329223, + "left": 777.0489750308261, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 777.0489750308261, + "y": 246.9901476408306 + }, + { + "x": 819.1368680641184, + "y": 246.9901476408306 + }, + { + "x": 819.1368680641184, + "y": 310.1480423776727 + }, + { + "x": 777.0489750308261, + "y": 310.1480423776727 + } + ] + }, + { + "id": "WlYqAaMLb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 32.61819898273736, + "left": 741.2741792540074, + "top": 258.5691110711349 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 258.5691110711349 + }, + { + "x": 773.8923782367448, + "y": 258.5691110711349 + }, + { + "x": 773.8923782367448, + "y": 316.46383185135693 + }, + { + "x": 741.2741792540074, + "y": 316.46383185135693 + } + ] + }, + { + "id": "HC-dKH-AC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 46.29681720098644, + "left": 591.861898890259, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 591.861898890259, + "y": 422.7796373869243 + }, + { + "x": 638.1587160912454, + "y": 422.7796373869243 + }, + { + "x": 638.1587160912454, + "y": 493.3059371145148 + }, + { + "x": 591.861898890259, + "y": 493.3059371145148 + } + ] + }, + { + "id": "ASsplQw_w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 34.722564734895194, + "left": 563.4525277435265, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 318.5691110711349 + }, + { + "x": 598.1750924784217, + "y": 318.5691110711349 + }, + { + "x": 598.1750924784217, + "y": 376.46383185135693 + }, + { + "x": 563.4525277435265, + "y": 376.46383185135693 + } + ] + }, + { + "id": "cMEiC3ffl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 28.40937114673243, + "left": 518.2080379161529, + "top": 259.621726588199 + }, + "points": [ + { + "x": 518.2080379161529, + "y": 259.621726588199 + }, + { + "x": 546.6174090628854, + "y": 259.621726588199 + }, + { + "x": 546.6174090628854, + "y": 309.09542686060854 + }, + { + "x": 518.2080379161529, + "y": 309.09542686060854 + } + ] + }, + { + "id": "LpuUMlAck", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.99999196905839, + "width": 23.14840860049322, + "left": 510.8426132860666, + "top": 185.93750803094161 + }, + "points": [ + { + "x": 510.8426132860666, + "y": 185.93750803094161 + }, + { + "x": 533.9910218865598, + "y": 185.93750803094161 + }, + { + "x": 533.9910218865598, + "y": 225.9375 + }, + { + "x": 510.8426132860666, + "y": 225.9375 + } + ] + } + ], + "version": "2.2.0" + }, + "4110893f260d5defc9815d2cc6c8f43c": { + "asset": { + "id": "4110893f260d5defc9815d2cc6c8f43c", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46.45 + }, + "regions": [ + { + "id": "m6e8DPlsi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 43.14012407521578, + "left": 930.6699868988902, + "top": 221.72698974609375 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 221.72698974609375 + }, + { + "x": 973.810110974106, + "y": 221.72698974609375 + }, + { + "x": 973.810110974106, + "y": 279.6217105263158 + }, + { + "x": 930.6699868988902, + "y": 279.6217105263158 + } + ] + }, + { + "id": "r2fg09pfo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 53.66214549938348, + "left": 846.4941045006166, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 846.4941045006166, + "y": 231.20067395662008 + }, + { + "x": 900.15625, + "y": 231.20067395662008 + }, + { + "x": 900.15625, + "y": 308.04276315789474 + }, + { + "x": 846.4941045006166, + "y": 308.04276315789474 + } + ] + }, + { + "id": "WkMgP6Jvj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 37.879161528976574, + "left": 775.9967439889026, + "top": 259.621726588199 + }, + "points": [ + { + "x": 775.9967439889026, + "y": 259.621726588199 + }, + { + "x": 813.8759055178791, + "y": 259.621726588199 + }, + { + "x": 813.8759055178791, + "y": 331.2006900185033 + }, + { + "x": 775.9967439889026, + "y": 331.2006900185033 + } + ] + }, + { + "id": "28gSq0LDgI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 43.14012407521578, + "left": 722.3345984895191, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 722.3345984895191, + "y": 264.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 264.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 328.0427952816612 + }, + { + "x": 722.3345984895191, + "y": 328.0427952816612 + } + ] + }, + { + "id": "yQZRexqrj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 100.00001606188323, + "width": 43.14022040690506, + "left": 585.5487053020962, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 585.5487053020962, + "y": 417.51646343030427 + }, + { + "x": 628.6889257090013, + "y": 417.51646343030427 + }, + { + "x": 628.6889257090013, + "y": 517.5164794921875 + }, + { + "x": 585.5487053020962, + "y": 517.5164794921875 + } + ] + }, + { + "id": "gY7Gz8jHH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 43.14022040690506, + "left": 550.826140567201, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 550.826140567201, + "y": 312.2533215974507 + }, + { + "x": 593.966360974106, + "y": 312.2533215974507 + }, + { + "x": 593.966360974106, + "y": 371.2006578947368 + }, + { + "x": 550.826140567201, + "y": 371.2006578947368 + } + ] + }, + { + "id": "C3XVhCvdx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 41.035758323057955, + "left": 510.8426132860666, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 510.8426132860666, + "y": 275.41120027240953 + }, + { + "x": 551.8783716091245, + "y": 275.41120027240953 + }, + { + "x": 551.8783716091245, + "y": 346.9901637027138 + }, + { + "x": 510.8426132860666, + "y": 346.9901637027138 + } + ] + }, + { + "id": "PW1b6ZGRE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 82.10528725071957, + "width": 45.244586159062884, + "left": 498.21622610974106, + "top": 182.7796132940995 + }, + "points": [ + { + "x": 498.21622610974106, + "y": 182.7796132940995 + }, + { + "x": 543.4608122688039, + "y": 182.7796132940995 + }, + { + "x": 543.4608122688039, + "y": 264.88490054481906 + }, + { + "x": 498.21622610974106, + "y": 264.88490054481906 + } + ] + } + ], + "version": "2.2.0" + }, + "2582b507a8ad269e243723707f41dd6e": { + "asset": { + "id": "2582b507a8ad269e243723707f41dd6e", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=47.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=47.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 47.2 + }, + "regions": [ + { + "id": "xR2SdiRuP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 38.93129623921085, + "left": 944.3486051171393, + "top": 196.4638318513569 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 196.4638318513569 + }, + { + "x": 983.2799013563503, + "y": 196.4638318513569 + }, + { + "x": 983.2799013563503, + "y": 262.77962132504115 + }, + { + "x": 944.3486051171393, + "y": 262.77962132504115 + } + ] + }, + { + "id": "tLCK8PYoa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89472881116366, + "width": 45.24448982737361, + "left": 884.3732660295931, + "top": 201.72698171515214 + }, + "points": [ + { + "x": 884.3732660295931, + "y": 201.72698171515214 + }, + { + "x": 929.6177558569667, + "y": 201.72698171515214 + }, + { + "x": 929.6177558569667, + "y": 279.6217105263158 + }, + { + "x": 884.3732660295931, + "y": 279.6217105263158 + } + ] + }, + { + "id": "7ExbaURIh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 36.82693048705302, + "left": 798.0929215474723, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 798.0929215474723, + "y": 233.30595317639802 + }, + { + "x": 834.9198520345253, + "y": 233.30595317639802 + }, + { + "x": 834.9198520345253, + "y": 302.7796373869243 + }, + { + "x": 798.0929215474723, + "y": 302.7796373869243 + } + ] + }, + { + "id": "JdB9J56i2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 42.08789303329223, + "left": 739.1698135018496, + "top": 240.67435816714638 + }, + "points": [ + { + "x": 739.1698135018496, + "y": 240.67435816714638 + }, + { + "x": 781.2577065351418, + "y": 240.67435816714638 + }, + { + "x": 781.2577065351418, + "y": 318.5691110711349 + }, + { + "x": 739.1698135018496, + "y": 318.5691110711349 + } + ] + }, + { + "id": "jj6V2Lpim", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 98.94735235916941, + "width": 49.45341399506782, + "left": 617.11467324291, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 617.11467324291, + "y": 422.7796373869243 + }, + { + "x": 666.5680872379778, + "y": 422.7796373869243 + }, + { + "x": 666.5680872379778, + "y": 521.7269897460938 + }, + { + "x": 617.11467324291, + "y": 521.7269897460938 + } + ] + }, + { + "id": "wPalMcXoH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15787867495888, + "width": 61.027473797780516, + "left": 568.713586621455, + "top": 296.46384791324016 + }, + "points": [ + { + "x": 568.713586621455, + "y": 296.46384791324016 + }, + { + "x": 629.7410604192355, + "y": 296.46384791324016 + }, + { + "x": 629.7410604192355, + "y": 379.621726588199 + }, + { + "x": 568.713586621455, + "y": 379.621726588199 + } + ] + }, + { + "id": "wS799Ioo7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 93.68417840254935, + "width": 37.879161528976574, + "left": 538.1997533908755, + "top": 239.62174265008224 + }, + "points": [ + { + "x": 538.1997533908755, + "y": 239.62174265008224 + }, + { + "x": 576.0789149198521, + "y": 239.62174265008224 + }, + { + "x": 576.0789149198521, + "y": 333.30592105263156 + }, + { + "x": 538.1997533908755, + "y": 333.30592105263156 + } + ] + }, + { + "id": "oTgYixcag", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31582159745066, + "width": 36.8270268187423, + "left": 519.2601726263872, + "top": 137.51644736842104 + }, + "points": [ + { + "x": 519.2601726263872, + "y": 137.51644736842104 + }, + { + "x": 556.0871994451295, + "y": 137.51644736842104 + }, + { + "x": 556.0871994451295, + "y": 223.83226896587172 + }, + { + "x": 519.2601726263872, + "y": 223.83226896587172 + } + ] + } + ], + "version": "2.2.0" + }, + "ef69d5940d7824c73f5ed6a14542a64f": { + "asset": { + "id": "ef69d5940d7824c73f5ed6a14542a64f", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46.3 + }, + "regions": [ + { + "id": "CacAxYKsx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 90.52628366570724, + "width": 48.401182953144264, + "left": 923.3045622688039, + "top": 217.5164794921875 + }, + "points": [ + { + "x": 923.3045622688039, + "y": 217.5164794921875 + }, + { + "x": 971.7057452219482, + "y": 217.5164794921875 + }, + { + "x": 971.7057452219482, + "y": 308.04276315789474 + }, + { + "x": 923.3045622688039, + "y": 308.04276315789474 + } + ] + }, + { + "id": "imPN_C5EO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 39.9835272811344, + "left": 859.120491676942, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 859.120491676942, + "y": 224.88488448293586 + }, + { + "x": 899.1040189580765, + "y": 224.88488448293586 + }, + { + "x": 899.1040189580765, + "y": 296.46384791324016 + }, + { + "x": 859.120491676942, + "y": 296.46384791324016 + } + ] + }, + { + "id": "Tb30hkED5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 32.61819898273736, + "left": 785.4665343711467, + "top": 260.6743421052632 + }, + "points": [ + { + "x": 785.4665343711467, + "y": 260.6743421052632 + }, + { + "x": 818.0847333538841, + "y": 260.6743421052632 + }, + { + "x": 818.0847333538841, + "y": 323.83223684210526 + }, + { + "x": 785.4665343711467, + "y": 323.83223684210526 + } + ] + }, + { + "id": "yMjPcKtt7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 44.192355117139336, + "left": 723.3868295314427, + "top": 256.46383185135693 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 256.46383185135693 + }, + { + "x": 767.579184648582, + "y": 256.46383185135693 + }, + { + "x": 767.579184648582, + "y": 319.621726588199 + }, + { + "x": 723.3868295314427, + "y": 319.621726588199 + } + ] + }, + { + "id": "2RR_4cQUN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84213738692435, + "width": 54.714280209617755, + "left": 571.8701834155364, + "top": 415.4111842105263 + }, + "points": [ + { + "x": 571.8701834155364, + "y": 415.4111842105263 + }, + { + "x": 626.5844636251542, + "y": 415.4111842105263 + }, + { + "x": 626.5844636251542, + "y": 492.2533215974507 + }, + { + "x": 571.8701834155364, + "y": 492.2533215974507 + } + ] + }, + { + "id": "6ksTli_Fg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 82.10526315789474, + "width": 34.722564734895194, + "left": 551.8783716091245, + "top": 321.727005807977 + }, + "points": [ + { + "x": 551.8783716091245, + "y": 321.727005807977 + }, + { + "x": 586.6009363440197, + "y": 321.727005807977 + }, + { + "x": 586.6009363440197, + "y": 403.8322689658717 + }, + { + "x": 551.8783716091245, + "y": 403.8322689658717 + } + ] + }, + { + "id": "3CNi6g3Gu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68424265008224, + "width": 43.14022040690506, + "left": 506.6337854500617, + "top": 266.9901315789474 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 266.9901315789474 + }, + { + "x": 549.7740058569667, + "y": 266.9901315789474 + }, + { + "x": 549.7740058569667, + "y": 340.67437422902964 + }, + { + "x": 506.6337854500617, + "y": 340.67437422902964 + } + ] + }, + { + "id": "9as_JuEld", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42106066252056, + "width": 39.98362361282368, + "left": 494.00739827373616, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 195.41119224146794 + }, + { + "x": 533.9910218865598, + "y": 195.41119224146794 + }, + { + "x": 533.9910218865598, + "y": 243.8322529039885 + }, + { + "x": 494.00739827373616, + "y": 243.8322529039885 + } + ] + } + ], + "version": "2.2.0" + }, + "249e0daf70c8968a3b27c2e0d54f1f8c": { + "asset": { + "id": "249e0daf70c8968a3b27c2e0d54f1f8c", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46.15 + }, + "regions": [ + { + "id": "8OIZrMt7r", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 43.14012407521578, + "left": 911.730406134402, + "top": 217.5164794921875 + }, + "points": [ + { + "x": 911.730406134402, + "y": 217.5164794921875 + }, + { + "x": 954.8705302096178, + "y": 217.5164794921875 + }, + { + "x": 954.8705302096178, + "y": 280.6743742290296 + }, + { + "x": 911.730406134402, + "y": 280.6743742290296 + } + ] + }, + { + "id": "CFrUaXeSd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 42.08789303329223, + "left": 859.120491676942, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 859.120491676942, + "y": 224.88488448293586 + }, + { + "x": 901.2083847102343, + "y": 224.88488448293586 + }, + { + "x": 901.2083847102343, + "y": 302.7796373869243 + }, + { + "x": 859.120491676942, + "y": 302.7796373869243 + } + ] + }, + { + "id": "alTN8RJt3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.2105423776727, + "width": 42.0879893649815, + "left": 769.6835504007398, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 769.6835504007398, + "y": 250.1480423776727 + }, + { + "x": 811.7715397657213, + "y": 250.1480423776727 + }, + { + "x": 811.7715397657213, + "y": 334.3585847553454 + }, + { + "x": 769.6835504007398, + "y": 334.3585847553454 + } + ] + }, + { + "id": "hnaNT2ew1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 84.2105423776727, + "width": 39.9835272811344, + "left": 725.4911952836005, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 725.4911952836005, + "y": 250.1480423776727 + }, + { + "x": 765.4747225647349, + "y": 250.1480423776727 + }, + { + "x": 765.4747225647349, + "y": 334.3585847553454 + }, + { + "x": 725.4911952836005, + "y": 334.3585847553454 + } + ] + }, + { + "id": "cdMLabsL-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 47.348951911220716, + "left": 580.2877427558569, + "top": 405.9375 + }, + "points": [ + { + "x": 580.2877427558569, + "y": 405.9375 + }, + { + "x": 627.6366946670777, + "y": 405.9375 + }, + { + "x": 627.6366946670777, + "y": 475.4111842105263 + }, + { + "x": 580.2877427558569, + "y": 475.4111842105263 + } + ] + }, + { + "id": "-oSAg4i_w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.7368099814967, + "width": 38.93139257090012, + "left": 548.7217748150432, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 548.7217748150432, + "y": 312.2533215974507 + }, + { + "x": 587.6531673859433, + "y": 312.2533215974507 + }, + { + "x": 587.6531673859433, + "y": 386.9901315789474 + }, + { + "x": 548.7217748150432, + "y": 386.9901315789474 + } + ] + }, + { + "id": "Zc56smZFc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 38.93139257090012, + "left": 513.9992100801479, + "top": 266.9901315789474 + }, + "points": [ + { + "x": 513.9992100801479, + "y": 266.9901315789474 + }, + { + "x": 552.930602651048, + "y": 266.9901315789474 + }, + { + "x": 552.930602651048, + "y": 320.6743421052632 + }, + { + "x": 513.9992100801479, + "y": 320.6743421052632 + } + ] + }, + { + "id": "APjqm9skd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05263960988898, + "width": 46.29681720098644, + "left": 494.00739827373616, + "top": 201.72698171515214 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 201.72698171515214 + }, + { + "x": 540.3042154747226, + "y": 201.72698171515214 + }, + { + "x": 540.3042154747226, + "y": 262.77962132504115 + }, + { + "x": 494.00739827373616, + "y": 262.77962132504115 + } + ] + } + ], + "version": "2.2.0" + }, + "f8c4fb66b889d5ccc477842c587a473a": { + "asset": { + "id": "f8c4fb66b889d5ccc477842c587a473a", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.7 + }, + "regions": [ + { + "id": "XnBzYABS1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 50.5055487053021, + "left": 909.6260403822441, + "top": 206.99013157894737 + }, + "points": [ + { + "x": 909.6260403822441, + "y": 206.99013157894737 + }, + { + "x": 960.1315890875462, + "y": 206.99013157894737 + }, + { + "x": 960.1315890875462, + "y": 278.56909500925167 + }, + { + "x": 909.6260403822441, + "y": 278.56909500925167 + } + ] + }, + { + "id": "YYxHGBmW6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 39.9835272811344, + "left": 851.7550670468557, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 237.51646343030427 + }, + { + "x": 891.7385943279902, + "y": 237.51646343030427 + }, + { + "x": 891.7385943279902, + "y": 293.305953176398 + }, + { + "x": 851.7550670468557, + "y": 293.305953176398 + } + ] + }, + { + "id": "7YKHKrS2D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 38.93139257090012, + "left": 768.6313193588163, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 768.6313193588163, + "y": 251.20065789473685 + }, + { + "x": 807.5627119297164, + "y": 251.20065789473685 + }, + { + "x": 807.5627119297164, + "y": 323.83223684210526 + }, + { + "x": 768.6313193588163, + "y": 323.83223684210526 + } + ] + }, + { + "id": "aB1DuqQp5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 45.244586159062884, + "left": 708.6559802712701, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 708.6559802712701, + "y": 254.35855263157896 + }, + { + "x": 753.9005664303329, + "y": 254.35855263157896 + }, + { + "x": 753.9005664303329, + "y": 316.46383185135693 + }, + { + "x": 708.6559802712701, + "y": 316.46383185135693 + } + ] + }, + { + "id": "WcEdbJ7Wm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 45.24448982737361, + "left": 578.1833770036991, + "top": 400.67437422902964 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 400.67437422902964 + }, + { + "x": 623.4278668310727, + "y": 400.67437422902964 + }, + { + "x": 623.4278668310727, + "y": 473.305953176398 + }, + { + "x": 578.1833770036991, + "y": 473.305953176398 + } + ] + }, + { + "id": "BA9OuRQRF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 35.77469944512947, + "left": 540.3042154747226, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 317.51644736842104 + }, + { + "x": 576.0789149198521, + "y": 317.51644736842104 + }, + { + "x": 576.0789149198521, + "y": 378.5691110711349 + }, + { + "x": 540.3042154747226, + "y": 378.5691110711349 + } + ] + }, + { + "id": "lTf_gOFKm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 36.82693048705302, + "left": 495.05962931565966, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 495.05962931565966, + "y": 282.7796052631579 + }, + { + "x": 531.8865598027127, + "y": 282.7796052631579 + }, + { + "x": 531.8865598027127, + "y": 339.6217105263158 + }, + { + "x": 495.05962931565966, + "y": 339.6217105263158 + } + ] + }, + { + "id": "GtLiT5pQb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 29.46150585696671, + "left": 486.6420699753391, + "top": 216.4638157894737 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 216.4638157894737 + }, + { + "x": 516.1035758323058, + "y": 216.4638157894737 + }, + { + "x": 516.1035758323058, + "y": 272.25330553556745 + }, + { + "x": 486.6420699753391, + "y": 272.25330553556745 + } + ] + } + ], + "version": "2.2.0" + }, + "cffeb813a3df74dd394b2630df88747b": { + "asset": { + "id": "cffeb813a3df74dd394b2630df88747b", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.85 + }, + "regions": [ + { + "id": "bkImw1TfI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57891524465461, + "width": 37.879161528976574, + "left": 910.6781750924785, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 910.6781750924785, + "y": 208.0427952816612 + }, + { + "x": 948.557336621455, + "y": 208.0427952816612 + }, + { + "x": 948.557336621455, + "y": 279.6217105263158 + }, + { + "x": 910.6781750924785, + "y": 279.6217105263158 + } + ] + }, + { + "id": "IvJlgVPqP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 39.98362361282368, + "left": 850.7028360049322, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 850.7028360049322, + "y": 226.99016370271383 + }, + { + "x": 890.6864596177559, + "y": 226.99016370271383 + }, + { + "x": 890.6864596177559, + "y": 296.46384791324016 + }, + { + "x": 850.7028360049322, + "y": 296.46384791324016 + } + ] + }, + { + "id": "8Bym0lIvS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.05259945518092, + "width": 35.77469944512947, + "left": 780.2055718249076, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 780.2055718249076, + "y": 242.77963738692435 + }, + { + "x": 815.980271270037, + "y": 242.77963738692435 + }, + { + "x": 815.980271270037, + "y": 323.83223684210526 + }, + { + "x": 780.2055718249076, + "y": 323.83223684210526 + } + ] + }, + { + "id": "_whLoeGYD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68424265008224, + "width": 42.0879893649815, + "left": 714.9691738594328, + "top": 254.35855263157896 + }, + "points": [ + { + "x": 714.9691738594328, + "y": 254.35855263157896 + }, + { + "x": 757.0571632244144, + "y": 254.35855263157896 + }, + { + "x": 757.0571632244144, + "y": 328.0427952816612 + }, + { + "x": 714.9691738594328, + "y": 328.0427952816612 + } + ] + }, + { + "id": "wClff64CZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 52.60991445745993, + "left": 573.9745491676942, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 394.3585847553454 + }, + { + "x": 626.5844636251542, + "y": 394.3585847553454 + }, + { + "x": 626.5844636251542, + "y": 471.20067395662005 + }, + { + "x": 573.9745491676942, + "y": 471.20067395662005 + } + ] + }, + { + "id": "eux90evOf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 42.08789303329223, + "left": 543.4608122688039, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 543.4608122688039, + "y": 315.41121633429276 + }, + { + "x": 585.5487053020962, + "y": 315.41121633429276 + }, + { + "x": 585.5487053020962, + "y": 384.88490054481906 + }, + { + "x": 543.4608122688039, + "y": 384.88490054481906 + } + ] + }, + { + "id": "68nFXtEpG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 35.77479577681874, + "left": 500.3205918618989, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 500.3205918618989, + "y": 277.5164794921875 + }, + { + "x": 536.0953876387176, + "y": 277.5164794921875 + }, + { + "x": 536.0953876387176, + "y": 326.9901315789474 + }, + { + "x": 500.3205918618989, + "y": 326.9901315789474 + } + ] + }, + { + "id": "SU_i_DkwH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 30.513736898890258, + "left": 488.74643572749693, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 488.74643572749693, + "y": 211.20069001850328 + }, + { + "x": 519.2601726263872, + "y": 211.20069001850328 + }, + { + "x": 519.2601726263872, + "y": 265.93751606188323 + }, + { + "x": 488.74643572749693, + "y": 265.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "a834d2f8f1b5cb683dabdad6e1036b7a": { + "asset": { + "id": "a834d2f8f1b5cb683dabdad6e1036b7a", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=46.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=46", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 46 + }, + "regions": [ + { + "id": "1bP2mYlzc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.73685816714638, + "width": 42.0879893649815, + "left": 911.730406134402, + "top": 196.4638318513569 + }, + "points": [ + { + "x": 911.730406134402, + "y": 196.4638318513569 + }, + { + "x": 953.8183954993835, + "y": 196.4638318513569 + }, + { + "x": 953.8183954993835, + "y": 271.2006900185033 + }, + { + "x": 911.730406134402, + "y": 271.2006900185033 + } + ] + }, + { + "id": "ec2WK7ixk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.05259945518092, + "width": 46.29681720098644, + "left": 847.5462392108508, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 220.6743742290296 + }, + { + "x": 893.8430564118372, + "y": 220.6743742290296 + }, + { + "x": 893.8430564118372, + "y": 301.7269736842105 + }, + { + "x": 847.5462392108508, + "y": 301.7269736842105 + } + ] + }, + { + "id": "mq9oeHwft", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 47.348951911220716, + "left": 766.5269536066585, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 766.5269536066585, + "y": 242.77963738692435 + }, + { + "x": 813.8759055178791, + "y": 242.77963738692435 + }, + { + "x": 813.8759055178791, + "y": 310.1480423776727 + }, + { + "x": 766.5269536066585, + "y": 310.1480423776727 + } + ] + }, + { + "id": "_a1x2SyZy5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 28.40937114673243, + "left": 719.1780016954377, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 719.1780016954377, + "y": 252.25332159745065 + }, + { + "x": 747.5873728421702, + "y": 252.25332159745065 + }, + { + "x": 747.5873728421702, + "y": 298.56907894736844 + }, + { + "x": 719.1780016954377, + "y": 298.56907894736844 + } + ] + }, + { + "id": "u2-Jf_3Bz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 92.63161107113487, + "width": 28.40937114673243, + "left": 587.6531673859433, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 396.4638157894737 + }, + { + "x": 616.0625385326757, + "y": 396.4638157894737 + }, + { + "x": 616.0625385326757, + "y": 489.09542686060854 + }, + { + "x": 587.6531673859433, + "y": 489.09542686060854 + } + ] + }, + { + "id": "C2nNnTRdG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 51.557779747225645, + "left": 539.2519844327991, + "top": 302.7796373869243 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 302.7796373869243 + }, + { + "x": 590.8097641800247, + "y": 302.7796373869243 + }, + { + "x": 590.8097641800247, + "y": 378.5691110711349 + }, + { + "x": 539.2519844327991, + "y": 378.5691110711349 + } + ] + }, + { + "id": "dZszDxNA_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 37.879161528976574, + "left": 502.425053945746, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 502.425053945746, + "y": 268.0427952816612 + }, + { + "x": 540.3042154747226, + "y": 268.0427952816612 + }, + { + "x": 540.3042154747226, + "y": 320.6743421052632 + }, + { + "x": 502.425053945746, + "y": 320.6743421052632 + } + ] + }, + { + "id": "imySNdfSD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63160304019326, + "width": 39.9835272811344, + "left": 482.43324213933414, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 482.43324213933414, + "y": 195.41119224146794 + }, + { + "x": 522.4167694204685, + "y": 195.41119224146794 + }, + { + "x": 522.4167694204685, + "y": 268.0427952816612 + }, + { + "x": 482.43324213933414, + "y": 268.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "0c1091da41faf74bd3ffde3a0474f311": { + "asset": { + "id": "0c1091da41faf74bd3ffde3a0474f311", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.55 + }, + "regions": [ + { + "id": "3VoZnBfA7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 29.46160218865598, + "left": 485.58983893341554, + "top": 224.88488448293586 + }, + "points": [ + { + "x": 485.58983893341554, + "y": 224.88488448293586 + }, + { + "x": 515.0514411220715, + "y": 224.88488448293586 + }, + { + "x": 515.0514411220715, + "y": 288.04277921977797 + }, + { + "x": 485.58983893341554, + "y": 288.04277921977797 + } + ] + }, + { + "id": "1XfKvvVKA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 37.879161528976574, + "left": 492.95526356350183, + "top": 296.46384791324016 + }, + "points": [ + { + "x": 492.95526356350183, + "y": 296.46384791324016 + }, + { + "x": 530.8344250924785, + "y": 296.46384791324016 + }, + { + "x": 530.8344250924785, + "y": 355.4111842105263 + }, + { + "x": 492.95526356350183, + "y": 355.4111842105263 + } + ] + }, + { + "id": "c9qhGjRlw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52634791324013, + "width": 36.8270268187423, + "left": 544.5129469790382, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 544.5129469790382, + "y": 326.9901315789474 + }, + { + "x": 581.3399737977805, + "y": 326.9901315789474 + }, + { + "x": 581.3399737977805, + "y": 397.5164794921875 + }, + { + "x": 544.5129469790382, + "y": 397.5164794921875 + } + ] + }, + { + "id": "miw10d3hK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 87.36838892886513, + "width": 44.192355117139336, + "left": 584.4965705918619, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 584.4965705918619, + "y": 406.9901637027138 + }, + { + "x": 628.6889257090013, + "y": 406.9901637027138 + }, + { + "x": 628.6889257090013, + "y": 494.35855263157896 + }, + { + "x": 584.4965705918619, + "y": 494.35855263157896 + } + ] + }, + { + "id": "z8X_vkWwn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31577341180099, + "width": 34.722564734895194, + "left": 711.8125770653514, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 711.8125770653514, + "y": 255.41121633429276 + }, + { + "x": 746.5351418002466, + "y": 255.41121633429276 + }, + { + "x": 746.5351418002466, + "y": 341.72698974609375 + }, + { + "x": 711.8125770653514, + "y": 341.72698974609375 + } + ] + }, + { + "id": "PvwbhCbou", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 37.879161528976574, + "left": 914.8870029284834, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 914.8870029284834, + "y": 215.41120027240953 + }, + { + "x": 952.7661644574599, + "y": 215.41120027240953 + }, + { + "x": 952.7661644574599, + "y": 293.305953176398 + }, + { + "x": 914.8870029284834, + "y": 293.305953176398 + } + ] + }, + { + "id": "E6OWVK9bE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 37.879161528976574, + "left": 857.0160295930949, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 857.0160295930949, + "y": 231.20067395662008 + }, + { + "x": 894.8951911220715, + "y": 231.20067395662008 + }, + { + "x": 894.8951911220715, + "y": 301.7269736842105 + }, + { + "x": 857.0160295930949, + "y": 301.7269736842105 + } + ] + }, + { + "id": "KRNoD40ir_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 49.45341399506782, + "left": 762.3181257706535, + "top": 258.5691110711349 + }, + "points": [ + { + "x": 762.3181257706535, + "y": 258.5691110711349 + }, + { + "x": 811.7715397657213, + "y": 258.5691110711349 + }, + { + "x": 811.7715397657213, + "y": 318.5691110711349 + }, + { + "x": 762.3181257706535, + "y": 318.5691110711349 + } + ] + } + ], + "version": "2.2.0" + }, + "756765628c1240f08cd7931196946b89": { + "asset": { + "id": "756765628c1240f08cd7931196946b89", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.4 + }, + "regions": [ + { + "id": "eGJ4K3bsM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.4210205078125, + "width": 46.29672086929717, + "left": 902.2606157521578, + "top": 214.3585847553454 + }, + "points": [ + { + "x": 902.2606157521578, + "y": 214.3585847553454 + }, + { + "x": 948.557336621455, + "y": 214.3585847553454 + }, + { + "x": 948.557336621455, + "y": 282.7796052631579 + }, + { + "x": 902.2606157521578, + "y": 282.7796052631579 + } + ] + }, + { + "id": "XpZwuuoOW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 39.9835272811344, + "left": 848.5984702527744, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 848.5984702527744, + "y": 237.51646343030427 + }, + { + "x": 888.5819975339087, + "y": 237.51646343030427 + }, + { + "x": 888.5819975339087, + "y": 311.2006578947368 + }, + { + "x": 848.5984702527744, + "y": 311.2006578947368 + } + ] + }, + { + "id": "4oIuoNdp7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.7368099814967, + "width": 39.9835272811344, + "left": 770.7357814426634, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 770.7357814426634, + "y": 264.88490054481906 + }, + { + "x": 810.7193087237978, + "y": 264.88490054481906 + }, + { + "x": 810.7193087237978, + "y": 339.6217105263158 + }, + { + "x": 770.7357814426634, + "y": 339.6217105263158 + } + ] + }, + { + "id": "0IvgjJmED", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 35.77479577681874, + "left": 716.0214049013564, + "top": 279.6217105263158 + }, + "points": [ + { + "x": 716.0214049013564, + "y": 279.6217105263158 + }, + { + "x": 751.7962006781751, + "y": 279.6217105263158 + }, + { + "x": 751.7962006781751, + "y": 344.8848844829359 + }, + { + "x": 716.0214049013564, + "y": 344.8848844829359 + } + ] + }, + { + "id": "MSXE3b0eM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 91.57894736842105, + "width": 59.97533908754624, + "left": 562.4003930332923, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 396.4638157894737 + }, + { + "x": 622.3757321208385, + "y": 396.4638157894737 + }, + { + "x": 622.3757321208385, + "y": 488.04276315789474 + }, + { + "x": 562.4003930332923, + "y": 488.04276315789474 + } + ] + }, + { + "id": "bJSK5fueC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 35.77479577681874, + "left": 539.2519844327991, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 329.0954107987253 + }, + { + "x": 575.0267802096178, + "y": 329.0954107987253 + }, + { + "x": 575.0267802096178, + "y": 392.25330553556745 + }, + { + "x": 539.2519844327991, + "y": 392.25330553556745 + } + ] + }, + { + "id": "nMjbSLkig", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 46.29681720098644, + "left": 490.85080147965476, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 490.85080147965476, + "y": 300.6743581671464 + }, + { + "x": 537.1476186806412, + "y": 300.6743581671464 + }, + { + "x": 537.1476186806412, + "y": 363.8322529039885 + }, + { + "x": 490.85080147965476, + "y": 363.8322529039885 + } + ] + }, + { + "id": "2ZmX8mDYI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 35.77479577681874, + "left": 471.91122071516645, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 242.77963738692435 + }, + { + "x": 507.6860164919852, + "y": 242.77963738692435 + }, + { + "x": 507.6860164919852, + "y": 301.7269736842105 + }, + { + "x": 471.91122071516645, + "y": 301.7269736842105 + } + ] + } + ], + "version": "2.2.0" + }, + "637e22dd35025c1f359ab447163e98e6": { + "asset": { + "id": "637e22dd35025c1f359ab447163e98e6", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.35 + }, + "regions": [ + { + "id": "wCL9LZhgK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 37.879161528976574, + "left": 910.6781750924785, + "top": 223.83226896587172 + }, + "points": [ + { + "x": 910.6781750924785, + "y": 223.83226896587172 + }, + { + "x": 948.557336621455, + "y": 223.83226896587172 + }, + { + "x": 948.557336621455, + "y": 282.7796052631579 + }, + { + "x": 910.6781750924785, + "y": 282.7796052631579 + } + ] + }, + { + "id": "tYzz8XUg0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.0526476408306, + "width": 31.56596794081381, + "left": 851.7550670468557, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 238.5690789473684 + }, + { + "x": 883.3210349876696, + "y": 238.5690789473684 + }, + { + "x": 883.3210349876696, + "y": 319.621726588199 + }, + { + "x": 851.7550670468557, + "y": 319.621726588199 + } + ] + }, + { + "id": "EEcCXJk-X", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 41.035758323057955, + "left": 771.7879161528977, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 771.7879161528977, + "y": 265.93751606188323 + }, + { + "x": 812.8236744759556, + "y": 265.93751606188323 + }, + { + "x": 812.8236744759556, + "y": 337.5164794921875 + }, + { + "x": 771.7879161528977, + "y": 337.5164794921875 + } + ] + }, + { + "id": "2et98fh_K", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 32.61819898273736, + "left": 716.0214049013564, + "top": 274.3585847553454 + }, + "points": [ + { + "x": 716.0214049013564, + "y": 274.3585847553454 + }, + { + "x": 748.6396038840937, + "y": 274.3585847553454 + }, + { + "x": 748.6396038840937, + "y": 340.67437422902964 + }, + { + "x": 716.0214049013564, + "y": 340.67437422902964 + } + ] + }, + { + "id": "DQeJujCBg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.47371633429276, + "width": 41.035758323057955, + "left": 578.1833770036991, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 399.6217105263158 + }, + { + "x": 619.219135326757, + "y": 399.6217105263158 + }, + { + "x": 619.219135326757, + "y": 489.09542686060854 + }, + { + "x": 578.1833770036991, + "y": 489.09542686060854 + } + ] + }, + { + "id": "G9gJ9Mj0F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 36.8270268187423, + "left": 535.0431565967941, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 334.3585847553454 + }, + { + "x": 571.8701834155364, + "y": 334.3585847553454 + }, + { + "x": 571.8701834155364, + "y": 408.04277921977797 + }, + { + "x": 535.0431565967941, + "y": 408.04277921977797 + } + ] + }, + { + "id": "03z9sMRFx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 29.46160218865598, + "left": 494.00739827373616, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 300.6743581671464 + }, + { + "x": 523.4690004623922, + "y": 300.6743581671464 + }, + { + "x": 523.4690004623922, + "y": 363.8322529039885 + }, + { + "x": 494.00739827373616, + "y": 363.8322529039885 + } + ] + }, + { + "id": "O3oWP7GhC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 31.56596794081381, + "left": 479.2766453452528, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 245.93753212376646 + }, + { + "x": 510.8426132860666, + "y": 245.93753212376646 + }, + { + "x": 510.8426132860666, + "y": 302.7796373869243 + }, + { + "x": 479.2766453452528, + "y": 302.7796373869243 + } + ] + } + ], + "version": "2.2.0" + }, + "d39631af07beed23519c7bfe26003833": { + "asset": { + "id": "d39631af07beed23519c7bfe26003833", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.2 + }, + "regions": [ + { + "id": "LyvzCt15j", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 33.67033369297164, + "left": 918.0435997225647, + "top": 214.3585847553454 + }, + "points": [ + { + "x": 918.0435997225647, + "y": 214.3585847553454 + }, + { + "x": 951.7139334155364, + "y": 214.3585847553454 + }, + { + "x": 951.7139334155364, + "y": 281.72698974609375 + }, + { + "x": 918.0435997225647, + "y": 281.72698974609375 + } + ] + }, + { + "id": "RS9z5wgoF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 90.52628366570724, + "width": 46.29672086929717, + "left": 845.441873458693, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 845.441873458693, + "y": 233.30595317639802 + }, + { + "x": 891.7385943279902, + "y": 233.30595317639802 + }, + { + "x": 891.7385943279902, + "y": 323.83223684210526 + }, + { + "x": 845.441873458693, + "y": 323.83223684210526 + } + ] + }, + { + "id": "qH0A_CRfck", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 36.82693048705302, + "left": 772.8401471948213, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 772.8401471948213, + "y": 264.88490054481906 + }, + { + "x": 809.6670776818743, + "y": 264.88490054481906 + }, + { + "x": 809.6670776818743, + "y": 334.3585847553454 + }, + { + "x": 772.8401471948213, + "y": 334.3585847553454 + } + ] + }, + { + "id": "atjLw0OK_m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 34.722564734895194, + "left": 710.7604423551171, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 710.7604423551171, + "y": 278.56909500925167 + }, + { + "x": 745.4830070900124, + "y": 278.56909500925167 + }, + { + "x": 745.4830070900124, + "y": 338.56909500925167 + }, + { + "x": 710.7604423551171, + "y": 338.56909500925167 + } + ] + }, + { + "id": "7CGdKqFLr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 43.14012407521578, + "left": 568.713586621455, + "top": 414.3585686934622 + }, + "points": [ + { + "x": 568.713586621455, + "y": 414.3585686934622 + }, + { + "x": 611.8537106966708, + "y": 414.3585686934622 + }, + { + "x": 611.8537106966708, + "y": 475.4111842105263 + }, + { + "x": 568.713586621455, + "y": 475.4111842105263 + } + ] + }, + { + "id": "kiAHlK3Fg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 41.035758323057955, + "left": 528.7299630086313, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 528.7299630086313, + "y": 335.41120027240953 + }, + { + "x": 569.7657213316893, + "y": 335.41120027240953 + }, + { + "x": 569.7657213316893, + "y": 383.83223684210526 + }, + { + "x": 528.7299630086313, + "y": 383.83223684210526 + } + ] + }, + { + "id": "MRYNDkx4V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 26.304909062885326, + "left": 492.95526356350183, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 492.95526356350183, + "y": 305.93753212376646 + }, + { + "x": 519.2601726263872, + "y": 305.93753212376646 + }, + { + "x": 519.2601726263872, + "y": 368.04276315789474 + }, + { + "x": 492.95526356350183, + "y": 368.04276315789474 + } + ] + }, + { + "id": "QgdQfvNJ5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 23.14840860049322, + "left": 479.2766453452528, + "top": 256.46383185135693 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 256.46383185135693 + }, + { + "x": 502.425053945746, + "y": 256.46383185135693 + }, + { + "x": 502.425053945746, + "y": 302.7796373869243 + }, + { + "x": 479.2766453452528, + "y": 302.7796373869243 + } + ] + } + ], + "version": "2.2.0" + }, + "4443a26580666249c210cfbd3e1fd143": { + "asset": { + "id": "4443a26580666249c210cfbd3e1fd143", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=45.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=45.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 45.05 + }, + "regions": [ + { + "id": "C_AGh8WAo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 36.8270268187423, + "left": 916.9913686806412, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 916.9913686806412, + "y": 230.1480584395559 + }, + { + "x": 953.8183954993835, + "y": 230.1480584395559 + }, + { + "x": 953.8183954993835, + "y": 297.51646343030427 + }, + { + "x": 916.9913686806412, + "y": 297.51646343030427 + } + ] + }, + { + "id": "uZ9J6PNW4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 79.99998393811678, + "width": 41.035758323057955, + "left": 847.5462392108508, + "top": 240.67435816714638 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 240.67435816714638 + }, + { + "x": 888.5819975339087, + "y": 240.67435816714638 + }, + { + "x": 888.5819975339087, + "y": 320.6743421052632 + }, + { + "x": 847.5462392108508, + "y": 320.6743421052632 + } + ] + }, + { + "id": "5lbnHkZNc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 47.348951911220716, + "left": 762.3181257706535, + "top": 272.25330553556745 + }, + "points": [ + { + "x": 762.3181257706535, + "y": 272.25330553556745 + }, + { + "x": 809.6670776818743, + "y": 272.25330553556745 + }, + { + "x": 809.6670776818743, + "y": 340.67437422902964 + }, + { + "x": 762.3181257706535, + "y": 340.67437422902964 + } + ] + }, + { + "id": "xa83i7hKe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31577341180099, + "width": 46.29672086929717, + "left": 706.5516145191123, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 706.5516145191123, + "y": 275.41120027240953 + }, + { + "x": 752.8483353884094, + "y": 275.41120027240953 + }, + { + "x": 752.8483353884094, + "y": 361.7269736842105 + }, + { + "x": 706.5516145191123, + "y": 361.7269736842105 + } + ] + }, + { + "id": "pPbwMpRae", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 44.192355117139336, + "left": 570.8179523736128, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 404.8848844829359 + }, + { + "x": 615.0103074907522, + "y": 404.8848844829359 + }, + { + "x": 615.0103074907522, + "y": 472.2532894736842 + }, + { + "x": 570.8179523736128, + "y": 472.2532894736842 + } + ] + }, + { + "id": "46AgmtRPQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 38.93139257090012, + "left": 531.8865598027127, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 531.8865598027127, + "y": 337.5164794921875 + }, + { + "x": 570.8179523736128, + "y": 337.5164794921875 + }, + { + "x": 570.8179523736128, + "y": 406.9901637027138 + }, + { + "x": 531.8865598027127, + "y": 406.9901637027138 + } + ] + }, + { + "id": "8vFkHz8VT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 27.357140104808877, + "left": 491.9030325215783, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 491.9030325215783, + "y": 318.5691110711349 + }, + { + "x": 519.2601726263872, + "y": 318.5691110711349 + }, + { + "x": 519.2601726263872, + "y": 394.3585847553454 + }, + { + "x": 491.9030325215783, + "y": 394.3585847553454 + } + ] + }, + { + "id": "nJkAAMfUB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 30.513736898890258, + "left": 474.0156827990136, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 474.0156827990136, + "y": 264.88490054481906 + }, + { + "x": 504.52941969790385, + "y": 264.88490054481906 + }, + { + "x": 504.52941969790385, + "y": 337.5164794921875 + }, + { + "x": 474.0156827990136, + "y": 337.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "cc5c5d3f68567643b9cfc6ff1e61870f": { + "asset": { + "id": "cc5c5d3f68567643b9cfc6ff1e61870f", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44.9 + }, + "regions": [ + { + "id": "1WYFzSxXZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 38.93129623921085, + "left": 922.2524275585697, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 922.2524275585697, + "y": 231.20067395662008 + }, + { + "x": 961.1837237977805, + "y": 231.20067395662008 + }, + { + "x": 961.1837237977805, + "y": 302.7796373869243 + }, + { + "x": 922.2524275585697, + "y": 302.7796373869243 + } + ] + }, + { + "id": "eK5ERP--H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89470471833882, + "width": 39.9835272811344, + "left": 845.441873458693, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 845.441873458693, + "y": 249.09542686060857 + }, + { + "x": 885.4254007398274, + "y": 249.09542686060857 + }, + { + "x": 885.4254007398274, + "y": 326.9901315789474 + }, + { + "x": 845.441873458693, + "y": 326.9901315789474 + } + ] + }, + { + "id": "Zq6ho65JW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26312577097039, + "width": 38.93139257090012, + "left": 771.7879161528977, + "top": 274.3585847553454 + }, + "points": [ + { + "x": 771.7879161528977, + "y": 274.3585847553454 + }, + { + "x": 810.7193087237978, + "y": 274.3585847553454 + }, + { + "x": 810.7193087237978, + "y": 339.6217105263158 + }, + { + "x": 771.7879161528977, + "y": 339.6217105263158 + } + ] + }, + { + "id": "odcIrf75s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 34.722564734895194, + "left": 722.3345984895191, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 722.3345984895191, + "y": 283.8322689658717 + }, + { + "x": 757.0571632244144, + "y": 283.8322689658717 + }, + { + "x": 757.0571632244144, + "y": 345.9375 + }, + { + "x": 722.3345984895191, + "y": 345.9375 + } + ] + }, + { + "id": "YAbd4Es3K", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 41.035758323057955, + "left": 573.9745491676942, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 408.04277921977797 + }, + { + "x": 615.0103074907522, + "y": 408.04277921977797 + }, + { + "x": 615.0103074907522, + "y": 476.46384791324016 + }, + { + "x": 573.9745491676942, + "y": 476.46384791324016 + } + ] + }, + { + "id": "LpBDyeAFC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 27.357140104808877, + "left": 549.7740058569667, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 349.09539473684214 + }, + { + "x": 577.1311459617756, + "y": 349.09539473684214 + }, + { + "x": 577.1311459617756, + "y": 400.67437422902964 + }, + { + "x": 549.7740058569667, + "y": 400.67437422902964 + } + ] + }, + { + "id": "g2W7e2AU2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 38.93129623921085, + "left": 486.6420699753391, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 324.88490054481906 + }, + { + "x": 525.57336621455, + "y": 324.88490054481906 + }, + { + "x": 525.57336621455, + "y": 388.0427952816612 + }, + { + "x": 486.6420699753391, + "y": 388.0427952816612 + } + ] + }, + { + "id": "fNgKsTt5t", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 41.035758323057955, + "left": 467.7024892108508, + "top": 269.0954107987253 + }, + "points": [ + { + "x": 467.7024892108508, + "y": 269.0954107987253 + }, + { + "x": 508.73824753390875, + "y": 269.0954107987253 + }, + { + "x": 508.73824753390875, + "y": 341.72698974609375 + }, + { + "x": 467.7024892108508, + "y": 341.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "a589c45d49caa2b7db6092e8cfed51be": { + "asset": { + "id": "a589c45d49caa2b7db6092e8cfed51be", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44.75 + }, + "regions": [ + { + "id": "3AKmuA3TV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 49.45331766337855, + "left": 925.409024352651, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 925.409024352651, + "y": 234.35856869346216 + }, + { + "x": 974.8623420160296, + "y": 234.35856869346216 + }, + { + "x": 974.8623420160296, + "y": 293.305953176398 + }, + { + "x": 925.409024352651, + "y": 293.305953176398 + } + ] + }, + { + "id": "TqfpCxUB7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21055843955592, + "width": 45.244586159062884, + "left": 851.7550670468557, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 251.20065789473685 + }, + { + "x": 896.9996532059187, + "y": 251.20065789473685 + }, + { + "x": 896.9996532059187, + "y": 315.41121633429276 + }, + { + "x": 851.7550670468557, + "y": 315.41121633429276 + } + ] + }, + { + "id": "FN1C5aNL5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 42.08789303329223, + "left": 780.2055718249076, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 780.2055718249076, + "y": 276.4638157894737 + }, + { + "x": 822.2934648581997, + "y": 276.4638157894737 + }, + { + "x": 822.2934648581997, + "y": 337.5164794921875 + }, + { + "x": 780.2055718249076, + "y": 337.5164794921875 + } + ] + }, + { + "id": "D9p0ppDKL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 30.513736898890258, + "left": 725.4911952836005, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 725.4911952836005, + "y": 282.7796052631579 + }, + { + "x": 756.0049321824907, + "y": 282.7796052631579 + }, + { + "x": 756.0049321824907, + "y": 351.20067395662005 + }, + { + "x": 725.4911952836005, + "y": 351.20067395662005 + } + ] + }, + { + "id": "NLOhU6bbf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 29.46160218865598, + "left": 586.6009363440197, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 396.4638157894737 + }, + { + "x": 616.0625385326757, + "y": 396.4638157894737 + }, + { + "x": 616.0625385326757, + "y": 464.8848844829359 + }, + { + "x": 586.6009363440197, + "y": 464.8848844829359 + } + ] + }, + { + "id": "odaSU1WaA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.73685816714638, + "width": 43.14022040690506, + "left": 535.0431565967941, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 354.3585686934622 + }, + { + "x": 578.1833770036991, + "y": 354.3585686934622 + }, + { + "x": 578.1833770036991, + "y": 429.09542686060854 + }, + { + "x": 535.0431565967941, + "y": 429.09542686060854 + } + ] + }, + { + "id": "lwZwDY1Fv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.47371633429276, + "width": 41.035758323057955, + "left": 489.7986667694205, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 489.7986667694205, + "y": 330.1480263157895 + }, + { + "x": 530.8344250924785, + "y": 330.1480263157895 + }, + { + "x": 530.8344250924785, + "y": 419.62174265008224 + }, + { + "x": 489.7986667694205, + "y": 419.62174265008224 + } + ] + }, + { + "id": "LnmJqdrxU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 43.14022040690506, + "left": 468.7546239210851, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 468.7546239210851, + "y": 288.04277921977797 + }, + { + "x": 511.89484432799014, + "y": 288.04277921977797 + }, + { + "x": 511.89484432799014, + "y": 341.72698974609375 + }, + { + "x": 468.7546239210851, + "y": 341.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "e5c1ecdf51baf9a56b647acc68c1dd12": { + "asset": { + "id": "e5c1ecdf51baf9a56b647acc68c1dd12", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44.6 + }, + "regions": [ + { + "id": "wIFvH41fv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 35.77479577681874, + "left": 939.0875462392108, + "top": 240.67435816714638 + }, + "points": [ + { + "x": 939.0875462392108, + "y": 240.67435816714638 + }, + { + "x": 974.8623420160296, + "y": 240.67435816714638 + }, + { + "x": 974.8623420160296, + "y": 308.04276315789474 + }, + { + "x": 939.0875462392108, + "y": 308.04276315789474 + } + ] + }, + { + "id": "sFhoGauTO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 45.24448982737361, + "left": 855.9638948828607, + "top": 263.83223684210526 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 263.83223684210526 + }, + { + "x": 901.2083847102343, + "y": 263.83223684210526 + }, + { + "x": 901.2083847102343, + "y": 339.6217105263158 + }, + { + "x": 855.9638948828607, + "y": 339.6217105263158 + } + ] + }, + { + "id": "fs9MplxRK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 37.879161528976574, + "left": 782.3099375770654, + "top": 285.9375 + }, + "points": [ + { + "x": 782.3099375770654, + "y": 285.9375 + }, + { + "x": 820.1890991060419, + "y": 285.9375 + }, + { + "x": 820.1890991060419, + "y": 357.51646343030427 + }, + { + "x": 782.3099375770654, + "y": 357.51646343030427 + } + ] + }, + { + "id": "OjnYeFq_H", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 37.879161528976574, + "left": 730.7521578298397, + "top": 290.14805843955594 + }, + "points": [ + { + "x": 730.7521578298397, + "y": 290.14805843955594 + }, + { + "x": 768.6313193588163, + "y": 290.14805843955594 + }, + { + "x": 768.6313193588163, + "y": 365.93753212376646 + }, + { + "x": 730.7521578298397, + "y": 365.93753212376646 + } + ] + }, + { + "id": "e5u_79fdM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 35.77469944512947, + "left": 587.6531673859433, + "top": 405.9375 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 405.9375 + }, + { + "x": 623.4278668310727, + "y": 405.9375 + }, + { + "x": 623.4278668310727, + "y": 477.51646343030427 + }, + { + "x": 587.6531673859433, + "y": 477.51646343030427 + } + ] + }, + { + "id": "6Wxut65TQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 37.879161528976574, + "left": 542.4085812268804, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 542.4085812268804, + "y": 348.04277921977797 + }, + { + "x": 580.2877427558569, + "y": 348.04277921977797 + }, + { + "x": 580.2877427558569, + "y": 412.2532894736842 + }, + { + "x": 542.4085812268804, + "y": 412.2532894736842 + } + ] + }, + { + "id": "GUA_wZhmk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68424265008224, + "width": 25.25277435265105, + "left": 499.2684571516646, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 499.2684571516646, + "y": 333.30592105263156 + }, + { + "x": 524.5212315043157, + "y": 333.30592105263156 + }, + { + "x": 524.5212315043157, + "y": 406.9901637027138 + }, + { + "x": 499.2684571516646, + "y": 406.9901637027138 + } + ] + }, + { + "id": "BzETrjlIh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 37.879161528976574, + "left": 472.96345175709, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 472.96345175709, + "y": 288.04277921977797 + }, + { + "x": 510.8426132860666, + "y": 288.04277921977797 + }, + { + "x": 510.8426132860666, + "y": 340.67437422902964 + }, + { + "x": 472.96345175709, + "y": 340.67437422902964 + } + ] + } + ], + "version": "2.2.0" + }, + "777ba2188d8c45137a2f005fafe239d3": { + "asset": { + "id": "777ba2188d8c45137a2f005fafe239d3", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44.45 + }, + "regions": [ + { + "id": "K6XBDuFBd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 34.722564734895194, + "left": 944.3486051171393, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 252.25332159745065 + }, + { + "x": 979.0711698520346, + "y": 252.25332159745065 + }, + { + "x": 979.0711698520346, + "y": 315.41121633429276 + }, + { + "x": 944.3486051171393, + "y": 315.41121633429276 + } + ] + }, + { + "id": "-2JVkd3Jl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 36.8270268187423, + "left": 863.3292231812577, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 863.3292231812577, + "y": 255.41121633429276 + }, + { + "x": 900.15625, + "y": 255.41121633429276 + }, + { + "x": 900.15625, + "y": 329.0954107987253 + }, + { + "x": 863.3292231812577, + "y": 329.0954107987253 + } + ] + }, + { + "id": "NjjTxV0Rc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 26.3050053945746, + "left": 794.9363247533909, + "top": 293.305953176398 + }, + "points": [ + { + "x": 794.9363247533909, + "y": 293.305953176398 + }, + { + "x": 821.2413301479655, + "y": 293.305953176398 + }, + { + "x": 821.2413301479655, + "y": 355.4111842105263 + }, + { + "x": 794.9363247533909, + "y": 355.4111842105263 + } + ] + }, + { + "id": "rhEVVE_Su", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 41.035758323057955, + "left": 722.3345984895191, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 722.3345984895191, + "y": 309.09542686060854 + }, + { + "x": 763.370356812577, + "y": 309.09542686060854 + }, + { + "x": 763.370356812577, + "y": 371.2006578947368 + }, + { + "x": 722.3345984895191, + "y": 371.2006578947368 + } + ] + }, + { + "id": "_a4fYT9fQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 43.14012407521578, + "left": 589.7575331381012, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 589.7575331381012, + "y": 412.2532894736842 + }, + { + "x": 632.8976572133168, + "y": 412.2532894736842 + }, + { + "x": 632.8976572133168, + "y": 480.6743581671464 + }, + { + "x": 589.7575331381012, + "y": 480.6743581671464 + } + ] + }, + { + "id": "7JqCe6yvx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26312577097039, + "width": 30.513736898890258, + "left": 546.6174090628854, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 546.6174090628854, + "y": 365.93753212376646 + }, + { + "x": 577.1311459617756, + "y": 365.93753212376646 + }, + { + "x": 577.1311459617756, + "y": 431.2006578947368 + }, + { + "x": 546.6174090628854, + "y": 431.2006578947368 + } + ] + }, + { + "id": "ixAu75f17", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 24.200543310727497, + "left": 501.37282290382245, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 501.37282290382245, + "y": 346.9901637027138 + }, + { + "x": 525.57336621455, + "y": 346.9901637027138 + }, + { + "x": 525.57336621455, + "y": 405.9375 + }, + { + "x": 501.37282290382245, + "y": 405.9375 + } + ] + }, + { + "id": "WJiXfLeaO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 22.096177558569668, + "left": 480.3288763871763, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 480.3288763871763, + "y": 303.8322529039885 + }, + { + "x": 502.425053945746, + "y": 303.8322529039885 + }, + { + "x": 502.425053945746, + "y": 352.2532894736842 + }, + { + "x": 480.3288763871763, + "y": 352.2532894736842 + } + ] + } + ], + "version": "2.2.0" + }, + "a593a568ef5162e99a5bf5f7d4d2c859": { + "asset": { + "id": "a593a568ef5162e99a5bf5f7d4d2c859", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44.3 + }, + "regions": [ + { + "id": "IpryHhvZl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 31.56596794081381, + "left": 951.7139334155364, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 951.7139334155364, + "y": 264.88490054481906 + }, + { + "x": 983.2799013563503, + "y": 264.88490054481906 + }, + { + "x": 983.2799013563503, + "y": 328.0427952816612 + }, + { + "x": 951.7139334155364, + "y": 328.0427952816612 + } + ] + }, + { + "id": "Vbstj8VN_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57891524465461, + "width": 57.87097333538841, + "left": 873.8512446054254, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 873.8512446054254, + "y": 283.8322689658717 + }, + { + "x": 931.7222179408138, + "y": 283.8322689658717 + }, + { + "x": 931.7222179408138, + "y": 355.4111842105263 + }, + { + "x": 873.8512446054254, + "y": 355.4111842105263 + } + ] + }, + { + "id": "ur_65bOzu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 41.035758323057955, + "left": 799.1451525893958, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 799.1451525893958, + "y": 314.35855263157896 + }, + { + "x": 840.1809109124538, + "y": 314.35855263157896 + }, + { + "x": 840.1809109124538, + "y": 369.09542686060854 + }, + { + "x": 799.1451525893958, + "y": 369.09542686060854 + } + ] + }, + { + "id": "I5UwamhZX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.4210205078125, + "width": 45.244586159062884, + "left": 731.8043888717633, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 731.8043888717633, + "y": 312.2533215974507 + }, + { + "x": 777.0489750308261, + "y": 312.2533215974507 + }, + { + "x": 777.0489750308261, + "y": 380.6743421052632 + }, + { + "x": 731.8043888717633, + "y": 380.6743421052632 + } + ] + }, + { + "id": "vlXgF_KjU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 39.9835272811344, + "left": 599.2273235203453, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 417.51646343030427 + }, + { + "x": 639.2108508014796, + "y": 417.51646343030427 + }, + { + "x": 639.2108508014796, + "y": 471.20067395662005 + }, + { + "x": 599.2273235203453, + "y": 471.20067395662005 + } + ] + }, + { + "id": "h6zCGfhmW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 48.40108662145499, + "left": 559.2437962392108, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 559.2437962392108, + "y": 373.3059371145148 + }, + { + "x": 607.6448828606658, + "y": 373.3059371145148 + }, + { + "x": 607.6448828606658, + "y": 446.9901315789474 + }, + { + "x": 559.2437962392108, + "y": 446.9901315789474 + } + ] + }, + { + "id": "ERAvIJApd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 32.61810265104809, + "left": 508.73824753390875, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 508.73824753390875, + "y": 360.6743581671464 + }, + { + "x": 541.3563501849568, + "y": 360.6743581671464 + }, + { + "x": 541.3563501849568, + "y": 424.88486842105266 + }, + { + "x": 508.73824753390875, + "y": 424.88486842105266 + } + ] + }, + { + "id": "L1BUK2Z1n", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 24.200543310727497, + "left": 485.58983893341554, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 485.58983893341554, + "y": 322.77962132504115 + }, + { + "x": 509.790382244143, + "y": 322.77962132504115 + }, + { + "x": 509.790382244143, + "y": 363.8322529039885 + }, + { + "x": 485.58983893341554, + "y": 363.8322529039885 + } + ] + } + ], + "version": "2.2.0" + }, + "848fe21858c610ee46963a50e967a26a": { + "asset": { + "id": "848fe21858c610ee46963a50e967a26a", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44.15 + }, + "regions": [ + { + "id": "_D9PSbdHp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 43.14012407521578, + "left": 959.0793580456227, + "top": 273.30592105263156 + }, + "points": [ + { + "x": 959.0793580456227, + "y": 273.30592105263156 + }, + { + "x": 1002.2194821208385, + "y": 273.30592105263156 + }, + { + "x": 1002.2194821208385, + "y": 330.1480263157895 + }, + { + "x": 959.0793580456227, + "y": 330.1480263157895 + } + ] + }, + { + "id": "9WfnCHsKI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 44.192355117139336, + "left": 881.2166692355117, + "top": 296.46384791324016 + }, + "points": [ + { + "x": 881.2166692355117, + "y": 296.46384791324016 + }, + { + "x": 925.409024352651, + "y": 296.46384791324016 + }, + { + "x": 925.409024352651, + "y": 355.4111842105263 + }, + { + "x": 881.2166692355117, + "y": 355.4111842105263 + } + ] + }, + { + "id": "_gb6OxxvX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 44.192355117139336, + "left": 804.406115135635, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 804.406115135635, + "y": 329.0954107987253 + }, + { + "x": 848.5984702527744, + "y": 329.0954107987253 + }, + { + "x": 848.5984702527744, + "y": 384.88490054481906 + }, + { + "x": 804.406115135635, + "y": 384.88490054481906 + } + ] + }, + { + "id": "y2Mtirjmw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 32.61810265104809, + "left": 748.6396038840937, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 748.6396038840937, + "y": 331.2006900185033 + }, + { + "x": 781.2577065351418, + "y": 331.2006900185033 + }, + { + "x": 781.2577065351418, + "y": 395.41120027240953 + }, + { + "x": 748.6396038840937, + "y": 395.41120027240953 + } + ] + }, + { + "id": "TbPIUBw4g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 83.15787867495888, + "width": 34.722564734895194, + "left": 608.6971139025894, + "top": 429.09542686060854 + }, + "points": [ + { + "x": 608.6971139025894, + "y": 429.09542686060854 + }, + { + "x": 643.4196786374846, + "y": 429.09542686060854 + }, + { + "x": 643.4196786374846, + "y": 512.2533055355674 + }, + { + "x": 608.6971139025894, + "y": 512.2533055355674 + } + ] + }, + { + "id": "so2ZFHxZH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 33.67033369297164, + "left": 568.713586621455, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 568.713586621455, + "y": 378.5691110711349 + }, + { + "x": 602.3839203144266, + "y": 378.5691110711349 + }, + { + "x": 602.3839203144266, + "y": 437.51644736842104 + }, + { + "x": 568.713586621455, + "y": 437.51644736842104 + } + ] + }, + { + "id": "WLQqZ89CN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 31.56596794081381, + "left": 515.0514411220715, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 515.0514411220715, + "y": 378.5691110711349 + }, + { + "x": 546.6174090628854, + "y": 378.5691110711349 + }, + { + "x": 546.6174090628854, + "y": 425.93753212376646 + }, + { + "x": 515.0514411220715, + "y": 425.93753212376646 + } + ] + }, + { + "id": "741VdANyn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 27.35723643649815, + "left": 494.00739827373616, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 336.4638157894737 + }, + { + "x": 521.3646347102343, + "y": 336.4638157894737 + }, + { + "x": 521.3646347102343, + "y": 397.5164794921875 + }, + { + "x": 494.00739827373616, + "y": 397.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "79409472877001fd11b0b60774e16fc6": { + "asset": { + "id": "79409472877001fd11b0b60774e16fc6", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=44.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=44", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 44 + }, + "regions": [ + { + "id": "wK9Cnkl4s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 46.29672086929717, + "left": 965.3925516337855, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 965.3925516337855, + "y": 277.5164794921875 + }, + { + "x": 1011.6892725030826, + "y": 277.5164794921875 + }, + { + "x": 1011.6892725030826, + "y": 340.67437422902964 + }, + { + "x": 965.3925516337855, + "y": 340.67437422902964 + } + ] + }, + { + "id": "7_fwyaX0o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36845317639802, + "width": 37.879161528976574, + "left": 895.947422163995, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 895.947422163995, + "y": 304.88486842105266 + }, + { + "x": 933.8265836929717, + "y": 304.88486842105266 + }, + { + "x": 933.8265836929717, + "y": 372.2533215974507 + }, + { + "x": 895.947422163995, + "y": 372.2533215974507 + } + ] + }, + { + "id": "Q_KS2Z3hT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 34.722564734895194, + "left": 808.61494297164, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 808.61494297164, + "y": 329.0954107987253 + }, + { + "x": 843.3375077065351, + "y": 329.0954107987253 + }, + { + "x": 843.3375077065351, + "y": 384.88490054481906 + }, + { + "x": 808.61494297164, + "y": 384.88490054481906 + } + ] + }, + { + "id": "IYWC8axnV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 39.9835272811344, + "left": 754.9527974722565, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 754.9527974722565, + "y": 325.93751606188323 + }, + { + "x": 794.9363247533909, + "y": 325.93751606188323 + }, + { + "x": 794.9363247533909, + "y": 403.8322689658717 + }, + { + "x": 754.9527974722565, + "y": 403.8322689658717 + } + ] + }, + { + "id": "QVmdvHLrr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 39.9835272811344, + "left": 609.7493449445129, + "top": 426.99014764083057 + }, + "points": [ + { + "x": 609.7493449445129, + "y": 426.99014764083057 + }, + { + "x": 649.7328722256474, + "y": 426.99014764083057 + }, + { + "x": 649.7328722256474, + "y": 493.3059371145148 + }, + { + "x": 609.7493449445129, + "y": 493.3059371145148 + } + ] + }, + { + "id": "E4qmRbt-I", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 30.513833230579532, + "left": 572.9223181257706, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 572.9223181257706, + "y": 392.25330553556745 + }, + { + "x": 603.4361513563501, + "y": 392.25330553556745 + }, + { + "x": 603.4361513563501, + "y": 458.56909500925167 + }, + { + "x": 572.9223181257706, + "y": 458.56909500925167 + } + ] + }, + { + "id": "YM6FWmjf7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 33.67033369297164, + "left": 511.89484432799014, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 511.89484432799014, + "y": 376.46383185135693 + }, + { + "x": 545.5651780209618, + "y": 376.46383185135693 + }, + { + "x": 545.5651780209618, + "y": 448.0427952816612 + }, + { + "x": 511.89484432799014, + "y": 448.0427952816612 + } + ] + }, + { + "id": "BlTH1MIhN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 41.035758323057955, + "left": 486.6420699753391, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 346.9901637027138 + }, + { + "x": 527.677828298397, + "y": 346.9901637027138 + }, + { + "x": 527.677828298397, + "y": 417.51646343030427 + }, + { + "x": 486.6420699753391, + "y": 417.51646343030427 + } + ] + } + ], + "version": "2.2.0" + }, + "edd8f3cfee5a982d274b5b2598fc692f": { + "asset": { + "id": "edd8f3cfee5a982d274b5b2598fc692f", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=43.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=43.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 43.85 + }, + "regions": [ + { + "id": "473iuiWMO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 53.66214549938348, + "left": 962.235954839704, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 962.235954839704, + "y": 282.7796052631579 + }, + { + "x": 1015.8981003390876, + "y": 282.7796052631579 + }, + { + "x": 1015.8981003390876, + "y": 360.6743581671464 + }, + { + "x": 962.235954839704, + "y": 360.6743581671464 + } + ] + }, + { + "id": "iRljoq43V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21055843955592, + "width": 38.93129623921085, + "left": 890.6864596177559, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 890.6864596177559, + "y": 311.2006578947368 + }, + { + "x": 929.6177558569667, + "y": 311.2006578947368 + }, + { + "x": 929.6177558569667, + "y": 375.41121633429276 + }, + { + "x": 890.6864596177559, + "y": 375.41121633429276 + } + ] + }, + { + "id": "ONw2iECXI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 85.26315789473685, + "width": 50.5055487053021, + "left": 795.9885557953145, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 795.9885557953145, + "y": 315.41121633429276 + }, + { + "x": 846.4941045006166, + "y": 315.41121633429276 + }, + { + "x": 846.4941045006166, + "y": 400.67437422902964 + }, + { + "x": 795.9885557953145, + "y": 400.67437422902964 + } + ] + }, + { + "id": "GbO7OyOm_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 27.35723643649815, + "left": 759.1615289765722, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 759.1615289765722, + "y": 329.0954107987253 + }, + { + "x": 786.5187654130702, + "y": 329.0954107987253 + }, + { + "x": 786.5187654130702, + "y": 393.30592105263156 + }, + { + "x": 759.1615289765722, + "y": 393.30592105263156 + } + ] + }, + { + "id": "_4T05KF3-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 42.0879893649815, + "left": 605.540517108508, + "top": 439.621726588199 + }, + "points": [ + { + "x": 605.540517108508, + "y": 439.621726588199 + }, + { + "x": 647.6285064734896, + "y": 439.621726588199 + }, + { + "x": 647.6285064734896, + "y": 501.727005807977 + }, + { + "x": 605.540517108508, + "y": 501.727005807977 + } + ] + }, + { + "id": "1LTPiIghN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 39.98362361282368, + "left": 569.7657213316893, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 569.7657213316893, + "y": 389.0954107987253 + }, + { + "x": 609.7493449445129, + "y": 389.0954107987253 + }, + { + "x": 609.7493449445129, + "y": 442.77962132504115 + }, + { + "x": 569.7657213316893, + "y": 442.77962132504115 + } + ] + }, + { + "id": "lFHnU_R48", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36845317639802, + "width": 31.56596794081381, + "left": 519.2601726263872, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 519.2601726263872, + "y": 377.51644736842104 + }, + { + "x": 550.826140567201, + "y": 377.51644736842104 + }, + { + "x": 550.826140567201, + "y": 444.88490054481906 + }, + { + "x": 519.2601726263872, + "y": 444.88490054481906 + } + ] + }, + { + "id": "Usum9Zm4NQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 22.096177558569668, + "left": 492.95526356350183, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 492.95526356350183, + "y": 355.4111842105263 + }, + { + "x": 515.0514411220715, + "y": 355.4111842105263 + }, + { + "x": 515.0514411220715, + "y": 399.6217105263158 + }, + { + "x": 492.95526356350183, + "y": 399.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "8eb00f23700251037023f5ccc6d3ecdb": { + "asset": { + "id": "8eb00f23700251037023f5ccc6d3ecdb", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=43.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=43.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 43.7 + }, + "regions": [ + { + "id": "to1wOx6Ew", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 47.348951911220716, + "left": 972.7579762638718, + "top": 299.62174265008224 + }, + "points": [ + { + "x": 972.7579762638718, + "y": 299.62174265008224 + }, + { + "x": 1020.1069281750925, + "y": 299.62174265008224 + }, + { + "x": 1020.1069281750925, + "y": 355.4111842105263 + }, + { + "x": 972.7579762638718, + "y": 355.4111842105263 + } + ] + }, + { + "id": "KxdDYkMEu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 55.76660758323058, + "left": 885.4254007398274, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 885.4254007398274, + "y": 318.5691110711349 + }, + { + "x": 941.192008323058, + "y": 318.5691110711349 + }, + { + "x": 941.192008323058, + "y": 380.6743421052632 + }, + { + "x": 885.4254007398274, + "y": 380.6743421052632 + } + ] + }, + { + "id": "GiHq4TCAR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 34.722564734895194, + "left": 814.9281365598027, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 814.9281365598027, + "y": 331.2006900185033 + }, + { + "x": 849.6507012946979, + "y": 331.2006900185033 + }, + { + "x": 849.6507012946979, + "y": 398.56909500925167 + }, + { + "x": 814.9281365598027, + "y": 398.56909500925167 + } + ] + }, + { + "id": "htSSXpQQH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 32.61810265104809, + "left": 754.9527974722565, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 754.9527974722565, + "y": 337.5164794921875 + }, + { + "x": 787.5709001233046, + "y": 337.5164794921875 + }, + { + "x": 787.5709001233046, + "y": 397.5164794921875 + }, + { + "x": 754.9527974722565, + "y": 397.5164794921875 + } + ] + }, + { + "id": "GiHVj7SDi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 86.31577341180099, + "width": 43.14012407521578, + "left": 602.3839203144266, + "top": 426.99014764083057 + }, + "points": [ + { + "x": 602.3839203144266, + "y": 426.99014764083057 + }, + { + "x": 645.5240443896424, + "y": 426.99014764083057 + }, + { + "x": 645.5240443896424, + "y": 513.3059210526316 + }, + { + "x": 602.3839203144266, + "y": 513.3059210526316 + } + ] + }, + { + "id": "SMowwQUGP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 42.08789303329223, + "left": 565.5569898273736, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 565.5569898273736, + "y": 401.72698974609375 + }, + { + "x": 607.6448828606658, + "y": 401.72698974609375 + }, + { + "x": 607.6448828606658, + "y": 475.4111842105263 + }, + { + "x": 565.5569898273736, + "y": 475.4111842105263 + } + ] + }, + { + "id": "h76qZ8OkK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 34.722564734895194, + "left": 508.73824753390875, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 508.73824753390875, + "y": 391.2006900185033 + }, + { + "x": 543.4608122688039, + "y": 391.2006900185033 + }, + { + "x": 543.4608122688039, + "y": 439.621726588199 + }, + { + "x": 508.73824753390875, + "y": 439.621726588199 + } + ] + }, + { + "id": "7uZ4AI7Hc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 39.98362361282368, + "left": 484.537607891492, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 484.537607891492, + "y": 362.7796373869243 + }, + { + "x": 524.5212315043157, + "y": 362.7796373869243 + }, + { + "x": 524.5212315043157, + "y": 425.93753212376646 + }, + { + "x": 484.537607891492, + "y": 425.93753212376646 + } + ] + } + ], + "version": "2.2.0" + }, + "b924444707cff45af79d3274ed2f7acb": { + "asset": { + "id": "b924444707cff45af79d3274ed2f7acb", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=43.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=43.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 43.55 + }, + "regions": [ + { + "id": "i88I2TwTQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 44.192355117139336, + "left": 976.9667077681875, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 976.9667077681875, + "y": 303.8322529039885 + }, + { + "x": 1021.1590628853268, + "y": 303.8322529039885 + }, + { + "x": 1021.1590628853268, + "y": 351.20067395662005 + }, + { + "x": 976.9667077681875, + "y": 351.20067395662005 + } + ] + }, + { + "id": "ikuf_-PDJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 43.14012407521578, + "left": 889.6342285758324, + "top": 321.727005807977 + }, + "points": [ + { + "x": 889.6342285758324, + "y": 321.727005807977 + }, + { + "x": 932.774352651048, + "y": 321.727005807977 + }, + { + "x": 932.774352651048, + "y": 392.25330553556745 + }, + { + "x": 889.6342285758324, + "y": 392.25330553556745 + } + ] + }, + { + "id": "e2A9xOxlb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 33.67043002466091, + "left": 812.8236744759556, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 812.8236744759556, + "y": 342.7796052631579 + }, + { + "x": 846.4941045006166, + "y": 342.7796052631579 + }, + { + "x": 846.4941045006166, + "y": 412.2532894736842 + }, + { + "x": 812.8236744759556, + "y": 412.2532894736842 + } + ] + }, + { + "id": "zbnnQiDSV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 47.348951911220716, + "left": 742.3264102959309, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 742.3264102959309, + "y": 351.20067395662005 + }, + { + "x": 789.6753622071517, + "y": 351.20067395662005 + }, + { + "x": 789.6753622071517, + "y": 422.7796373869243 + }, + { + "x": 742.3264102959309, + "y": 422.7796373869243 + } + ] + }, + { + "id": "hoV0PitiU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 35.77469944512947, + "left": 609.7493449445129, + "top": 436.46383185135693 + }, + "points": [ + { + "x": 609.7493449445129, + "y": 436.46383185135693 + }, + { + "x": 645.5240443896424, + "y": 436.46383185135693 + }, + { + "x": 645.5240443896424, + "y": 508.0427952816612 + }, + { + "x": 609.7493449445129, + "y": 508.0427952816612 + } + ] + }, + { + "id": "8_J3RO8p7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 32.61819898273736, + "left": 570.8179523736128, + "top": 411.20067395662005 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 411.20067395662005 + }, + { + "x": 603.4361513563501, + "y": 411.20067395662005 + }, + { + "x": 603.4361513563501, + "y": 464.8848844829359 + }, + { + "x": 570.8179523736128, + "y": 464.8848844829359 + } + ] + }, + { + "id": "NYYASXWDp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 34.722564734895194, + "left": 507.6860164919852, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 507.6860164919852, + "y": 402.7796052631579 + }, + { + "x": 542.4085812268804, + "y": 402.7796052631579 + }, + { + "x": 542.4085812268804, + "y": 455.41120027240953 + }, + { + "x": 507.6860164919852, + "y": 455.41120027240953 + } + ] + }, + { + "id": "xHj9_TBHl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 30.513736898890258, + "left": 485.58983893341554, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 485.58983893341554, + "y": 366.99014764083057 + }, + { + "x": 516.1035758323058, + "y": 366.99014764083057 + }, + { + "x": 516.1035758323058, + "y": 406.9901637027138 + }, + { + "x": 485.58983893341554, + "y": 406.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "742c87d33ddec79edabb0240af3e57b8": { + "asset": { + "id": "742c87d33ddec79edabb0240af3e57b8", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=43.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=43.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 43.4 + }, + "regions": [ + { + "id": "V6Wheo9wb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 35.77469944512947, + "left": 979.0711698520346, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 979.0711698520346, + "y": 304.88486842105266 + }, + { + "x": 1014.845869297164, + "y": 304.88486842105266 + }, + { + "x": 1014.845869297164, + "y": 365.93753212376646 + }, + { + "x": 979.0711698520346, + "y": 365.93753212376646 + } + ] + }, + { + "id": "ZyrqAi3L8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 39.9835272811344, + "left": 892.7908253699137, + "top": 321.727005807977 + }, + "points": [ + { + "x": 892.7908253699137, + "y": 321.727005807977 + }, + { + "x": 932.774352651048, + "y": 321.727005807977 + }, + { + "x": 932.774352651048, + "y": 391.2006900185033 + }, + { + "x": 892.7908253699137, + "y": 391.2006900185033 + } + ] + }, + { + "id": "JlIJw5g9z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 33.67033369297164, + "left": 808.61494297164, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 808.61494297164, + "y": 343.8322689658717 + }, + { + "x": 842.2852766646116, + "y": 343.8322689658717 + }, + { + "x": 842.2852766646116, + "y": 406.9901637027138 + }, + { + "x": 808.61494297164, + "y": 406.9901637027138 + } + ] + }, + { + "id": "638GJ3ev5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 30.513833230579532, + "left": 752.8483353884094, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 752.8483353884094, + "y": 348.04277921977797 + }, + { + "x": 783.3621686189889, + "y": 348.04277921977797 + }, + { + "x": 783.3621686189889, + "y": 412.2532894736842 + }, + { + "x": 752.8483353884094, + "y": 412.2532894736842 + } + ] + }, + { + "id": "kSqArcHky", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 31.56596794081381, + "left": 610.8014796547473, + "top": 428.04276315789474 + }, + "points": [ + { + "x": 610.8014796547473, + "y": 428.04276315789474 + }, + { + "x": 642.3674475955611, + "y": 428.04276315789474 + }, + { + "x": 642.3674475955611, + "y": 497.51644736842104 + }, + { + "x": 610.8014796547473, + "y": 497.51644736842104 + } + ] + }, + { + "id": "YgQGe-ToQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 34.722564734895194, + "left": 571.8701834155364, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 571.8701834155364, + "y": 397.5164794921875 + }, + { + "x": 606.5927481504316, + "y": 397.5164794921875 + }, + { + "x": 606.5927481504316, + "y": 455.41120027240953 + }, + { + "x": 571.8701834155364, + "y": 455.41120027240953 + } + ] + }, + { + "id": "NceZvomk4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 33.67043002466091, + "left": 503.4771886559803, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 503.4771886559803, + "y": 396.4638157894737 + }, + { + "x": 537.1476186806412, + "y": 396.4638157894737 + }, + { + "x": 537.1476186806412, + "y": 439.621726588199 + }, + { + "x": 503.4771886559803, + "y": 439.621726588199 + } + ] + }, + { + "id": "LPD0qcbAx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 27.357140104808877, + "left": 479.2766453452528, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 373.3059371145148 + }, + { + "x": 506.6337854500617, + "y": 373.3059371145148 + }, + { + "x": 506.6337854500617, + "y": 413.305953176398 + }, + { + "x": 479.2766453452528, + "y": 413.305953176398 + } + ] + } + ], + "version": "2.2.0" + }, + "dfe0ccf8d4a6260a2513956ebff71e2e": { + "asset": { + "id": "dfe0ccf8d4a6260a2513956ebff71e2e", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=43.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=43.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 43.25 + }, + "regions": [ + { + "id": "k8WRVsyA4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 23.14840860049322, + "left": 479.2766453452528, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 372.2533215974507 + }, + { + "x": 502.425053945746, + "y": 372.2533215974507 + }, + { + "x": 502.425053945746, + "y": 430.1480423776727 + }, + { + "x": 479.2766453452528, + "y": 430.1480423776727 + } + ] + }, + { + "id": "ATbFO6KE0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 30.513833230579532, + "left": 497.1639950678175, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 497.1639950678175, + "y": 399.6217105263158 + }, + { + "x": 527.677828298397, + "y": 399.6217105263158 + }, + { + "x": 527.677828298397, + "y": 465.9375 + }, + { + "x": 497.1639950678175, + "y": 465.9375 + } + ] + }, + { + "id": "MApfpVXRr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 29.46160218865598, + "left": 978.018938810111, + "top": 298.56907894736844 + }, + "points": [ + { + "x": 978.018938810111, + "y": 298.56907894736844 + }, + { + "x": 1007.480540998767, + "y": 298.56907894736844 + }, + { + "x": 1007.480540998767, + "y": 361.7269736842105 + }, + { + "x": 978.018938810111, + "y": 361.7269736842105 + } + ] + }, + { + "id": "dhFLw_kRv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 75.78947368421052, + "width": 31.56596794081381, + "left": 889.6342285758324, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 889.6342285758324, + "y": 317.51644736842104 + }, + { + "x": 921.2001965166461, + "y": 317.51644736842104 + }, + { + "x": 921.2001965166461, + "y": 393.30592105263156 + }, + { + "x": 889.6342285758324, + "y": 393.30592105263156 + } + ] + }, + { + "id": "PoiCtaNbX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 47.348951911220716, + "left": 797.0406905055487, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 797.0406905055487, + "y": 334.3585847553454 + }, + { + "x": 844.3896424167694, + "y": 334.3585847553454 + }, + { + "x": 844.3896424167694, + "y": 403.8322689658717 + }, + { + "x": 797.0406905055487, + "y": 403.8322689658717 + } + ] + }, + { + "id": "ipbsV1AYE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 41.035758323057955, + "left": 740.2219482120838, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 740.2219482120838, + "y": 350.14805843955594 + }, + { + "x": 781.2577065351418, + "y": 350.14805843955594 + }, + { + "x": 781.2577065351418, + "y": 405.9375 + }, + { + "x": 740.2219482120838, + "y": 405.9375 + } + ] + }, + { + "id": "eBuYecrhv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 77.89475290398849, + "width": 32.61810265104809, + "left": 600.2795545622688, + "top": 423.8322529039885 + }, + "points": [ + { + "x": 600.2795545622688, + "y": 423.8322529039885 + }, + { + "x": 632.8976572133168, + "y": 423.8322529039885 + }, + { + "x": 632.8976572133168, + "y": 501.727005807977 + }, + { + "x": 600.2795545622688, + "y": 501.727005807977 + } + ] + }, + { + "id": "jOgKHA__q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 31.56596794081381, + "left": 565.5569898273736, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 565.5569898273736, + "y": 396.4638157894737 + }, + { + "x": 597.1229577681875, + "y": 396.4638157894737 + }, + { + "x": 597.1229577681875, + "y": 468.04277921977797 + }, + { + "x": 565.5569898273736, + "y": 468.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "c45ac7c07ff8010251a0c01020854ed0": { + "asset": { + "id": "c45ac7c07ff8010251a0c01020854ed0", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=43.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=43.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 43.05 + }, + "regions": [ + { + "id": "eI3P5Abja", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 43.14022040690506, + "left": 970.6535141800247, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 970.6535141800247, + "y": 313.3059371145148 + }, + { + "x": 1013.7937345869298, + "y": 313.3059371145148 + }, + { + "x": 1013.7937345869298, + "y": 363.8322529039885 + }, + { + "x": 970.6535141800247, + "y": 363.8322529039885 + } + ] + }, + { + "id": "YrxLHGSqX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.47371633429276, + "width": 29.46160218865598, + "left": 892.7908253699137, + "top": 308.04276315789474 + }, + "points": [ + { + "x": 892.7908253699137, + "y": 308.04276315789474 + }, + { + "x": 922.2524275585697, + "y": 308.04276315789474 + }, + { + "x": 922.2524275585697, + "y": 397.5164794921875 + }, + { + "x": 892.7908253699137, + "y": 397.5164794921875 + } + ] + }, + { + "id": "lEFfoUYNi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 36.82693048705302, + "left": 802.3017493834772, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 802.3017493834772, + "y": 349.09539473684214 + }, + { + "x": 839.1286798705303, + "y": 349.09539473684214 + }, + { + "x": 839.1286798705303, + "y": 414.3585686934622 + }, + { + "x": 802.3017493834772, + "y": 414.3585686934622 + } + ] + }, + { + "id": "dTCKZTqjh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 32.61819898273736, + "left": 744.4307760480888, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 358.56907894736844 + }, + { + "x": 777.0489750308261, + "y": 358.56907894736844 + }, + { + "x": 777.0489750308261, + "y": 415.4111842105263 + }, + { + "x": 744.4307760480888, + "y": 415.4111842105263 + } + ] + }, + { + "id": "em4FA2Jbf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 26.304909062885326, + "left": 603.4361513563501, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 603.4361513563501, + "y": 422.7796373869243 + }, + { + "x": 629.7410604192355, + "y": 422.7796373869243 + }, + { + "x": 629.7410604192355, + "y": 480.6743581671464 + }, + { + "x": 603.4361513563501, + "y": 480.6743581671464 + } + ] + }, + { + "id": "Oq07PuNgu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 28.40937114673243, + "left": 562.4003930332923, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 397.5164794921875 + }, + { + "x": 590.8097641800247, + "y": 397.5164794921875 + }, + { + "x": 590.8097641800247, + "y": 471.20067395662005 + }, + { + "x": 562.4003930332923, + "y": 471.20067395662005 + } + ] + }, + { + "id": "u62kkxwJw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 23.148312268803945, + "left": 499.2684571516646, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 499.2684571516646, + "y": 398.56909500925167 + }, + { + "x": 522.4167694204685, + "y": 398.56909500925167 + }, + { + "x": 522.4167694204685, + "y": 461.72698974609375 + }, + { + "x": 499.2684571516646, + "y": 461.72698974609375 + } + ] + }, + { + "id": "X6OtCMMUb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 28.40937114673243, + "left": 472.96345175709, + "top": 382.77962132504115 + }, + "points": [ + { + "x": 472.96345175709, + "y": 382.77962132504115 + }, + { + "x": 501.37282290382245, + "y": 382.77962132504115 + }, + { + "x": 501.37282290382245, + "y": 441.727005807977 + }, + { + "x": 472.96345175709, + "y": 441.727005807977 + } + ] + } + ], + "version": "2.2.0" + }, + "2904947f368d8606199101693ede9312": { + "asset": { + "id": "2904947f368d8606199101693ede9312", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=42.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=42.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 42.9 + }, + "regions": [ + { + "id": "LuFAkxGH4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 80.00003212376645, + "width": 35.77479577681874, + "left": 968.5491484278668, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 968.5491484278668, + "y": 311.2006578947368 + }, + { + "x": 1004.3239442046856, + "y": 311.2006578947368 + }, + { + "x": 1004.3239442046856, + "y": 391.2006900185033 + }, + { + "x": 968.5491484278668, + "y": 391.2006900185033 + } + ] + }, + { + "id": "nVYMmiBgM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52634791324013, + "width": 37.879161528976574, + "left": 893.8430564118372, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 893.8430564118372, + "y": 326.9901315789474 + }, + { + "x": 931.7222179408138, + "y": 326.9901315789474 + }, + { + "x": 931.7222179408138, + "y": 397.5164794921875 + }, + { + "x": 893.8430564118372, + "y": 397.5164794921875 + } + ] + }, + { + "id": "p7XP9KFqh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 42.0879893649815, + "left": 801.2495183415537, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 801.2495183415537, + "y": 343.8322689658717 + }, + { + "x": 843.3375077065351, + "y": 343.8322689658717 + }, + { + "x": 843.3375077065351, + "y": 406.9901637027138 + }, + { + "x": 801.2495183415537, + "y": 406.9901637027138 + } + ] + }, + { + "id": "g1KnZ3S8O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 32.61810265104809, + "left": 745.4830070900124, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 745.4830070900124, + "y": 359.62174265008224 + }, + { + "x": 778.1011097410604, + "y": 359.62174265008224 + }, + { + "x": 778.1011097410604, + "y": 420.6743581671464 + }, + { + "x": 745.4830070900124, + "y": 420.6743581671464 + } + ] + }, + { + "id": "SW6c0EeQr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 27.357140104808877, + "left": 608.6971139025894, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 608.6971139025894, + "y": 418.56907894736844 + }, + { + "x": 636.0542540073983, + "y": 418.56907894736844 + }, + { + "x": 636.0542540073983, + "y": 488.04276315789474 + }, + { + "x": 608.6971139025894, + "y": 488.04276315789474 + } + ] + }, + { + "id": "tKCSqpNR_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 34.722564734895194, + "left": 561.3481619913687, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 406.9901637027138 + }, + { + "x": 596.0707267262638, + "y": 406.9901637027138 + }, + { + "x": 596.0707267262638, + "y": 465.9375 + }, + { + "x": 561.3481619913687, + "y": 465.9375 + } + ] + }, + { + "id": "oxLpd4KF0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 39.98362361282368, + "left": 497.1639950678175, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 497.1639950678175, + "y": 401.72698974609375 + }, + { + "x": 537.1476186806412, + "y": 401.72698974609375 + }, + { + "x": 537.1476186806412, + "y": 457.5164794921875 + }, + { + "x": 497.1639950678175, + "y": 457.5164794921875 + } + ] + }, + { + "id": "Bua-Blz7O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 26.304909062885326, + "left": 470.8590860049322, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 470.8590860049322, + "y": 389.0954107987253 + }, + { + "x": 497.1639950678175, + "y": 389.0954107987253 + }, + { + "x": 497.1639950678175, + "y": 433.3059371145148 + }, + { + "x": 470.8590860049322, + "y": 433.3059371145148 + } + ] + } + ], + "version": "2.2.0" + }, + "7e95cf2e9edd7ba892f6952d8dfb51d5": { + "asset": { + "id": "7e95cf2e9edd7ba892f6952d8dfb51d5", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=42.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=42.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 42.75 + }, + "regions": [ + { + "id": "LGmpdPOiw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 22.096177558569668, + "left": 992.7496917385944, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 992.7496917385944, + "y": 310.1480423776727 + }, + { + "x": 1014.845869297164, + "y": 310.1480423776727 + }, + { + "x": 1014.845869297164, + "y": 377.51644736842104 + }, + { + "x": 992.7496917385944, + "y": 377.51644736842104 + } + ] + }, + { + "id": "H0U_X24Nj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 27.35723643649815, + "left": 888.5819975339087, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 888.5819975339087, + "y": 334.3585847553454 + }, + { + "x": 915.9392339704069, + "y": 334.3585847553454 + }, + { + "x": 915.9392339704069, + "y": 400.67437422902964 + }, + { + "x": 888.5819975339087, + "y": 400.67437422902964 + } + ] + }, + { + "id": "yobbchKWao", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 46.29672086929717, + "left": 795.9885557953145, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 795.9885557953145, + "y": 348.04277921977797 + }, + { + "x": 842.2852766646116, + "y": 348.04277921977797 + }, + { + "x": 842.2852766646116, + "y": 417.51646343030427 + }, + { + "x": 795.9885557953145, + "y": 417.51646343030427 + } + ] + }, + { + "id": "imjxl8udx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 39.98362361282368, + "left": 737.0653514180025, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 737.0653514180025, + "y": 361.7269736842105 + }, + { + "x": 777.0489750308261, + "y": 361.7269736842105 + }, + { + "x": 777.0489750308261, + "y": 423.8322529039885 + }, + { + "x": 737.0653514180025, + "y": 423.8322529039885 + } + ] + }, + { + "id": "oaMWAi5Rt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 47.348951911220716, + "left": 592.9141299321825, + "top": 425.93753212376646 + }, + "points": [ + { + "x": 592.9141299321825, + "y": 425.93753212376646 + }, + { + "x": 640.2630818434033, + "y": 425.93753212376646 + }, + { + "x": 640.2630818434033, + "y": 493.3059371145148 + }, + { + "x": 592.9141299321825, + "y": 493.3059371145148 + } + ] + }, + { + "id": "1194aMPAt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 24.200543310727497, + "left": 568.713586621455, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 568.713586621455, + "y": 401.72698974609375 + }, + { + "x": 592.9141299321825, + "y": 401.72698974609375 + }, + { + "x": 592.9141299321825, + "y": 475.4111842105263 + }, + { + "x": 568.713586621455, + "y": 475.4111842105263 + } + ] + }, + { + "id": "OPCSiaT6u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52634791324013, + "width": 44.192355117139336, + "left": 497.1639950678175, + "top": 405.9375 + }, + "points": [ + { + "x": 497.1639950678175, + "y": 405.9375 + }, + { + "x": 541.3563501849568, + "y": 405.9375 + }, + { + "x": 541.3563501849568, + "y": 476.46384791324016 + }, + { + "x": 497.1639950678175, + "y": 476.46384791324016 + } + ] + }, + { + "id": "KGyT2hH2sw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 23.14840860049322, + "left": 476.1200485511714, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 392.25330553556745 + }, + { + "x": 499.2684571516646, + "y": 392.25330553556745 + }, + { + "x": 499.2684571516646, + "y": 448.0427952816612 + }, + { + "x": 476.1200485511714, + "y": 448.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "8df195519d6dd59ae0d017825731eb5e": { + "asset": { + "id": "8df195519d6dd59ae0d017825731eb5e", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=42.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=42.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 42.6 + }, + "regions": [ + { + "id": "GxcqOYlBr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 28.40937114673243, + "left": 990.6453259864365, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 990.6453259864365, + "y": 314.35855263157896 + }, + { + "x": 1019.0546971331689, + "y": 314.35855263157896 + }, + { + "x": 1019.0546971331689, + "y": 374.35855263157896 + }, + { + "x": 990.6453259864365, + "y": 374.35855263157896 + } + ] + }, + { + "id": "sV0B25wfi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 31.56596794081381, + "left": 898.0517879161529, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 898.0517879161529, + "y": 337.5164794921875 + }, + { + "x": 929.6177558569667, + "y": 337.5164794921875 + }, + { + "x": 929.6177558569667, + "y": 394.3585847553454 + }, + { + "x": 898.0517879161529, + "y": 394.3585847553454 + } + ] + }, + { + "id": "WkLNog1dV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 41.035758323057955, + "left": 802.3017493834772, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 802.3017493834772, + "y": 358.56907894736844 + }, + { + "x": 843.3375077065351, + "y": 358.56907894736844 + }, + { + "x": 843.3375077065351, + "y": 409.09539473684214 + }, + { + "x": 802.3017493834772, + "y": 409.09539473684214 + } + ] + }, + { + "id": "IoMBc2gZC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 39.9835272811344, + "left": 742.3264102959309, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 742.3264102959309, + "y": 360.6743581671464 + }, + { + "x": 782.3099375770654, + "y": 360.6743581671464 + }, + { + "x": 782.3099375770654, + "y": 419.62174265008224 + }, + { + "x": 742.3264102959309, + "y": 419.62174265008224 + } + ] + }, + { + "id": "K5RKX_HW-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 37.879161528976574, + "left": 604.4882860665845, + "top": 423.8322529039885 + }, + "points": [ + { + "x": 604.4882860665845, + "y": 423.8322529039885 + }, + { + "x": 642.3674475955611, + "y": 423.8322529039885 + }, + { + "x": 642.3674475955611, + "y": 485.93753212376646 + }, + { + "x": 604.4882860665845, + "y": 485.93753212376646 + } + ] + }, + { + "id": "CCdgbvAIW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 21.043946516646116, + "left": 571.8701834155364, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 571.8701834155364, + "y": 389.0954107987253 + }, + { + "x": 592.9141299321825, + "y": 389.0954107987253 + }, + { + "x": 592.9141299321825, + "y": 460.67437422902964 + }, + { + "x": 571.8701834155364, + "y": 460.67437422902964 + } + ] + }, + { + "id": "IOvRLqFfq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 89.4736681486431, + "width": 33.67033369297164, + "left": 499.2684571516646, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 499.2684571516646, + "y": 403.8322689658717 + }, + { + "x": 532.9387908446363, + "y": 403.8322689658717 + }, + { + "x": 532.9387908446363, + "y": 493.3059371145148 + }, + { + "x": 499.2684571516646, + "y": 493.3059371145148 + } + ] + }, + { + "id": "u0jRl4v1l", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 34.722564734895194, + "left": 463.4936613748459, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 463.4936613748459, + "y": 398.56909500925167 + }, + { + "x": 498.21622610974106, + "y": 398.56909500925167 + }, + { + "x": 498.21622610974106, + "y": 457.5164794921875 + }, + { + "x": 463.4936613748459, + "y": 457.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "28ae3e332c054a717ab69738ff5c0562": { + "asset": { + "id": "28ae3e332c054a717ab69738ff5c0562", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=42.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=42.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 42.45 + }, + "regions": [ + { + "id": "yrdZ_dHio", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 26.3050053945746, + "left": 986.4364981504316, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 986.4364981504316, + "y": 338.56909500925167 + }, + { + "x": 1012.7415035450061, + "y": 338.56909500925167 + }, + { + "x": 1012.7415035450061, + "y": 383.83223684210526 + }, + { + "x": 986.4364981504316, + "y": 383.83223684210526 + } + ] + }, + { + "id": "R6-bNI-LI-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 37.879161528976574, + "left": 890.6864596177559, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 890.6864596177559, + "y": 341.72698974609375 + }, + { + "x": 928.5656211467325, + "y": 341.72698974609375 + }, + { + "x": 928.5656211467325, + "y": 411.20067395662005 + }, + { + "x": 890.6864596177559, + "y": 411.20067395662005 + } + ] + }, + { + "id": "c6wJ_A0UA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 38.93139257090012, + "left": 800.1972872996301, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 365.93753212376646 + }, + { + "x": 839.1286798705303, + "y": 365.93753212376646 + }, + { + "x": 839.1286798705303, + "y": 424.88486842105266 + }, + { + "x": 800.1972872996301, + "y": 424.88486842105266 + } + ] + }, + { + "id": "AqDvd-qqq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 31.56596794081381, + "left": 740.2219482120838, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 740.2219482120838, + "y": 360.6743581671464 + }, + { + "x": 771.7879161528977, + "y": 360.6743581671464 + }, + { + "x": 771.7879161528977, + "y": 412.2532894736842 + }, + { + "x": 740.2219482120838, + "y": 412.2532894736842 + } + ] + }, + { + "id": "ngN6yrT6c", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 34.722564734895194, + "left": 600.2795545622688, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 600.2795545622688, + "y": 422.7796373869243 + }, + { + "x": 635.002119297164, + "y": 422.7796373869243 + }, + { + "x": 635.002119297164, + "y": 495.41121633429276 + }, + { + "x": 600.2795545622688, + "y": 495.41121633429276 + } + ] + }, + { + "id": "pbSnZyYsl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 29.46150585696671, + "left": 562.4003930332923, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 403.8322689658717 + }, + { + "x": 591.861898890259, + "y": 403.8322689658717 + }, + { + "x": 591.861898890259, + "y": 473.305953176398 + }, + { + "x": 562.4003930332923, + "y": 473.305953176398 + } + ] + }, + { + "id": "R0axSsx3P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 33.67043002466091, + "left": 487.69420468557337, + "top": 413.305953176398 + }, + "points": [ + { + "x": 487.69420468557337, + "y": 413.305953176398 + }, + { + "x": 521.3646347102343, + "y": 413.305953176398 + }, + { + "x": 521.3646347102343, + "y": 479.62174265008224 + }, + { + "x": 487.69420468557337, + "y": 479.62174265008224 + } + ] + }, + { + "id": "pbsgKbJ93", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 22.096177558569668, + "left": 464.54589241676945, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 464.54589241676945, + "y": 389.0954107987253 + }, + { + "x": 486.6420699753391, + "y": 389.0954107987253 + }, + { + "x": 486.6420699753391, + "y": 443.83223684210526 + }, + { + "x": 464.54589241676945, + "y": 443.83223684210526 + } + ] + } + ], + "version": "2.2.0" + }, + "8a16ca3bdad67dd78127dc4ea21b33b3": { + "asset": { + "id": "8a16ca3bdad67dd78127dc4ea21b33b3", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=42.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=42.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 42.3 + }, + "regions": [ + { + "id": "v9BTXNXIB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26312577097039, + "width": 27.35723643649815, + "left": 456.1282367447596, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 456.1282367447596, + "y": 394.3585847553454 + }, + { + "x": 483.4854731812577, + "y": 394.3585847553454 + }, + { + "x": 483.4854731812577, + "y": 459.6217105263158 + }, + { + "x": 456.1282367447596, + "y": 459.6217105263158 + } + ] + }, + { + "id": "1oDdQ5TIT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 32.61810265104809, + "left": 486.6420699753391, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 418.56907894736844 + }, + { + "x": 519.2601726263872, + "y": 418.56907894736844 + }, + { + "x": 519.2601726263872, + "y": 473.305953176398 + }, + { + "x": 486.6420699753391, + "y": 473.305953176398 + } + ] + }, + { + "id": "Tid8qpNRq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 36.82693048705302, + "left": 587.6531673859433, + "top": 414.3585686934622 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 414.3585686934622 + }, + { + "x": 624.4800978729963, + "y": 414.3585686934622 + }, + { + "x": 624.4800978729963, + "y": 486.99014764083057 + }, + { + "x": 587.6531673859433, + "y": 486.99014764083057 + } + ] + }, + { + "id": "m8RoClE4W1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 33.67043002466091, + "left": 550.826140567201, + "top": 414.3585686934622 + }, + "points": [ + { + "x": 550.826140567201, + "y": 414.3585686934622 + }, + { + "x": 584.4965705918619, + "y": 414.3585686934622 + }, + { + "x": 584.4965705918619, + "y": 474.3585686934622 + }, + { + "x": 550.826140567201, + "y": 474.3585686934622 + } + ] + }, + { + "id": "s4EUZmGrl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 28.40937114673243, + "left": 733.9087546239211, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 368.04276315789474 + }, + { + "x": 762.3181257706535, + "y": 368.04276315789474 + }, + { + "x": 762.3181257706535, + "y": 429.09542686060854 + }, + { + "x": 733.9087546239211, + "y": 429.09542686060854 + } + ] + }, + { + "id": "bEB2kmZZZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 25.25277435265105, + "left": 983.2799013563503, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 983.2799013563503, + "y": 316.46383185135693 + }, + { + "x": 1008.5326757090013, + "y": 316.46383185135693 + }, + { + "x": 1008.5326757090013, + "y": 378.5691110711349 + }, + { + "x": 983.2799013563503, + "y": 378.5691110711349 + } + ] + }, + { + "id": "nGepHQ2ny", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 36.82693048705302, + "left": 886.4776317817509, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 886.4776317817509, + "y": 332.25330553556745 + }, + { + "x": 923.3045622688039, + "y": 332.25330553556745 + }, + { + "x": 923.3045622688039, + "y": 403.8322689658717 + }, + { + "x": 886.4776317817509, + "y": 403.8322689658717 + } + ] + }, + { + "id": "9quY2rMGd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 34.722564734895194, + "left": 790.7274969173859, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 790.7274969173859, + "y": 360.6743581671464 + }, + { + "x": 825.4500616522812, + "y": 360.6743581671464 + }, + { + "x": 825.4500616522812, + "y": 428.04276315789474 + }, + { + "x": 790.7274969173859, + "y": 428.04276315789474 + } + ] + } + ], + "version": "2.2.0" + }, + "0a9138c52bca6541bd1ec45a9b318b9c": { + "asset": { + "id": "0a9138c52bca6541bd1ec45a9b318b9c", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=42.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=42.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 42.15 + }, + "regions": [ + { + "id": "tojXydwCm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 33.67043002466091, + "left": 970.6535141800247, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 970.6535141800247, + "y": 332.25330553556745 + }, + { + "x": 1004.3239442046856, + "y": 332.25330553556745 + }, + { + "x": 1004.3239442046856, + "y": 397.5164794921875 + }, + { + "x": 970.6535141800247, + "y": 397.5164794921875 + } + ] + }, + { + "id": "HFgEKGPRn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 37.879161528976574, + "left": 884.3732660295931, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 884.3732660295931, + "y": 341.72698974609375 + }, + { + "x": 922.2524275585697, + "y": 341.72698974609375 + }, + { + "x": 922.2524275585697, + "y": 403.8322689658717 + }, + { + "x": 884.3732660295931, + "y": 403.8322689658717 + } + ] + }, + { + "id": "G5j28mQ6J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 51.557779747225645, + "left": 781.2577065351418, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 781.2577065351418, + "y": 360.6743581671464 + }, + { + "x": 832.8154862823675, + "y": 360.6743581671464 + }, + { + "x": 832.8154862823675, + "y": 418.56907894736844 + }, + { + "x": 781.2577065351418, + "y": 418.56907894736844 + } + ] + }, + { + "id": "Dn3c1Hq-W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 26.304909062885326, + "left": 729.7000231196055, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 371.2006578947368 + }, + { + "x": 756.0049321824907, + "y": 371.2006578947368 + }, + { + "x": 756.0049321824907, + "y": 419.62174265008224 + }, + { + "x": 729.7000231196055, + "y": 419.62174265008224 + } + ] + }, + { + "id": "e9L0wq_tH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 35.77479577681874, + "left": 585.5487053020962, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 585.5487053020962, + "y": 418.56907894736844 + }, + { + "x": 621.3235010789149, + "y": 418.56907894736844 + }, + { + "x": 621.3235010789149, + "y": 471.20067395662005 + }, + { + "x": 585.5487053020962, + "y": 471.20067395662005 + } + ] + }, + { + "id": "t4QJzldcQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 30.513736898890258, + "left": 545.5651780209618, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 401.72698974609375 + }, + { + "x": 576.0789149198521, + "y": 401.72698974609375 + }, + { + "x": 576.0789149198521, + "y": 472.2532894736842 + }, + { + "x": 545.5651780209618, + "y": 472.2532894736842 + } + ] + }, + { + "id": "IX0WQYOAU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 26.3050053945746, + "left": 476.1200485511714, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 416.46384791324016 + }, + { + "x": 502.425053945746, + "y": 416.46384791324016 + }, + { + "x": 502.425053945746, + "y": 463.8322689658717 + }, + { + "x": 476.1200485511714, + "y": 463.8322689658717 + } + ] + }, + { + "id": "a__koFSTSM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 26.304957228729965, + "left": 445.6062634864365, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 445.6062634864365, + "y": 406.9901637027138 + }, + { + "x": 471.91122071516645, + "y": 406.9901637027138 + }, + { + "x": 471.91122071516645, + "y": 462.7796052631579 + }, + { + "x": 445.6062634864365, + "y": 462.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "b7eeb0a8fcb0638b621b163f3fd55895": { + "asset": { + "id": "b7eeb0a8fcb0638b621b163f3fd55895", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41.95 + }, + "regions": [ + { + "id": "4gBKPN_xc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 35.77479577681874, + "left": 962.235954839704, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 962.235954839704, + "y": 331.2006900185033 + }, + { + "x": 998.0107506165228, + "y": 331.2006900185033 + }, + { + "x": 998.0107506165228, + "y": 386.9901315789474 + }, + { + "x": 962.235954839704, + "y": 386.9901315789474 + } + ] + }, + { + "id": "_IqW26ulz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 45.244586159062884, + "left": 872.7990135635018, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 872.7990135635018, + "y": 343.8322689658717 + }, + { + "x": 918.0435997225647, + "y": 343.8322689658717 + }, + { + "x": 918.0435997225647, + "y": 408.04277921977797 + }, + { + "x": 872.7990135635018, + "y": 408.04277921977797 + } + ] + }, + { + "id": "Gwkx0dKPs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 46.29681720098644, + "left": 787.5709001233046, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 787.5709001233046, + "y": 356.46384791324016 + }, + { + "x": 833.867717324291, + "y": 356.46384791324016 + }, + { + "x": 833.867717324291, + "y": 415.4111842105263 + }, + { + "x": 787.5709001233046, + "y": 415.4111842105263 + } + ] + }, + { + "id": "S4xig921T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36845317639802, + "width": 32.61810265104809, + "left": 713.9170391491986, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 713.9170391491986, + "y": 371.2006578947368 + }, + { + "x": 746.5351418002466, + "y": 371.2006578947368 + }, + { + "x": 746.5351418002466, + "y": 438.5691110711349 + }, + { + "x": 713.9170391491986, + "y": 438.5691110711349 + } + ] + }, + { + "id": "zGK5rxxlX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 33.67043002466091, + "left": 582.3921085080148, + "top": 414.3585686934622 + }, + "points": [ + { + "x": 582.3921085080148, + "y": 414.3585686934622 + }, + { + "x": 616.0625385326757, + "y": 414.3585686934622 + }, + { + "x": 616.0625385326757, + "y": 475.4111842105263 + }, + { + "x": 582.3921085080148, + "y": 475.4111842105263 + } + ] + }, + { + "id": "ayI6qCRUA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.4210205078125, + "width": 31.56596794081381, + "left": 542.4085812268804, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 542.4085812268804, + "y": 403.8322689658717 + }, + { + "x": 573.9745491676942, + "y": 403.8322689658717 + }, + { + "x": 573.9745491676942, + "y": 472.2532894736842 + }, + { + "x": 542.4085812268804, + "y": 472.2532894736842 + } + ] + }, + { + "id": "AV2bhLjW9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.7368099814967, + "width": 27.35723643649815, + "left": 471.91122071516645, + "top": 413.305953176398 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 413.305953176398 + }, + { + "x": 499.2684571516646, + "y": 413.305953176398 + }, + { + "x": 499.2684571516646, + "y": 488.04276315789474 + }, + { + "x": 471.91122071516645, + "y": 488.04276315789474 + } + ] + }, + { + "id": "DRXA1Ud_Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 28.40937114673243, + "left": 435.08429022811345, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 435.08429022811345, + "y": 397.5164794921875 + }, + { + "x": 463.4936613748459, + "y": 397.5164794921875 + }, + { + "x": 463.4936613748459, + "y": 459.6217105263158 + }, + { + "x": 435.08429022811345, + "y": 459.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "e1b8a25f2c423b558cec9c74c5f8203d": { + "asset": { + "id": "e1b8a25f2c423b558cec9c74c5f8203d", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41.8 + }, + "regions": [ + { + "id": "b3e1_U7st", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 32.61810265104809, + "left": 966.444782675709, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 966.444782675709, + "y": 329.0954107987253 + }, + { + "x": 999.062885326757, + "y": 329.0954107987253 + }, + { + "x": 999.062885326757, + "y": 380.6743421052632 + }, + { + "x": 966.444782675709, + "y": 380.6743421052632 + } + ] + }, + { + "id": "cHI3XkQm_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 37.879161528976574, + "left": 872.7990135635018, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 872.7990135635018, + "y": 351.20067395662005 + }, + { + "x": 910.6781750924785, + "y": 351.20067395662005 + }, + { + "x": 910.6781750924785, + "y": 409.09539473684214 + }, + { + "x": 872.7990135635018, + "y": 409.09539473684214 + } + ] + }, + { + "id": "c62gzbAh5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 27.357140104808877, + "left": 789.6753622071517, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 789.6753622071517, + "y": 368.04276315789474 + }, + { + "x": 817.0325023119606, + "y": 368.04276315789474 + }, + { + "x": 817.0325023119606, + "y": 417.51646343030427 + }, + { + "x": 789.6753622071517, + "y": 417.51646343030427 + } + ] + }, + { + "id": "D6KYF5Ifn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 25.25277435265105, + "left": 722.3345984895191, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 722.3345984895191, + "y": 372.2533215974507 + }, + { + "x": 747.5873728421702, + "y": 372.2533215974507 + }, + { + "x": 747.5873728421702, + "y": 415.4111842105263 + }, + { + "x": 722.3345984895191, + "y": 415.4111842105263 + } + ] + }, + { + "id": "OharHj6Zs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 47.348951911220716, + "left": 586.6009363440197, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 419.62174265008224 + }, + { + "x": 633.9498882552405, + "y": 419.62174265008224 + }, + { + "x": 633.9498882552405, + "y": 489.09542686060854 + }, + { + "x": 586.6009363440197, + "y": 489.09542686060854 + } + ] + }, + { + "id": "fyRNnpsz3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 28.40937114673243, + "left": 541.3563501849568, + "top": 400.67437422902964 + }, + "points": [ + { + "x": 541.3563501849568, + "y": 400.67437422902964 + }, + { + "x": 569.7657213316893, + "y": 400.67437422902964 + }, + { + "x": 569.7657213316893, + "y": 462.7796052631579 + }, + { + "x": 541.3563501849568, + "y": 462.7796052631579 + } + ] + }, + { + "id": "3YcVTVB3V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 44.192355117139336, + "left": 460.3370645807645, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 460.3370645807645, + "y": 419.62174265008224 + }, + { + "x": 504.52941969790385, + "y": 419.62174265008224 + }, + { + "x": 504.52941969790385, + "y": 477.51646343030427 + }, + { + "x": 460.3370645807645, + "y": 477.51646343030427 + } + ] + }, + { + "id": "TRyVJ1bQ1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 15.782983970406905, + "left": 439.29306989827376, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 439.29306989827376, + "y": 399.6217105263158 + }, + { + "x": 455.0760538686807, + "y": 399.6217105263158 + }, + { + "x": 455.0760538686807, + "y": 449.0954107987253 + }, + { + "x": 439.29306989827376, + "y": 449.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "8b77a22ec6bc08f7eebb57a87e8161a5": { + "asset": { + "id": "8b77a22ec6bc08f7eebb57a87e8161a5", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41.65 + }, + "regions": [ + { + "id": "jWapYvBXh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 29.46160218865598, + "left": 974.8623420160296, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 974.8623420160296, + "y": 326.9901315789474 + }, + { + "x": 1004.3239442046856, + "y": 326.9901315789474 + }, + { + "x": 1004.3239442046856, + "y": 388.0427952816612 + }, + { + "x": 974.8623420160296, + "y": 388.0427952816612 + } + ] + }, + { + "id": "xPHjRG3rY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 44.192355117139336, + "left": 874.903475647349, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 874.903475647349, + "y": 341.72698974609375 + }, + { + "x": 919.0958307644883, + "y": 341.72698974609375 + }, + { + "x": 919.0958307644883, + "y": 410.14805843955594 + }, + { + "x": 874.903475647349, + "y": 410.14805843955594 + } + ] + }, + { + "id": "NOtv1nIk0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 33.67033369297164, + "left": 794.9363247533909, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 794.9363247533909, + "y": 362.7796373869243 + }, + { + "x": 828.6066584463625, + "y": 362.7796373869243 + }, + { + "x": 828.6066584463625, + "y": 429.09542686060854 + }, + { + "x": 794.9363247533909, + "y": 429.09542686060854 + } + ] + }, + { + "id": "f3Ti76mhD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 35.77479577681874, + "left": 711.8125770653514, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 711.8125770653514, + "y": 360.6743581671464 + }, + { + "x": 747.5873728421702, + "y": 360.6743581671464 + }, + { + "x": 747.5873728421702, + "y": 426.99014764083057 + }, + { + "x": 711.8125770653514, + "y": 426.99014764083057 + } + ] + }, + { + "id": "cuhZ2MJ6x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 36.82693048705302, + "left": 589.7575331381012, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 589.7575331381012, + "y": 409.09539473684214 + }, + { + "x": 626.5844636251542, + "y": 409.09539473684214 + }, + { + "x": 626.5844636251542, + "y": 481.7269736842105 + }, + { + "x": 589.7575331381012, + "y": 481.7269736842105 + } + ] + }, + { + "id": "OFxPA5u2r", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26312577097039, + "width": 45.244586159062884, + "left": 532.9387908446363, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 410.14805843955594 + }, + { + "x": 578.1833770036991, + "y": 410.14805843955594 + }, + { + "x": 578.1833770036991, + "y": 475.4111842105263 + }, + { + "x": 532.9387908446363, + "y": 475.4111842105263 + } + ] + }, + { + "id": "ShKWuBrMP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 32.61819898273736, + "left": 466.6502581689273, + "top": 426.99014764083057 + }, + "points": [ + { + "x": 466.6502581689273, + "y": 426.99014764083057 + }, + { + "x": 499.2684571516646, + "y": 426.99014764083057 + }, + { + "x": 499.2684571516646, + "y": 495.41121633429276 + }, + { + "x": 466.6502581689273, + "y": 495.41121633429276 + } + ] + }, + { + "id": "LFHF-rBXw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 30.513785064734897, + "left": 427.71886559802715, + "top": 426.99014764083057 + }, + "points": [ + { + "x": 427.71886559802715, + "y": 426.99014764083057 + }, + { + "x": 458.232650662762, + "y": 426.99014764083057 + }, + { + "x": 458.232650662762, + "y": 474.3585686934622 + }, + { + "x": 427.71886559802715, + "y": 474.3585686934622 + } + ] + } + ], + "version": "2.2.0" + }, + "61888454da35de204ec1d0d38d3fb833": { + "asset": { + "id": "61888454da35de204ec1d0d38d3fb833", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41.5 + }, + "regions": [ + { + "id": "RGXIjUuAc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 28.40937114673243, + "left": 980.1233045622688, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 980.1233045622688, + "y": 324.88490054481906 + }, + { + "x": 1008.5326757090013, + "y": 324.88490054481906 + }, + { + "x": 1008.5326757090013, + "y": 394.3585847553454 + }, + { + "x": 980.1233045622688, + "y": 394.3585847553454 + } + ] + }, + { + "id": "ct9tb1cfQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 39.9835272811344, + "left": 881.2166692355117, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 881.2166692355117, + "y": 357.51646343030427 + }, + { + "x": 921.2001965166461, + "y": 357.51646343030427 + }, + { + "x": 921.2001965166461, + "y": 405.9375 + }, + { + "x": 881.2166692355117, + "y": 405.9375 + } + ] + }, + { + "id": "j9dla3YAZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 35.77479577681874, + "left": 787.5709001233046, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 787.5709001233046, + "y": 359.62174265008224 + }, + { + "x": 823.3456959001234, + "y": 359.62174265008224 + }, + { + "x": 823.3456959001234, + "y": 421.7269736842105 + }, + { + "x": 787.5709001233046, + "y": 421.7269736842105 + } + ] + }, + { + "id": "_TWhArDOz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 81.0526476408306, + "width": 36.82693048705302, + "left": 710.7604423551171, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 710.7604423551171, + "y": 358.56907894736844 + }, + { + "x": 747.5873728421702, + "y": 358.56907894736844 + }, + { + "x": 747.5873728421702, + "y": 439.621726588199 + }, + { + "x": 710.7604423551171, + "y": 439.621726588199 + } + ] + }, + { + "id": "lBk35Of73", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 39.9835272811344, + "left": 583.4443395499384, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 583.4443395499384, + "y": 410.14805843955594 + }, + { + "x": 623.4278668310727, + "y": 410.14805843955594 + }, + { + "x": 623.4278668310727, + "y": 470.14805843955594 + }, + { + "x": 583.4443395499384, + "y": 470.14805843955594 + } + ] + }, + { + "id": "9ldZCEdeh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 79.99998393811678, + "width": 26.304909062885326, + "left": 546.6174090628854, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 546.6174090628854, + "y": 394.3585847553454 + }, + { + "x": 572.9223181257706, + "y": 394.3585847553454 + }, + { + "x": 572.9223181257706, + "y": 474.3585686934622 + }, + { + "x": 546.6174090628854, + "y": 474.3585686934622 + } + ] + }, + { + "id": "ywiKPGwUO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 41.035758323057955, + "left": 461.38929562268805, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 461.38929562268805, + "y": 419.62174265008224 + }, + { + "x": 502.425053945746, + "y": 419.62174265008224 + }, + { + "x": 502.425053945746, + "y": 481.7269736842105 + }, + { + "x": 461.38929562268805, + "y": 481.7269736842105 + } + ] + }, + { + "id": "7AWntjUuQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 22.096177558569668, + "left": 436.13647310419236, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 436.13647310419236, + "y": 408.04277921977797 + }, + { + "x": 458.232650662762, + "y": 408.04277921977797 + }, + { + "x": 458.232650662762, + "y": 465.9375 + }, + { + "x": 436.13647310419236, + "y": 465.9375 + } + ] + } + ], + "version": "2.2.0" + }, + "2c561717f0b9f8658ed02f9d3df67393": { + "asset": { + "id": "2c561717f0b9f8658ed02f9d3df67393", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41.35 + }, + "regions": [ + { + "id": "yt-NjBQRf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 26.3050053945746, + "left": 437.1886559802713, + "top": 423.8322529039885 + }, + "points": [ + { + "x": 437.1886559802713, + "y": 423.8322529039885 + }, + { + "x": 463.4936613748459, + "y": 423.8322529039885 + }, + { + "x": 463.4936613748459, + "y": 470.14805843955594 + }, + { + "x": 437.1886559802713, + "y": 470.14805843955594 + } + ] + }, + { + "id": "HnP4nbD_k", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 19.99181180641184, + "left": 469.8068549630086, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 469.8068549630086, + "y": 418.56907894736844 + }, + { + "x": 489.7986667694205, + "y": 418.56907894736844 + }, + { + "x": 489.7986667694205, + "y": 488.04276315789474 + }, + { + "x": 469.8068549630086, + "y": 488.04276315789474 + } + ] + }, + { + "id": "kV4ajPj50", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 32.61810265104809, + "left": 982.2277666461159, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 982.2277666461159, + "y": 331.2006900185033 + }, + { + "x": 1014.845869297164, + "y": 331.2006900185033 + }, + { + "x": 1014.845869297164, + "y": 380.6743421052632 + }, + { + "x": 982.2277666461159, + "y": 380.6743421052632 + } + ] + }, + { + "id": "BT5nKidLM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 38.93129623921085, + "left": 884.3732660295931, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 884.3732660295931, + "y": 341.72698974609375 + }, + { + "x": 923.3045622688039, + "y": 341.72698974609375 + }, + { + "x": 923.3045622688039, + "y": 408.04277921977797 + }, + { + "x": 884.3732660295931, + "y": 408.04277921977797 + } + ] + }, + { + "id": "asA2SE345", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 29.46150585696671, + "left": 792.831959001233, + "top": 353.305953176398 + }, + "points": [ + { + "x": 792.831959001233, + "y": 353.305953176398 + }, + { + "x": 822.2934648581997, + "y": 353.305953176398 + }, + { + "x": 822.2934648581997, + "y": 406.9901637027138 + }, + { + "x": 792.831959001233, + "y": 406.9901637027138 + } + ] + }, + { + "id": "XKnLLk4F3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 51.557779747225645, + "left": 703.3950177250308, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 372.2533215974507 + }, + { + "x": 754.9527974722565, + "y": 372.2533215974507 + }, + { + "x": 754.9527974722565, + "y": 430.1480423776727 + }, + { + "x": 703.3950177250308, + "y": 430.1480423776727 + } + ] + }, + { + "id": "P5kjpcO5q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 34.722564734895194, + "left": 584.4965705918619, + "top": 415.4111842105263 + }, + "points": [ + { + "x": 584.4965705918619, + "y": 415.4111842105263 + }, + { + "x": 619.219135326757, + "y": 415.4111842105263 + }, + { + "x": 619.219135326757, + "y": 470.14805843955594 + }, + { + "x": 584.4965705918619, + "y": 470.14805843955594 + } + ] + }, + { + "id": "tIlkBJt8J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 22.096177558569668, + "left": 547.6695437731196, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 547.6695437731196, + "y": 401.72698974609375 + }, + { + "x": 569.7657213316893, + "y": 401.72698974609375 + }, + { + "x": 569.7657213316893, + "y": 454.3585847553454 + }, + { + "x": 547.6695437731196, + "y": 454.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "8daa30824c7bb0c9f6147d17c63c2060": { + "asset": { + "id": "8daa30824c7bb0c9f6147d17c63c2060", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41.2 + }, + "regions": [ + { + "id": "eaI1KGb8T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 26.3050053945746, + "left": 989.5930949445129, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 989.5930949445129, + "y": 328.0427952816612 + }, + { + "x": 1015.8981003390876, + "y": 328.0427952816612 + }, + { + "x": 1015.8981003390876, + "y": 382.77962132504115 + }, + { + "x": 989.5930949445129, + "y": 382.77962132504115 + } + ] + }, + { + "id": "K7U9TTPD9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 21.043946516646116, + "left": 893.8430564118372, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 893.8430564118372, + "y": 341.72698974609375 + }, + { + "x": 914.8870029284834, + "y": 341.72698974609375 + }, + { + "x": 914.8870029284834, + "y": 403.8322689658717 + }, + { + "x": 893.8430564118372, + "y": 403.8322689658717 + } + ] + }, + { + "id": "t8ZkxS0K5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57896343030427, + "width": 42.08789303329223, + "left": 786.5187654130702, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 786.5187654130702, + "y": 351.20067395662005 + }, + { + "x": 828.6066584463625, + "y": 351.20067395662005 + }, + { + "x": 828.6066584463625, + "y": 422.7796373869243 + }, + { + "x": 786.5187654130702, + "y": 422.7796373869243 + } + ] + }, + { + "id": "67cOF0E0u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 31.56596794081381, + "left": 717.0736359432799, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 717.0736359432799, + "y": 365.93753212376646 + }, + { + "x": 748.6396038840937, + "y": 365.93753212376646 + }, + { + "x": 748.6396038840937, + "y": 416.46384791324016 + }, + { + "x": 717.0736359432799, + "y": 416.46384791324016 + } + ] + }, + { + "id": "xaq1ONuwu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 23.14840860049322, + "left": 596.0707267262638, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 596.0707267262638, + "y": 394.3585847553454 + }, + { + "x": 619.219135326757, + "y": 394.3585847553454 + }, + { + "x": 619.219135326757, + "y": 461.72698974609375 + }, + { + "x": 596.0707267262638, + "y": 461.72698974609375 + } + ] + }, + { + "id": "J0e56BhPt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 76.84208920127467, + "width": 35.77479577681874, + "left": 544.5129469790382, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 544.5129469790382, + "y": 394.3585847553454 + }, + { + "x": 580.2877427558569, + "y": 394.3585847553454 + }, + { + "x": 580.2877427558569, + "y": 471.20067395662005 + }, + { + "x": 544.5129469790382, + "y": 471.20067395662005 + } + ] + }, + { + "id": "gmPAnR9dx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 23.14840860049322, + "left": 462.4414303329223, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 462.4414303329223, + "y": 417.51646343030427 + }, + { + "x": 485.58983893341554, + "y": 417.51646343030427 + }, + { + "x": 485.58983893341554, + "y": 469.09539473684214 + }, + { + "x": 462.4414303329223, + "y": 469.09539473684214 + } + ] + }, + { + "id": "4CQWZbHUq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 28.40937114673243, + "left": 427.71886559802715, + "top": 400.67437422902964 + }, + "points": [ + { + "x": 427.71886559802715, + "y": 400.67437422902964 + }, + { + "x": 456.1282367447596, + "y": 400.67437422902964 + }, + { + "x": 456.1282367447596, + "y": 470.14805843955594 + }, + { + "x": 427.71886559802715, + "y": 470.14805843955594 + } + ] + } + ], + "version": "2.2.0" + }, + "1aa3d9c13a6ceb57a6ff5d146f508f6a": { + "asset": { + "id": "1aa3d9c13a6ceb57a6ff5d146f508f6a", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=41.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=41", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 41 + }, + "regions": [ + { + "id": "QhKvNRI1z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 32.61810265104809, + "left": 975.9145730579531, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 975.9145730579531, + "y": 316.46383185135693 + }, + { + "x": 1008.5326757090013, + "y": 316.46383185135693 + }, + { + "x": 1008.5326757090013, + "y": 371.2006578947368 + }, + { + "x": 975.9145730579531, + "y": 371.2006578947368 + } + ] + }, + { + "id": "guvhCP-Sw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 29.46160218865598, + "left": 885.4254007398274, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 885.4254007398274, + "y": 331.2006900185033 + }, + { + "x": 914.8870029284834, + "y": 331.2006900185033 + }, + { + "x": 914.8870029284834, + "y": 392.25330553556745 + }, + { + "x": 885.4254007398274, + "y": 392.25330553556745 + } + ] + }, + { + "id": "jn-Zhcyw_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 50.5055487053021, + "left": 784.4143033292232, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 784.4143033292232, + "y": 346.9901637027138 + }, + { + "x": 834.9198520345253, + "y": 346.9901637027138 + }, + { + "x": 834.9198520345253, + "y": 405.9375 + }, + { + "x": 784.4143033292232, + "y": 405.9375 + } + ] + }, + { + "id": "-CE0ZE9Zx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 27.357140104808877, + "left": 717.0736359432799, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 717.0736359432799, + "y": 359.62174265008224 + }, + { + "x": 744.4307760480888, + "y": 359.62174265008224 + }, + { + "x": 744.4307760480888, + "y": 415.4111842105263 + }, + { + "x": 717.0736359432799, + "y": 415.4111842105263 + } + ] + }, + { + "id": "6AO6vPQ7q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 32.61819898273736, + "left": 585.5487053020962, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 585.5487053020962, + "y": 395.41120027240953 + }, + { + "x": 618.1669042848335, + "y": 395.41120027240953 + }, + { + "x": 618.1669042848335, + "y": 448.0427952816612 + }, + { + "x": 585.5487053020962, + "y": 448.0427952816612 + } + ] + }, + { + "id": "55gJ25JFU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 36.8270268187423, + "left": 538.1997533908755, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 538.1997533908755, + "y": 385.93751606188323 + }, + { + "x": 575.0267802096178, + "y": 385.93751606188323 + }, + { + "x": 575.0267802096178, + "y": 449.0954107987253 + }, + { + "x": 538.1997533908755, + "y": 449.0954107987253 + } + ] + }, + { + "id": "-NDPyelaZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 33.67038185881628, + "left": 455.0760538686807, + "top": 413.305953176398 + }, + "points": [ + { + "x": 455.0760538686807, + "y": 413.305953176398 + }, + { + "x": 488.74643572749693, + "y": 413.305953176398 + }, + { + "x": 488.74643572749693, + "y": 473.305953176398 + }, + { + "x": 455.0760538686807, + "y": 473.305953176398 + } + ] + }, + { + "id": "pgwXxnxMn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 23.14840860049322, + "left": 421.40567200986436, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 421.40567200986436, + "y": 399.6217105263158 + }, + { + "x": 444.5540806103576, + "y": 399.6217105263158 + }, + { + "x": 444.5540806103576, + "y": 455.41120027240953 + }, + { + "x": 421.40567200986436, + "y": 455.41120027240953 + } + ] + } + ], + "version": "2.2.0" + }, + "815105e83212c93b6bf2c23452b99a3c": { + "asset": { + "id": "815105e83212c93b6bf2c23452b99a3c", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=40.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=40.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 40.85 + }, + "regions": [ + { + "id": "SUtXY0oGY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 17.887446054254006, + "left": 986.4364981504316, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 986.4364981504316, + "y": 316.46383185135693 + }, + { + "x": 1004.3239442046856, + "y": 316.46383185135693 + }, + { + "x": 1004.3239442046856, + "y": 365.93753212376646 + }, + { + "x": 986.4364981504316, + "y": 365.93753212376646 + } + ] + }, + { + "id": "jeBA_H12f", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 44.192355117139336, + "left": 882.268803945746, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 882.268803945746, + "y": 331.2006900185033 + }, + { + "x": 926.4611590628854, + "y": 331.2006900185033 + }, + { + "x": 926.4611590628854, + "y": 378.5691110711349 + }, + { + "x": 882.268803945746, + "y": 378.5691110711349 + } + ] + }, + { + "id": "0iueam006", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 33.67043002466091, + "left": 781.2577065351418, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 781.2577065351418, + "y": 343.8322689658717 + }, + { + "x": 814.9281365598027, + "y": 343.8322689658717 + }, + { + "x": 814.9281365598027, + "y": 390.1480263157895 + }, + { + "x": 781.2577065351418, + "y": 390.1480263157895 + } + ] + }, + { + "id": "6um06UaWQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 33.67033369297164, + "left": 707.6038455610358, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 707.6038455610358, + "y": 348.04277921977797 + }, + { + "x": 741.2741792540074, + "y": 348.04277921977797 + }, + { + "x": 741.2741792540074, + "y": 408.04277921977797 + }, + { + "x": 707.6038455610358, + "y": 408.04277921977797 + } + ] + }, + { + "id": "a171749CV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 41.035758323057955, + "left": 575.0267802096178, + "top": 379.621726588199 + }, + "points": [ + { + "x": 575.0267802096178, + "y": 379.621726588199 + }, + { + "x": 616.0625385326757, + "y": 379.621726588199 + }, + { + "x": 616.0625385326757, + "y": 449.0954107987253 + }, + { + "x": 575.0267802096178, + "y": 449.0954107987253 + } + ] + }, + { + "id": "7Rq7U2etA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 43.14012407521578, + "left": 524.5212315043157, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 524.5212315043157, + "y": 363.8322529039885 + }, + { + "x": 567.6613555795315, + "y": 363.8322529039885 + }, + { + "x": 567.6613555795315, + "y": 432.2533215974507 + }, + { + "x": 524.5212315043157, + "y": 432.2533215974507 + } + ] + }, + { + "id": "C6euypwit", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 25.25277435265105, + "left": 447.71067740443897, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 447.71067740443897, + "y": 412.2532894736842 + }, + { + "x": 472.96345175709, + "y": 412.2532894736842 + }, + { + "x": 472.96345175709, + "y": 469.09539473684214 + }, + { + "x": 447.71067740443897, + "y": 469.09539473684214 + } + ] + }, + { + "id": "D3IzyG0XO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 25.25277435265105, + "left": 414.0402955456227, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 414.0402955456227, + "y": 396.4638157894737 + }, + { + "x": 439.29306989827376, + "y": 396.4638157894737 + }, + { + "x": 439.29306989827376, + "y": 444.88490054481906 + }, + { + "x": 414.0402955456227, + "y": 444.88490054481906 + } + ] + } + ], + "version": "2.2.0" + }, + "98800d3636552571569dc14a0b43dd9a": { + "asset": { + "id": "98800d3636552571569dc14a0b43dd9a", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=40.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=40.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 40.7 + }, + "regions": [ + { + "id": "TQ5339BZw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 39.9835272811344, + "left": 969.6013794697903, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 969.6013794697903, + "y": 309.09542686060854 + }, + { + "x": 1009.5849067509248, + "y": 309.09542686060854 + }, + { + "x": 1009.5849067509248, + "y": 356.46384791324016 + }, + { + "x": 969.6013794697903, + "y": 356.46384791324016 + } + ] + }, + { + "id": "7SO2L-RPL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 36.82693048705302, + "left": 867.5380510172627, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 867.5380510172627, + "y": 318.5691110711349 + }, + { + "x": 904.3649815043157, + "y": 318.5691110711349 + }, + { + "x": 904.3649815043157, + "y": 374.35855263157896 + }, + { + "x": 867.5380510172627, + "y": 374.35855263157896 + } + ] + }, + { + "id": "kYaJI9k-T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 34.722564734895194, + "left": 777.0489750308261, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 777.0489750308261, + "y": 334.3585847553454 + }, + { + "x": 811.7715397657213, + "y": 334.3585847553454 + }, + { + "x": 811.7715397657213, + "y": 381.727005807977 + }, + { + "x": 777.0489750308261, + "y": 381.727005807977 + } + ] + }, + { + "id": "_zjc-OkMY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 23.148312268803945, + "left": 707.6038455610358, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 707.6038455610358, + "y": 341.72698974609375 + }, + { + "x": 730.7521578298397, + "y": 341.72698974609375 + }, + { + "x": 730.7521578298397, + "y": 388.0427952816612 + }, + { + "x": 707.6038455610358, + "y": 388.0427952816612 + } + ] + }, + { + "id": "qGvJWNR8J9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 23.14840860049322, + "left": 580.2877427558569, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 580.2877427558569, + "y": 378.5691110711349 + }, + { + "x": 603.4361513563501, + "y": 378.5691110711349 + }, + { + "x": 603.4361513563501, + "y": 428.04276315789474 + }, + { + "x": 580.2877427558569, + "y": 428.04276315789474 + } + ] + }, + { + "id": "QKY8Ab6C7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 36.82693048705302, + "left": 532.9387908446363, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 371.2006578947368 + }, + { + "x": 569.7657213316893, + "y": 371.2006578947368 + }, + { + "x": 569.7657213316893, + "y": 429.09542686060854 + }, + { + "x": 532.9387908446363, + "y": 429.09542686060854 + } + ] + }, + { + "id": "Hhe6sjmQD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 38.93139257090012, + "left": 428.77109663995066, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 428.77109663995066, + "y": 396.4638157894737 + }, + { + "x": 467.7024892108508, + "y": 396.4638157894737 + }, + { + "x": 467.7024892108508, + "y": 436.46383185135693 + }, + { + "x": 428.77109663995066, + "y": 436.46383185135693 + } + ] + } + ], + "version": "2.2.0" + }, + "509edcdcfcc7dfe5189db121e182eee3": { + "asset": { + "id": "509edcdcfcc7dfe5189db121e182eee3", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=40.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=40.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 40.55 + }, + "regions": [ + { + "id": "xYLDzLc-X", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 31.56596794081381, + "left": 964.3403205918619, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 964.3403205918619, + "y": 292.2532894736842 + }, + { + "x": 995.9062885326757, + "y": 292.2532894736842 + }, + { + "x": 995.9062885326757, + "y": 353.305953176398 + }, + { + "x": 964.3403205918619, + "y": 353.305953176398 + } + ] + }, + { + "id": "oROaitjP_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 39.98362361282368, + "left": 869.6424167694205, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 869.6424167694205, + "y": 306.99014764083057 + }, + { + "x": 909.6260403822441, + "y": 306.99014764083057 + }, + { + "x": 909.6260403822441, + "y": 363.8322529039885 + }, + { + "x": 869.6424167694205, + "y": 363.8322529039885 + } + ] + }, + { + "id": "DFy6PdOAR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 26.3050053945746, + "left": 775.9967439889026, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 775.9967439889026, + "y": 316.46383185135693 + }, + { + "x": 802.3017493834772, + "y": 316.46383185135693 + }, + { + "x": 802.3017493834772, + "y": 368.04276315789474 + }, + { + "x": 775.9967439889026, + "y": 368.04276315789474 + } + ] + }, + { + "id": "WL-F0ij_y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 26.3050053945746, + "left": 699.1861898890259, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 699.1861898890259, + "y": 328.0427952816612 + }, + { + "x": 725.4911952836005, + "y": 328.0427952816612 + }, + { + "x": 725.4911952836005, + "y": 376.46383185135693 + }, + { + "x": 699.1861898890259, + "y": 376.46383185135693 + } + ] + }, + { + "id": "46mm5TOh5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 41.035758323057955, + "left": 559.2437962392108, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 559.2437962392108, + "y": 366.99014764083057 + }, + { + "x": 600.2795545622688, + "y": 366.99014764083057 + }, + { + "x": 600.2795545622688, + "y": 420.6743581671464 + }, + { + "x": 559.2437962392108, + "y": 420.6743581671464 + } + ] + }, + { + "id": "N6xjDcIqL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 25.25277435265105, + "left": 526.6255972564735, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 526.6255972564735, + "y": 365.93753212376646 + }, + { + "x": 551.8783716091245, + "y": 365.93753212376646 + }, + { + "x": 551.8783716091245, + "y": 418.56907894736844 + }, + { + "x": 526.6255972564735, + "y": 418.56907894736844 + } + ] + }, + { + "id": "Gq0hifiXR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 34.722564734895194, + "left": 421.40567200986436, + "top": 383.83223684210526 + }, + "points": [ + { + "x": 421.40567200986436, + "y": 383.83223684210526 + }, + { + "x": 456.1282367447596, + "y": 383.83223684210526 + }, + { + "x": 456.1282367447596, + "y": 420.6743581671464 + }, + { + "x": 421.40567200986436, + "y": 420.6743581671464 + } + ] + }, + { + "id": "fawzi9uwm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 31.56596794081381, + "left": 388.78752119297167, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 388.78752119297167, + "y": 378.5691110711349 + }, + { + "x": 420.35348913378544, + "y": 378.5691110711349 + }, + { + "x": 420.35348913378544, + "y": 430.1480423776727 + }, + { + "x": 388.78752119297167, + "y": 430.1480423776727 + } + ] + } + ], + "version": "2.2.0" + }, + "6dde587b44136944b8c4a76e826914fb": { + "asset": { + "id": "6dde587b44136944b8c4a76e826914fb", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=40.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=40.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 40.4 + }, + "regions": [ + { + "id": "sv9_QuUmA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 24.20063964241677, + "left": 967.4969173859433, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 967.4969173859433, + "y": 278.56909500925167 + }, + { + "x": 991.69755702836, + "y": 278.56909500925167 + }, + { + "x": 991.69755702836, + "y": 349.09539473684214 + }, + { + "x": 967.4969173859433, + "y": 349.09539473684214 + } + ] + }, + { + "id": "D0AXz9-Hy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 39.9835272811344, + "left": 862.2770884710235, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 309.09542686060854 + }, + { + "x": 902.2606157521578, + "y": 309.09542686060854 + }, + { + "x": 902.2606157521578, + "y": 365.93753212376646 + }, + { + "x": 862.2770884710235, + "y": 365.93753212376646 + } + ] + }, + { + "id": "8d-1NiElg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 36.82693048705302, + "left": 769.6835504007398, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 769.6835504007398, + "y": 315.41121633429276 + }, + { + "x": 806.5104808877928, + "y": 315.41121633429276 + }, + { + "x": 806.5104808877928, + "y": 376.46383185135693 + }, + { + "x": 769.6835504007398, + "y": 376.46383185135693 + } + ] + }, + { + "id": "SCi6leUd4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 32.61819898273736, + "left": 689.7163995067817, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 689.7163995067817, + "y": 325.93751606188323 + }, + { + "x": 722.3345984895191, + "y": 325.93751606188323 + }, + { + "x": 722.3345984895191, + "y": 382.77962132504115 + }, + { + "x": 689.7163995067817, + "y": 382.77962132504115 + } + ] + }, + { + "id": "qKwEFPllR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 39.9835272811344, + "left": 561.3481619913687, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 354.3585686934622 + }, + { + "x": 601.3316892725031, + "y": 354.3585686934622 + }, + { + "x": 601.3316892725031, + "y": 420.6743581671464 + }, + { + "x": 561.3481619913687, + "y": 420.6743581671464 + } + ] + }, + { + "id": "QD3eGsh0-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68424265008224, + "width": 42.0879893649815, + "left": 513.9992100801479, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 513.9992100801479, + "y": 342.7796052631579 + }, + { + "x": 556.0871994451295, + "y": 342.7796052631579 + }, + { + "x": 556.0871994451295, + "y": 416.46384791324016 + }, + { + "x": 513.9992100801479, + "y": 416.46384791324016 + } + ] + }, + { + "id": "RNMSCMvOl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 30.513736898890258, + "left": 419.3013062577065, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 419.3013062577065, + "y": 378.5691110711349 + }, + { + "x": 449.8150431565968, + "y": 378.5691110711349 + }, + { + "x": 449.8150431565968, + "y": 424.88486842105266 + }, + { + "x": 419.3013062577065, + "y": 424.88486842105266 + } + ] + } + ], + "version": "2.2.0" + }, + "c822beaa1dadc4da37f56f57db5e29a4": { + "asset": { + "id": "c822beaa1dadc4da37f56f57db5e29a4", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=40.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=40.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 40.25 + }, + "regions": [ + { + "id": "s0OTzh1kn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 29.46160218865598, + "left": 965.3925516337855, + "top": 293.305953176398 + }, + "points": [ + { + "x": 965.3925516337855, + "y": 293.305953176398 + }, + { + "x": 994.8541538224414, + "y": 293.305953176398 + }, + { + "x": 994.8541538224414, + "y": 343.8322689658717 + }, + { + "x": 965.3925516337855, + "y": 343.8322689658717 + } + ] + }, + { + "id": "ZQwI0p22v", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 38.93139257090012, + "left": 870.694647811344, + "top": 299.62174265008224 + }, + "points": [ + { + "x": 870.694647811344, + "y": 299.62174265008224 + }, + { + "x": 909.6260403822441, + "y": 299.62174265008224 + }, + { + "x": 909.6260403822441, + "y": 355.4111842105263 + }, + { + "x": 870.694647811344, + "y": 355.4111842105263 + } + ] + }, + { + "id": "s8YsX6Odv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 35.77479577681874, + "left": 766.5269536066585, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 766.5269536066585, + "y": 309.09542686060854 + }, + { + "x": 802.3017493834772, + "y": 309.09542686060854 + }, + { + "x": 802.3017493834772, + "y": 369.09542686060854 + }, + { + "x": 766.5269536066585, + "y": 369.09542686060854 + } + ] + }, + { + "id": "z6WcJAbkO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 21.043946516646116, + "left": 697.081824136868, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 697.081824136868, + "y": 324.88490054481906 + }, + { + "x": 718.1257706535142, + "y": 324.88490054481906 + }, + { + "x": 718.1257706535142, + "y": 373.3059371145148 + }, + { + "x": 697.081824136868, + "y": 373.3059371145148 + } + ] + }, + { + "id": "kAfWshmJL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 19.991715474722564, + "left": 575.0267802096178, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 575.0267802096178, + "y": 352.2532894736842 + }, + { + "x": 595.0184956843403, + "y": 352.2532894736842 + }, + { + "x": 595.0184956843403, + "y": 410.14805843955594 + }, + { + "x": 575.0267802096178, + "y": 410.14805843955594 + } + ] + }, + { + "id": "m6lsvi10Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 31.56596794081381, + "left": 518.2080379161529, + "top": 353.305953176398 + }, + "points": [ + { + "x": 518.2080379161529, + "y": 353.305953176398 + }, + { + "x": 549.7740058569667, + "y": 353.305953176398 + }, + { + "x": 549.7740058569667, + "y": 414.3585686934622 + }, + { + "x": 518.2080379161529, + "y": 414.3585686934622 + } + ] + }, + { + "id": "A01PU3H8k", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 38.93134440505549, + "left": 419.3013062577065, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 419.3013062577065, + "y": 373.3059371145148 + }, + { + "x": 458.232650662762, + "y": 373.3059371145148 + }, + { + "x": 458.232650662762, + "y": 416.46384791324016 + }, + { + "x": 419.3013062577065, + "y": 416.46384791324016 + } + ] + }, + { + "id": "_d3jSYibh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 24.200591476572132, + "left": 385.6309243988903, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 385.6309243988903, + "y": 375.41121633429276 + }, + { + "x": 409.8315158754624, + "y": 375.41121633429276 + }, + { + "x": 409.8315158754624, + "y": 425.93753212376646 + }, + { + "x": 385.6309243988903, + "y": 425.93753212376646 + } + ] + } + ], + "version": "2.2.0" + }, + "4a7a988ea6e317b190ddda3699f770c8": { + "asset": { + "id": "4a7a988ea6e317b190ddda3699f770c8", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=40.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=40.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 40.1 + }, + "regions": [ + { + "id": "4t1Ld-Xo_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 13.678618218249076, + "left": 392.9963008631319, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 392.9963008631319, + "y": 372.2533215974507 + }, + { + "x": 406.674919081381, + "y": 372.2533215974507 + }, + { + "x": 406.674919081381, + "y": 416.46384791324016 + }, + { + "x": 392.9963008631319, + "y": 416.46384791324016 + } + ] + }, + { + "id": "WGEeR0bsm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 21.043946516646116, + "left": 422.4579030517879, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 422.4579030517879, + "y": 384.88490054481906 + }, + { + "x": 443.501849568434, + "y": 384.88490054481906 + }, + { + "x": 443.501849568434, + "y": 433.3059371145148 + }, + { + "x": 422.4579030517879, + "y": 433.3059371145148 + } + ] + }, + { + "id": "daKUNPNyo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 32.61819898273736, + "left": 974.8623420160296, + "top": 294.3585686934622 + }, + "points": [ + { + "x": 974.8623420160296, + "y": 294.3585686934622 + }, + { + "x": 1007.480540998767, + "y": 294.3585686934622 + }, + { + "x": 1007.480540998767, + "y": 346.9901637027138 + }, + { + "x": 974.8623420160296, + "y": 346.9901637027138 + } + ] + }, + { + "id": "sWgkg-fp9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 53.66214549938348, + "left": 861.2248574290999, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 861.2248574290999, + "y": 300.6743581671464 + }, + { + "x": 914.8870029284834, + "y": 300.6743581671464 + }, + { + "x": 914.8870029284834, + "y": 358.56907894736844 + }, + { + "x": 861.2248574290999, + "y": 358.56907894736844 + } + ] + }, + { + "id": "ddaJ8zyiJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 31.56596794081381, + "left": 773.8923782367448, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 773.8923782367448, + "y": 317.51644736842104 + }, + { + "x": 805.4583461775586, + "y": 317.51644736842104 + }, + { + "x": 805.4583461775586, + "y": 369.09542686060854 + }, + { + "x": 773.8923782367448, + "y": 369.09542686060854 + } + ] + }, + { + "id": "PHDMzF3nU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 23.148312268803945, + "left": 694.9774583847102, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 694.9774583847102, + "y": 329.0954107987253 + }, + { + "x": 718.1257706535142, + "y": 329.0954107987253 + }, + { + "x": 718.1257706535142, + "y": 366.99014764083057 + }, + { + "x": 694.9774583847102, + "y": 366.99014764083057 + } + ] + }, + { + "id": "7zzyTeRmt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 37.879161528976574, + "left": 564.5047587854501, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 354.3585686934622 + }, + { + "x": 602.3839203144266, + "y": 354.3585686934622 + }, + { + "x": 602.3839203144266, + "y": 413.305953176398 + }, + { + "x": 564.5047587854501, + "y": 413.305953176398 + } + ] + }, + { + "id": "3GZq_3_U_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 27.35723643649815, + "left": 522.4167694204685, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 522.4167694204685, + "y": 340.67437422902964 + }, + { + "x": 549.7740058569667, + "y": 340.67437422902964 + }, + { + "x": 549.7740058569667, + "y": 392.25330553556745 + }, + { + "x": 522.4167694204685, + "y": 392.25330553556745 + } + ] + } + ], + "version": "2.2.0" + }, + "51779f4b7031bc97dd610d861c3b1c61": { + "asset": { + "id": "51779f4b7031bc97dd610d861c3b1c61", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.95 + }, + "regions": [ + { + "id": "xiBYDahlh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 32.61810265104809, + "left": 972.7579762638718, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 972.7579762638718, + "y": 292.2532894736842 + }, + { + "x": 1005.3760789149198, + "y": 292.2532894736842 + }, + { + "x": 1005.3760789149198, + "y": 348.04277921977797 + }, + { + "x": 972.7579762638718, + "y": 348.04277921977797 + } + ] + }, + { + "id": "W814vpNMt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 24.20063964241677, + "left": 879.1122071516646, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 879.1122071516646, + "y": 310.1480423776727 + }, + { + "x": 903.3128467940813, + "y": 310.1480423776727 + }, + { + "x": 903.3128467940813, + "y": 365.93753212376646 + }, + { + "x": 879.1122071516646, + "y": 365.93753212376646 + } + ] + }, + { + "id": "psfR6FxjC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 32.61819898273736, + "left": 775.9967439889026, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 775.9967439889026, + "y": 318.5691110711349 + }, + { + "x": 808.61494297164, + "y": 318.5691110711349 + }, + { + "x": 808.61494297164, + "y": 370.1480423776727 + }, + { + "x": 775.9967439889026, + "y": 370.1480423776727 + } + ] + }, + { + "id": "AV3XzWZ_Q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 21.043946516646116, + "left": 691.8208615906289, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 691.8208615906289, + "y": 335.41120027240953 + }, + { + "x": 712.8648081072749, + "y": 335.41120027240953 + }, + { + "x": 712.8648081072749, + "y": 378.5691110711349 + }, + { + "x": 691.8208615906289, + "y": 378.5691110711349 + } + ] + }, + { + "id": "jZrmitN1C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 30.513833230579532, + "left": 572.9223181257706, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 572.9223181257706, + "y": 354.3585686934622 + }, + { + "x": 603.4361513563501, + "y": 354.3585686934622 + }, + { + "x": 603.4361513563501, + "y": 411.20067395662005 + }, + { + "x": 572.9223181257706, + "y": 411.20067395662005 + } + ] + }, + { + "id": "Tjs1lK0fg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 30.513833230579532, + "left": 519.2601726263872, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 519.2601726263872, + "y": 359.62174265008224 + }, + { + "x": 549.7740058569667, + "y": 359.62174265008224 + }, + { + "x": 549.7740058569667, + "y": 409.09539473684214 + }, + { + "x": 519.2601726263872, + "y": 409.09539473684214 + } + ] + }, + { + "id": "YFp-vl7i5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 17.88739788840937, + "left": 420.35348913378544, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 420.35348913378544, + "y": 376.46383185135693 + }, + { + "x": 438.24088702219484, + "y": 376.46383185135693 + }, + { + "x": 438.24088702219484, + "y": 410.14805843955594 + }, + { + "x": 420.35348913378544, + "y": 410.14805843955594 + } + ] + } + ], + "version": "2.2.0" + }, + "eaca407ac435b26323fe76f8b2a5b094": { + "asset": { + "id": "eaca407ac435b26323fe76f8b2a5b094", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.8 + }, + "regions": [ + { + "id": "hU5jYf8Jt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 31.56596794081381, + "left": 976.9667077681875, + "top": 301.7269736842105 + }, + "points": [ + { + "x": 976.9667077681875, + "y": 301.7269736842105 + }, + { + "x": 1008.5326757090013, + "y": 301.7269736842105 + }, + { + "x": 1008.5326757090013, + "y": 350.14805843955594 + }, + { + "x": 976.9667077681875, + "y": 350.14805843955594 + } + ] + }, + { + "id": "9pIe0Olhw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 35.77479577681874, + "left": 872.7990135635018, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 872.7990135635018, + "y": 315.41121633429276 + }, + { + "x": 908.5738093403206, + "y": 315.41121633429276 + }, + { + "x": 908.5738093403206, + "y": 370.1480423776727 + }, + { + "x": 872.7990135635018, + "y": 370.1480423776727 + } + ] + }, + { + "id": "6OpW9hXD3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 25.25277435265105, + "left": 781.2577065351418, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 781.2577065351418, + "y": 328.0427952816612 + }, + { + "x": 806.5104808877928, + "y": 328.0427952816612 + }, + { + "x": 806.5104808877928, + "y": 370.1480423776727 + }, + { + "x": 781.2577065351418, + "y": 370.1480423776727 + } + ] + }, + { + "id": "F-xU8qK99", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 25.25277435265105, + "left": 699.1861898890259, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 699.1861898890259, + "y": 334.3585847553454 + }, + { + "x": 724.4389642416769, + "y": 334.3585847553454 + }, + { + "x": 724.4389642416769, + "y": 381.727005807977 + }, + { + "x": 699.1861898890259, + "y": 381.727005807977 + } + ] + }, + { + "id": "-M4dSuKWM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 26.304909062885326, + "left": 575.0267802096178, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 575.0267802096178, + "y": 355.4111842105263 + }, + { + "x": 601.3316892725031, + "y": 355.4111842105263 + }, + { + "x": 601.3316892725031, + "y": 409.09539473684214 + }, + { + "x": 575.0267802096178, + "y": 409.09539473684214 + } + ] + }, + { + "id": "tW4gEopA9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 28.40937114673243, + "left": 525.57336621455, + "top": 353.305953176398 + }, + "points": [ + { + "x": 525.57336621455, + "y": 353.305953176398 + }, + { + "x": 553.9827373612824, + "y": 353.305953176398 + }, + { + "x": 553.9827373612824, + "y": 404.8848844829359 + }, + { + "x": 525.57336621455, + "y": 404.8848844829359 + } + ] + }, + { + "id": "PNkytCOWJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 32.61819898273736, + "left": 411.93588162762023, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 411.93588162762023, + "y": 378.5691110711349 + }, + { + "x": 444.5540806103576, + "y": 378.5691110711349 + }, + { + "x": 444.5540806103576, + "y": 413.305953176398 + }, + { + "x": 411.93588162762023, + "y": 413.305953176398 + } + ] + }, + { + "id": "IdEyrL7Kj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 23.148360434648584, + "left": 382.4743276048089, + "top": 382.77962132504115 + }, + "points": [ + { + "x": 382.4743276048089, + "y": 382.77962132504115 + }, + { + "x": 405.62268803945744, + "y": 382.77962132504115 + }, + { + "x": 405.62268803945744, + "y": 412.2532894736842 + }, + { + "x": 382.4743276048089, + "y": 412.2532894736842 + } + ] + } + ], + "version": "2.2.0" + }, + "34731423a110ce528e48705aec4e9706": { + "asset": { + "id": "34731423a110ce528e48705aec4e9706", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.65 + }, + "regions": [ + { + "id": "nBwGmJyag", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 39.98362361282368, + "left": 976.9667077681875, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 976.9667077681875, + "y": 303.8322529039885 + }, + { + "x": 1016.9503313810111, + "y": 303.8322529039885 + }, + { + "x": 1016.9503313810111, + "y": 354.3585686934622 + }, + { + "x": 976.9667077681875, + "y": 354.3585686934622 + } + ] + }, + { + "id": "dRj1ZN_jP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 23.148312268803945, + "left": 881.2166692355117, + "top": 319.621726588199 + }, + "points": [ + { + "x": 881.2166692355117, + "y": 319.621726588199 + }, + { + "x": 904.3649815043157, + "y": 319.621726588199 + }, + { + "x": 904.3649815043157, + "y": 366.99014764083057 + }, + { + "x": 881.2166692355117, + "y": 366.99014764083057 + } + ] + }, + { + "id": "yk_DyVn_s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 42.08789303329223, + "left": 773.8923782367448, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 773.8923782367448, + "y": 324.88490054481906 + }, + { + "x": 815.980271270037, + "y": 324.88490054481906 + }, + { + "x": 815.980271270037, + "y": 377.51644736842104 + }, + { + "x": 773.8923782367448, + "y": 377.51644736842104 + } + ] + }, + { + "id": "1frUG8LBR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 26.3050053945746, + "left": 692.8729963008632, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 692.8729963008632, + "y": 335.41120027240953 + }, + { + "x": 719.1780016954377, + "y": 335.41120027240953 + }, + { + "x": 719.1780016954377, + "y": 384.88490054481906 + }, + { + "x": 692.8729963008632, + "y": 384.88490054481906 + } + ] + }, + { + "id": "9VEgo0aYI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 32.61810265104809, + "left": 568.713586621455, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 568.713586621455, + "y": 352.2532894736842 + }, + { + "x": 601.3316892725031, + "y": 352.2532894736842 + }, + { + "x": 601.3316892725031, + "y": 415.4111842105263 + }, + { + "x": 568.713586621455, + "y": 415.4111842105263 + } + ] + }, + { + "id": "3SsfwjW_0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 34.722564734895194, + "left": 520.3124036683107, + "top": 345.9375 + }, + "points": [ + { + "x": 520.3124036683107, + "y": 345.9375 + }, + { + "x": 555.0349684032059, + "y": 345.9375 + }, + { + "x": 555.0349684032059, + "y": 412.2532894736842 + }, + { + "x": 520.3124036683107, + "y": 412.2532894736842 + } + ] + }, + { + "id": "rBPCOy5b5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 29.461554022811345, + "left": 414.0402955456227, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 414.0402955456227, + "y": 384.88490054481906 + }, + { + "x": 443.501849568434, + "y": 384.88490054481906 + }, + { + "x": 443.501849568434, + "y": 426.99014764083057 + }, + { + "x": 414.0402955456227, + "y": 426.99014764083057 + } + ] + }, + { + "id": "TX2lJZ04t", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 26.304957228729965, + "left": 376.16113401664614, + "top": 369.09542686060854 + }, + "points": [ + { + "x": 376.16113401664614, + "y": 369.09542686060854 + }, + { + "x": 402.4660912453761, + "y": 369.09542686060854 + }, + { + "x": 402.4660912453761, + "y": 423.8322529039885 + }, + { + "x": 376.16113401664614, + "y": 423.8322529039885 + } + ] + } + ], + "version": "2.2.0" + }, + "382c1f90d8a918102880cebbb560adbb": { + "asset": { + "id": "382c1f90d8a918102880cebbb560adbb", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.5 + }, + "regions": [ + { + "id": "FNVZXUEK0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 38.93129623921085, + "left": 972.7579762638718, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 972.7579762638718, + "y": 306.99014764083057 + }, + { + "x": 1011.6892725030826, + "y": 306.99014764083057 + }, + { + "x": 1011.6892725030826, + "y": 353.305953176398 + }, + { + "x": 972.7579762638718, + "y": 353.305953176398 + } + ] + }, + { + "id": "k6RGXLrOa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 37.879161528976574, + "left": 875.9556103575833, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 875.9556103575833, + "y": 310.1480423776727 + }, + { + "x": 913.8347718865598, + "y": 310.1480423776727 + }, + { + "x": 913.8347718865598, + "y": 368.04276315789474 + }, + { + "x": 875.9556103575833, + "y": 368.04276315789474 + } + ] + }, + { + "id": "gix_N373Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 34.722564734895194, + "left": 775.9967439889026, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 775.9967439889026, + "y": 323.83223684210526 + }, + { + "x": 810.7193087237978, + "y": 323.83223684210526 + }, + { + "x": 810.7193087237978, + "y": 382.77962132504115 + }, + { + "x": 775.9967439889026, + "y": 382.77962132504115 + } + ] + }, + { + "id": "jqGIfxajF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 29.46160218865598, + "left": 692.8729963008632, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 692.8729963008632, + "y": 335.41120027240953 + }, + { + "x": 722.3345984895191, + "y": 335.41120027240953 + }, + { + "x": 722.3345984895191, + "y": 385.93751606188323 + }, + { + "x": 692.8729963008632, + "y": 385.93751606188323 + } + ] + }, + { + "id": "thlQoJHNO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 33.67043002466091, + "left": 566.609124537608, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 566.609124537608, + "y": 356.46384791324016 + }, + { + "x": 600.2795545622688, + "y": 356.46384791324016 + }, + { + "x": 600.2795545622688, + "y": 411.20067395662005 + }, + { + "x": 566.609124537608, + "y": 411.20067395662005 + } + ] + }, + { + "id": "MTxJ-Mqla", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 31.56596794081381, + "left": 517.1558068742294, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 517.1558068742294, + "y": 351.20067395662005 + }, + { + "x": 548.7217748150432, + "y": 351.20067395662005 + }, + { + "x": 548.7217748150432, + "y": 410.14805843955594 + }, + { + "x": 517.1558068742294, + "y": 410.14805843955594 + } + ] + }, + { + "id": "e-5AznOTG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 25.25277435265105, + "left": 409.8315158754624, + "top": 383.83223684210526 + }, + "points": [ + { + "x": 409.8315158754624, + "y": 383.83223684210526 + }, + { + "x": 435.08429022811345, + "y": 383.83223684210526 + }, + { + "x": 435.08429022811345, + "y": 423.8322529039885 + }, + { + "x": 409.8315158754624, + "y": 423.8322529039885 + } + ] + }, + { + "id": "MbcZHKFj8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 30.513736898890258, + "left": 371.95235434648583, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 371.95235434648583, + "y": 392.25330553556745 + }, + { + "x": 402.4660912453761, + "y": 392.25330553556745 + }, + { + "x": 402.4660912453761, + "y": 434.35855263157896 + }, + { + "x": 371.95235434648583, + "y": 434.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "584ab4f2842cd7f247b905537601df6c": { + "asset": { + "id": "584ab4f2842cd7f247b905537601df6c", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.35 + }, + "regions": [ + { + "id": "OmpYKP4On", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 24.200543310727497, + "left": 984.3321323982738, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 984.3321323982738, + "y": 305.93753212376646 + }, + { + "x": 1008.5326757090013, + "y": 305.93753212376646 + }, + { + "x": 1008.5326757090013, + "y": 359.62174265008224 + }, + { + "x": 984.3321323982738, + "y": 359.62174265008224 + } + ] + }, + { + "id": "BwF5edU7Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 52.60991445745993, + "left": 868.5902820591862, + "top": 319.621726588199 + }, + "points": [ + { + "x": 868.5902820591862, + "y": 319.621726588199 + }, + { + "x": 921.2001965166461, + "y": 319.621726588199 + }, + { + "x": 921.2001965166461, + "y": 365.93753212376646 + }, + { + "x": 868.5902820591862, + "y": 365.93753212376646 + } + ] + }, + { + "id": "sxecrtrzu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 42.0879893649815, + "left": 772.8401471948213, + "top": 319.621726588199 + }, + "points": [ + { + "x": 772.8401471948213, + "y": 319.621726588199 + }, + { + "x": 814.9281365598027, + "y": 319.621726588199 + }, + { + "x": 814.9281365598027, + "y": 373.3059371145148 + }, + { + "x": 772.8401471948213, + "y": 373.3059371145148 + } + ] + }, + { + "id": "zh8S3hfuS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 36.82693048705302, + "left": 679.1944744143034, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 679.1944744143034, + "y": 326.9901315789474 + }, + { + "x": 716.0214049013564, + "y": 326.9901315789474 + }, + { + "x": 716.0214049013564, + "y": 379.621726588199 + }, + { + "x": 679.1944744143034, + "y": 379.621726588199 + } + ] + }, + { + "id": "ftNoCLGco", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 49.45331766337855, + "left": 556.0871994451295, + "top": 345.9375 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 345.9375 + }, + { + "x": 605.540517108508, + "y": 345.9375 + }, + { + "x": 605.540517108508, + "y": 405.9375 + }, + { + "x": 556.0871994451295, + "y": 405.9375 + } + ] + }, + { + "id": "CDvf-VKCH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 35.77469944512947, + "left": 511.89484432799014, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 511.89484432799014, + "y": 340.67437422902964 + }, + { + "x": 547.6695437731196, + "y": 340.67437422902964 + }, + { + "x": 547.6695437731196, + "y": 391.2006900185033 + }, + { + "x": 511.89484432799014, + "y": 391.2006900185033 + } + ] + }, + { + "id": "j3dmNDgQp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 36.82697865289766, + "left": 401.4139083692972, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 401.4139083692972, + "y": 380.6743421052632 + }, + { + "x": 438.24088702219484, + "y": 380.6743421052632 + }, + { + "x": 438.24088702219484, + "y": 428.04276315789474 + }, + { + "x": 401.4139083692972, + "y": 428.04276315789474 + } + ] + }, + { + "id": "CwsUZGR1l", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 24.200543310727497, + "left": 365.63916075832304, + "top": 381.727005807977 + }, + "points": [ + { + "x": 365.63916075832304, + "y": 381.727005807977 + }, + { + "x": 389.8397040690506, + "y": 381.727005807977 + }, + { + "x": 389.8397040690506, + "y": 419.62174265008224 + }, + { + "x": 365.63916075832304, + "y": 419.62174265008224 + } + ] + } + ], + "version": "2.2.0" + }, + "7068bee7040e5598edb443de6b13bedc": { + "asset": { + "id": "7068bee7040e5598edb443de6b13bedc", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.2 + }, + "regions": [ + { + "id": "HUVdsYuYT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 30.513736898890258, + "left": 984.3321323982738, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 984.3321323982738, + "y": 312.2533215974507 + }, + { + "x": 1014.845869297164, + "y": 312.2533215974507 + }, + { + "x": 1014.845869297164, + "y": 352.2532894736842 + }, + { + "x": 984.3321323982738, + "y": 352.2532894736842 + } + ] + }, + { + "id": "3ju5A5OVY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 34.722564734895194, + "left": 872.7990135635018, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 872.7990135635018, + "y": 312.2533215974507 + }, + { + "x": 907.521578298397, + "y": 312.2533215974507 + }, + { + "x": 907.521578298397, + "y": 370.1480423776727 + }, + { + "x": 872.7990135635018, + "y": 370.1480423776727 + } + ] + }, + { + "id": "orHfwiEux", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 32.61819898273736, + "left": 771.7879161528977, + "top": 319.621726588199 + }, + "points": [ + { + "x": 771.7879161528977, + "y": 319.621726588199 + }, + { + "x": 804.406115135635, + "y": 319.621726588199 + }, + { + "x": 804.406115135635, + "y": 371.2006578947368 + }, + { + "x": 771.7879161528977, + "y": 371.2006578947368 + } + ] + }, + { + "id": "8wVbX6Oe6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 27.35723643649815, + "left": 686.5598027127004, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 686.5598027127004, + "y": 329.0954107987253 + }, + { + "x": 713.9170391491986, + "y": 329.0954107987253 + }, + { + "x": 713.9170391491986, + "y": 380.6743421052632 + }, + { + "x": 686.5598027127004, + "y": 380.6743421052632 + } + ] + }, + { + "id": "u1H3IDOk_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 41.035758323057955, + "left": 558.1915651972873, + "top": 345.9375 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 345.9375 + }, + { + "x": 599.2273235203453, + "y": 345.9375 + }, + { + "x": 599.2273235203453, + "y": 412.2532894736842 + }, + { + "x": 558.1915651972873, + "y": 412.2532894736842 + } + ] + }, + { + "id": "OFpcFFt70", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 43.14022040690506, + "left": 506.6337854500617, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 343.8322689658717 + }, + { + "x": 549.7740058569667, + "y": 343.8322689658717 + }, + { + "x": 549.7740058569667, + "y": 408.04277921977797 + }, + { + "x": 506.6337854500617, + "y": 408.04277921977797 + } + ] + }, + { + "id": "kAdXy_qbS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 37.879161528976574, + "left": 402.4660912453761, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 402.4660912453761, + "y": 362.7796373869243 + }, + { + "x": 440.3452527743527, + "y": 362.7796373869243 + }, + { + "x": 440.3452527743527, + "y": 408.04277921977797 + }, + { + "x": 402.4660912453761, + "y": 408.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "dc87c5dc63f2a2e63bdcd1475cbcfd4d": { + "asset": { + "id": "dc87c5dc63f2a2e63bdcd1475cbcfd4d", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=39.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=39.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 39.05 + }, + "regions": [ + { + "id": "eJ1kXdb0N", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 27.35723643649815, + "left": 980.1233045622688, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 980.1233045622688, + "y": 310.1480423776727 + }, + { + "x": 1007.480540998767, + "y": 310.1480423776727 + }, + { + "x": 1007.480540998767, + "y": 358.56907894736844 + }, + { + "x": 980.1233045622688, + "y": 358.56907894736844 + } + ] + }, + { + "id": "UUkZtK44X", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 44.192355117139336, + "left": 869.6424167694205, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 869.6424167694205, + "y": 309.09542686060854 + }, + { + "x": 913.8347718865598, + "y": 309.09542686060854 + }, + { + "x": 913.8347718865598, + "y": 363.8322529039885 + }, + { + "x": 869.6424167694205, + "y": 363.8322529039885 + } + ] + }, + { + "id": "agghw5wsF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 26.3050053945746, + "left": 775.9967439889026, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 775.9967439889026, + "y": 311.2006578947368 + }, + { + "x": 802.3017493834772, + "y": 311.2006578947368 + }, + { + "x": 802.3017493834772, + "y": 372.2533215974507 + }, + { + "x": 775.9967439889026, + "y": 372.2533215974507 + } + ] + }, + { + "id": "gOXx6jyik", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 38.93139257090012, + "left": 683.403205918619, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 683.403205918619, + "y": 333.30592105263156 + }, + { + "x": 722.3345984895191, + "y": 333.30592105263156 + }, + { + "x": 722.3345984895191, + "y": 372.2533215974507 + }, + { + "x": 683.403205918619, + "y": 372.2533215974507 + } + ] + }, + { + "id": "IcCnQ2LwR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 25.25277435265105, + "left": 563.4525277435265, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 343.8322689658717 + }, + { + "x": 588.7053020961775, + "y": 343.8322689658717 + }, + { + "x": 588.7053020961775, + "y": 399.6217105263158 + }, + { + "x": 563.4525277435265, + "y": 399.6217105263158 + } + ] + }, + { + "id": "B8_rog1-e", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 30.513736898890258, + "left": 513.9992100801479, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 513.9992100801479, + "y": 340.67437422902964 + }, + { + "x": 544.5129469790382, + "y": 340.67437422902964 + }, + { + "x": 544.5129469790382, + "y": 389.0954107987253 + }, + { + "x": 513.9992100801479, + "y": 389.0954107987253 + } + ] + }, + { + "id": "qHNfJKOWr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 42.08794119913687, + "left": 394.0485319050555, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 394.0485319050555, + "y": 370.1480423776727 + }, + { + "x": 436.13647310419236, + "y": 370.1480423776727 + }, + { + "x": 436.13647310419236, + "y": 432.2533215974507 + }, + { + "x": 394.0485319050555, + "y": 432.2533215974507 + } + ] + }, + { + "id": "36seflj7_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 26.304957228729965, + "left": 360.3781500462392, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 360.3781500462392, + "y": 378.5691110711349 + }, + { + "x": 386.6831072749692, + "y": 378.5691110711349 + }, + { + "x": 386.6831072749692, + "y": 419.62174265008224 + }, + { + "x": 360.3781500462392, + "y": 419.62174265008224 + } + ] + } + ], + "version": "2.2.0" + }, + "98959feecd8566cb9f270bcf9ccf0d39": { + "asset": { + "id": "98959feecd8566cb9f270bcf9ccf0d39", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.9 + }, + "regions": [ + { + "id": "nLm_M97Gv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 22.096177558569668, + "left": 354.06495645807644, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 354.06495645807644, + "y": 372.2533215974507 + }, + { + "x": 376.16113401664614, + "y": 372.2533215974507 + }, + { + "x": 376.16113401664614, + "y": 413.305953176398 + }, + { + "x": 354.06495645807644, + "y": 413.305953176398 + } + ] + }, + { + "id": "NW2EJW7JS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 33.67033369297164, + "left": 397.2051286991369, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 397.2051286991369, + "y": 375.41121633429276 + }, + { + "x": 430.8754623921085, + "y": 375.41121633429276 + }, + { + "x": 430.8754623921085, + "y": 406.9901637027138 + }, + { + "x": 397.2051286991369, + "y": 406.9901637027138 + } + ] + }, + { + "id": "VjlMn1nMv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 26.3050053945746, + "left": 512.9469790382244, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 512.9469790382244, + "y": 342.7796052631579 + }, + { + "x": 539.2519844327991, + "y": 342.7796052631579 + }, + { + "x": 539.2519844327991, + "y": 393.30592105263156 + }, + { + "x": 512.9469790382244, + "y": 393.30592105263156 + } + ] + }, + { + "id": "BjG8KgIJn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 26.3050053945746, + "left": 990.6453259864365, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 990.6453259864365, + "y": 309.09542686060854 + }, + { + "x": 1016.9503313810111, + "y": 309.09542686060854 + }, + { + "x": 1016.9503313810111, + "y": 354.3585686934622 + }, + { + "x": 990.6453259864365, + "y": 354.3585686934622 + } + ] + }, + { + "id": "SUkHeHbBI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 26.304909062885326, + "left": 881.2166692355117, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 881.2166692355117, + "y": 313.3059371145148 + }, + { + "x": 907.521578298397, + "y": 313.3059371145148 + }, + { + "x": 907.521578298397, + "y": 360.6743581671464 + }, + { + "x": 881.2166692355117, + "y": 360.6743581671464 + } + ] + }, + { + "id": "6Ai939Z48", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 28.40937114673243, + "left": 773.8923782367448, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 773.8923782367448, + "y": 310.1480423776727 + }, + { + "x": 802.3017493834772, + "y": 310.1480423776727 + }, + { + "x": 802.3017493834772, + "y": 361.7269736842105 + }, + { + "x": 773.8923782367448, + "y": 361.7269736842105 + } + ] + }, + { + "id": "0kg17n8iR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 36.82693048705302, + "left": 679.1944744143034, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 679.1944744143034, + "y": 330.1480263157895 + }, + { + "x": 716.0214049013564, + "y": 330.1480263157895 + }, + { + "x": 716.0214049013564, + "y": 371.2006578947368 + }, + { + "x": 679.1944744143034, + "y": 371.2006578947368 + } + ] + }, + { + "id": "YmW4UxsDY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 45.24448982737361, + "left": 556.0871994451295, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 343.8322689658717 + }, + { + "x": 601.3316892725031, + "y": 343.8322689658717 + }, + { + "x": 601.3316892725031, + "y": 394.3585847553454 + }, + { + "x": 556.0871994451295, + "y": 394.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "dc7a13f2f561c9b4179eec628b12e103": { + "asset": { + "id": "dc7a13f2f561c9b4179eec628b12e103", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.75 + }, + "regions": [ + { + "id": "6TB4q9_OA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 46.29672086929717, + "left": 988.5409602342787, + "top": 302.7796373869243 + }, + "points": [ + { + "x": 988.5409602342787, + "y": 302.7796373869243 + }, + { + "x": 1034.8376811035757, + "y": 302.7796373869243 + }, + { + "x": 1034.8376811035757, + "y": 354.3585686934622 + }, + { + "x": 988.5409602342787, + "y": 354.3585686934622 + } + ] + }, + { + "id": "Q19HdG2Go", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 47.348951911220716, + "left": 872.7990135635018, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 872.7990135635018, + "y": 303.8322529039885 + }, + { + "x": 920.1479654747226, + "y": 303.8322529039885 + }, + { + "x": 920.1479654747226, + "y": 370.1480423776727 + }, + { + "x": 872.7990135635018, + "y": 370.1480423776727 + } + ] + }, + { + "id": "jyBNaJu3T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 27.35723643649815, + "left": 781.2577065351418, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 781.2577065351418, + "y": 316.46383185135693 + }, + { + "x": 808.61494297164, + "y": 316.46383185135693 + }, + { + "x": 808.61494297164, + "y": 375.41121633429276 + }, + { + "x": 781.2577065351418, + "y": 375.41121633429276 + } + ] + }, + { + "id": "HK4HB-Jhm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 22.096177558569668, + "left": 688.6642647965475, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 688.6642647965475, + "y": 334.3585847553454 + }, + { + "x": 710.7604423551171, + "y": 334.3585847553454 + }, + { + "x": 710.7604423551171, + "y": 372.2533215974507 + }, + { + "x": 688.6642647965475, + "y": 372.2533215974507 + } + ] + }, + { + "id": "SQKrTym8U", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 27.357140104808877, + "left": 564.5047587854501, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 342.7796052631579 + }, + { + "x": 591.861898890259, + "y": 342.7796052631579 + }, + { + "x": 591.861898890259, + "y": 388.0427952816612 + }, + { + "x": 564.5047587854501, + "y": 388.0427952816612 + } + ] + }, + { + "id": "dyCwxoGK1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 28.40937114673243, + "left": 517.1558068742294, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 517.1558068742294, + "y": 338.56909500925167 + }, + { + "x": 545.5651780209618, + "y": 338.56909500925167 + }, + { + "x": 545.5651780209618, + "y": 390.1480263157895 + }, + { + "x": 517.1558068742294, + "y": 390.1480263157895 + } + ] + }, + { + "id": "xPxb2SVAT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 16.83516684648582, + "left": 359.3259671701603, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 359.3259671701603, + "y": 368.04276315789474 + }, + { + "x": 376.16113401664614, + "y": 368.04276315789474 + }, + { + "x": 376.16113401664614, + "y": 398.56909500925167 + }, + { + "x": 359.3259671701603, + "y": 398.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "92e65681b6908fb08885f0edb5fc0c44": { + "asset": { + "id": "92e65681b6908fb08885f0edb5fc0c44", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.6 + }, + "regions": [ + { + "id": "2l3Sl3evW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 18.939580764488287, + "left": 999.062885326757, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 999.062885326757, + "y": 300.6743581671464 + }, + { + "x": 1018.0024660912454, + "y": 300.6743581671464 + }, + { + "x": 1018.0024660912454, + "y": 348.04277921977797 + }, + { + "x": 999.062885326757, + "y": 348.04277921977797 + } + ] + }, + { + "id": "BlcuirHmn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 38.93129623921085, + "left": 878.0600724414303, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 878.0600724414303, + "y": 315.41121633429276 + }, + { + "x": 916.9913686806412, + "y": 315.41121633429276 + }, + { + "x": 916.9913686806412, + "y": 365.93753212376646 + }, + { + "x": 878.0600724414303, + "y": 365.93753212376646 + } + ] + }, + { + "id": "kIGXWOgoT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 39.9835272811344, + "left": 777.0489750308261, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 777.0489750308261, + "y": 315.41121633429276 + }, + { + "x": 817.0325023119606, + "y": 315.41121633429276 + }, + { + "x": 817.0325023119606, + "y": 368.04276315789474 + }, + { + "x": 777.0489750308261, + "y": 368.04276315789474 + } + ] + }, + { + "id": "qWmS8P55K", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 27.357140104808877, + "left": 684.4554369605426, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 684.4554369605426, + "y": 337.5164794921875 + }, + { + "x": 711.8125770653514, + "y": 337.5164794921875 + }, + { + "x": 711.8125770653514, + "y": 359.62174265008224 + }, + { + "x": 684.4554369605426, + "y": 359.62174265008224 + } + ] + }, + { + "id": "glkZ7VSjQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 25.25277435265105, + "left": 567.6613555795315, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 335.41120027240953 + }, + { + "x": 592.9141299321825, + "y": 335.41120027240953 + }, + { + "x": 592.9141299321825, + "y": 388.0427952816612 + }, + { + "x": 567.6613555795315, + "y": 388.0427952816612 + } + ] + }, + { + "id": "g3uhid8cf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 30.513736898890258, + "left": 517.1558068742294, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 517.1558068742294, + "y": 334.3585847553454 + }, + { + "x": 547.6695437731196, + "y": 334.3585847553454 + }, + { + "x": 547.6695437731196, + "y": 379.621726588199 + }, + { + "x": 517.1558068742294, + "y": 379.621726588199 + } + ] + }, + { + "id": "L8q0ZI0tD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 26.3050053945746, + "left": 392.9963008631319, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 392.9963008631319, + "y": 357.51646343030427 + }, + { + "x": 419.3013062577065, + "y": 357.51646343030427 + }, + { + "x": 419.3013062577065, + "y": 405.9375 + }, + { + "x": 392.9963008631319, + "y": 405.9375 + } + ] + }, + { + "id": "3fcbQ4ZTQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 31.56596794081381, + "left": 349.8561767879162, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 349.8561767879162, + "y": 359.62174265008224 + }, + { + "x": 381.42214472872996, + "y": 359.62174265008224 + }, + { + "x": 381.42214472872996, + "y": 411.20067395662005 + }, + { + "x": 349.8561767879162, + "y": 411.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "492cb2976fe83570aa122809d84eef35": { + "asset": { + "id": "492cb2976fe83570aa122809d84eef35", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.55 + }, + "regions": [ + { + "id": "NxWR2fp29", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 41.035758323057955, + "left": 990.6453259864365, + "top": 308.04276315789474 + }, + "points": [ + { + "x": 990.6453259864365, + "y": 308.04276315789474 + }, + { + "x": 1031.6810843094945, + "y": 308.04276315789474 + }, + { + "x": 1031.6810843094945, + "y": 356.46384791324016 + }, + { + "x": 990.6453259864365, + "y": 356.46384791324016 + } + ] + }, + { + "id": "jpeYeqM8b", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 51.557779747225645, + "left": 870.694647811344, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 870.694647811344, + "y": 309.09542686060854 + }, + { + "x": 922.2524275585697, + "y": 309.09542686060854 + }, + { + "x": 922.2524275585697, + "y": 362.7796373869243 + }, + { + "x": 870.694647811344, + "y": 362.7796373869243 + } + ] + }, + { + "id": "jYQ5h_AuK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 37.879161528976574, + "left": 773.8923782367448, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 773.8923782367448, + "y": 315.41121633429276 + }, + { + "x": 811.7715397657213, + "y": 315.41121633429276 + }, + { + "x": 811.7715397657213, + "y": 361.7269736842105 + }, + { + "x": 773.8923782367448, + "y": 361.7269736842105 + } + ] + }, + { + "id": "sVfca6umh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 18.939580764488287, + "left": 687.6120337546239, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 687.6120337546239, + "y": 325.93751606188323 + }, + { + "x": 706.5516145191123, + "y": 325.93751606188323 + }, + { + "x": 706.5516145191123, + "y": 361.7269736842105 + }, + { + "x": 687.6120337546239, + "y": 361.7269736842105 + } + ] + }, + { + "id": "ZSSmpomzR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 39.9835272811344, + "left": 558.1915651972873, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 333.30592105263156 + }, + { + "x": 598.1750924784217, + "y": 333.30592105263156 + }, + { + "x": 598.1750924784217, + "y": 398.56909500925167 + }, + { + "x": 558.1915651972873, + "y": 398.56909500925167 + } + ] + }, + { + "id": "_YanWRPc-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 21.044042848335387, + "left": 519.2601726263872, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 519.2601726263872, + "y": 337.5164794921875 + }, + { + "x": 540.3042154747226, + "y": 337.5164794921875 + }, + { + "x": 540.3042154747226, + "y": 379.621726588199 + }, + { + "x": 519.2601726263872, + "y": 379.621726588199 + } + ] + }, + { + "id": "tpZqmb_-T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 37.879161528976574, + "left": 390.8919351109741, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 390.8919351109741, + "y": 360.6743581671464 + }, + { + "x": 428.77109663995066, + "y": 360.6743581671464 + }, + { + "x": 428.77109663995066, + "y": 409.09539473684214 + }, + { + "x": 390.8919351109741, + "y": 409.09539473684214 + } + ] + }, + { + "id": "vZORRHeNn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 29.461554022811345, + "left": 354.06495645807644, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 354.06495645807644, + "y": 357.51646343030427 + }, + { + "x": 383.5265104808878, + "y": 357.51646343030427 + }, + { + "x": 383.5265104808878, + "y": 411.20067395662005 + }, + { + "x": 354.06495645807644, + "y": 411.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "f44de1d1df69263e6e17a1154f8d8467": { + "asset": { + "id": "f44de1d1df69263e6e17a1154f8d8467", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.4 + }, + "regions": [ + { + "id": "Q3G-tEEtY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 30.513833230579532, + "left": 992.7496917385944, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 992.7496917385944, + "y": 312.2533215974507 + }, + { + "x": 1023.2635249691739, + "y": 312.2533215974507 + }, + { + "x": 1023.2635249691739, + "y": 361.7269736842105 + }, + { + "x": 992.7496917385944, + "y": 361.7269736842105 + } + ] + }, + { + "id": "GHOtiSBFT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 18.939580764488287, + "left": 888.5819975339087, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 888.5819975339087, + "y": 315.41121633429276 + }, + { + "x": 907.521578298397, + "y": 315.41121633429276 + }, + { + "x": 907.521578298397, + "y": 365.93753212376646 + }, + { + "x": 888.5819975339087, + "y": 365.93753212376646 + } + ] + }, + { + "id": "yYKmZgXGS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 31.56596794081381, + "left": 780.2055718249076, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 780.2055718249076, + "y": 306.99014764083057 + }, + { + "x": 811.7715397657213, + "y": 306.99014764083057 + }, + { + "x": 811.7715397657213, + "y": 369.09542686060854 + }, + { + "x": 780.2055718249076, + "y": 369.09542686060854 + } + ] + }, + { + "id": "du48BJFIt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 27.357140104808877, + "left": 687.6120337546239, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 687.6120337546239, + "y": 326.9901315789474 + }, + { + "x": 714.9691738594328, + "y": 326.9901315789474 + }, + { + "x": 714.9691738594328, + "y": 366.99014764083057 + }, + { + "x": 687.6120337546239, + "y": 366.99014764083057 + } + ] + }, + { + "id": "ibB0zVC3W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 26.3050053945746, + "left": 566.609124537608, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 566.609124537608, + "y": 333.30592105263156 + }, + { + "x": 592.9141299321825, + "y": 333.30592105263156 + }, + { + "x": 592.9141299321825, + "y": 395.41120027240953 + }, + { + "x": 566.609124537608, + "y": 395.41120027240953 + } + ] + }, + { + "id": "sl65imn4X", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 26.3050053945746, + "left": 512.9469790382244, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 512.9469790382244, + "y": 340.67437422902964 + }, + { + "x": 539.2519844327991, + "y": 340.67437422902964 + }, + { + "x": 539.2519844327991, + "y": 381.727005807977 + }, + { + "x": 512.9469790382244, + "y": 381.727005807977 + } + ] + }, + { + "id": "KXBsABYkN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473716334292764, + "width": 26.304957228729965, + "left": 388.78752119297167, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 388.78752119297167, + "y": 358.56907894736844 + }, + { + "x": 415.0924784217016, + "y": 358.56907894736844 + }, + { + "x": 415.0924784217016, + "y": 388.0427952816612 + }, + { + "x": 388.78752119297167, + "y": 388.0427952816612 + } + ] + }, + { + "id": "bDJVnUhBO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 27.357140104808877, + "left": 340.386386405672, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 340.386386405672, + "y": 358.56907894736844 + }, + { + "x": 367.7435265104809, + "y": 358.56907894736844 + }, + { + "x": 367.7435265104809, + "y": 391.2006900185033 + }, + { + "x": 340.386386405672, + "y": 391.2006900185033 + } + ] + } + ], + "version": "2.2.0" + }, + "92ef82b9b8eb0ff2a253a7873998a506": { + "asset": { + "id": "92ef82b9b8eb0ff2a253a7873998a506", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.25 + }, + "regions": [ + { + "id": "up7KLeS05", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 25.25277435265105, + "left": 344.5951660758323, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 344.5951660758323, + "y": 357.51646343030427 + }, + { + "x": 369.84794042848335, + "y": 357.51646343030427 + }, + { + "x": 369.84794042848335, + "y": 403.8322689658717 + }, + { + "x": 344.5951660758323, + "y": 403.8322689658717 + } + ] + }, + { + "id": "K0kI-xGKz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473716334292764, + "width": 26.304909062885326, + "left": 1001.1673474106042, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 1001.1673474106042, + "y": 320.6743421052632 + }, + { + "x": 1027.4722564734896, + "y": 320.6743421052632 + }, + { + "x": 1027.4722564734896, + "y": 350.14805843955594 + }, + { + "x": 1001.1673474106042, + "y": 350.14805843955594 + } + ] + }, + { + "id": "Eq5HqJNdz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 52.60991445745993, + "left": 878.0600724414303, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 878.0600724414303, + "y": 317.51644736842104 + }, + { + "x": 930.6699868988902, + "y": 317.51644736842104 + }, + { + "x": 930.6699868988902, + "y": 370.1480423776727 + }, + { + "x": 878.0600724414303, + "y": 370.1480423776727 + } + ] + }, + { + "id": "O8F5-5cyr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 32.61819898273736, + "left": 779.153340782984, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 779.153340782984, + "y": 311.2006578947368 + }, + { + "x": 811.7715397657213, + "y": 311.2006578947368 + }, + { + "x": 811.7715397657213, + "y": 373.3059371145148 + }, + { + "x": 779.153340782984, + "y": 373.3059371145148 + } + ] + }, + { + "id": "NA_syo9Z4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 24.200543310727497, + "left": 688.6642647965475, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 688.6642647965475, + "y": 328.0427952816612 + }, + { + "x": 712.8648081072749, + "y": 328.0427952816612 + }, + { + "x": 712.8648081072749, + "y": 369.09542686060854 + }, + { + "x": 688.6642647965475, + "y": 369.09542686060854 + } + ] + }, + { + "id": "PMQCAfkNw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 34.722564734895194, + "left": 566.609124537608, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 566.609124537608, + "y": 336.4638157894737 + }, + { + "x": 601.3316892725031, + "y": 336.4638157894737 + }, + { + "x": 601.3316892725031, + "y": 391.2006900185033 + }, + { + "x": 566.609124537608, + "y": 391.2006900185033 + } + ] + }, + { + "id": "7G5G9Wmg2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 39.98362361282368, + "left": 509.790382244143, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 509.790382244143, + "y": 328.0427952816612 + }, + { + "x": 549.7740058569667, + "y": 328.0427952816612 + }, + { + "x": 549.7740058569667, + "y": 392.25330553556745 + }, + { + "x": 509.790382244143, + "y": 392.25330553556745 + } + ] + }, + { + "id": "R5XYQdzeb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 19.9917636405672, + "left": 397.2051286991369, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 397.2051286991369, + "y": 350.14805843955594 + }, + { + "x": 417.19689233970405, + "y": 350.14805843955594 + }, + { + "x": 417.19689233970405, + "y": 404.8848844829359 + }, + { + "x": 397.2051286991369, + "y": 404.8848844829359 + } + ] + } + ], + "version": "2.2.0" + }, + "4c680c115e42340a3d88a285669e0a2b": { + "asset": { + "id": "4c680c115e42340a3d88a285669e0a2b", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=38.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=38.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 38.1 + }, + "regions": [ + { + "id": "sLEdgsrvC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 28.40937114673243, + "left": 998.0107506165228, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 998.0107506165228, + "y": 322.77962132504115 + }, + { + "x": 1026.4201217632553, + "y": 322.77962132504115 + }, + { + "x": 1026.4201217632553, + "y": 360.6743581671464 + }, + { + "x": 998.0107506165228, + "y": 360.6743581671464 + } + ] + }, + { + "id": "N1T3YktyJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 32.61819898273736, + "left": 942.2441430332923, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 942.2441430332923, + "y": 329.0954107987253 + }, + { + "x": 974.8623420160296, + "y": 329.0954107987253 + }, + { + "x": 974.8623420160296, + "y": 382.77962132504115 + }, + { + "x": 942.2441430332923, + "y": 382.77962132504115 + } + ] + }, + { + "id": "X9l3BIAfq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 29.46150585696671, + "left": 890.6864596177559, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 890.6864596177559, + "y": 316.46383185135693 + }, + { + "x": 920.1479654747226, + "y": 316.46383185135693 + }, + { + "x": 920.1479654747226, + "y": 373.3059371145148 + }, + { + "x": 890.6864596177559, + "y": 373.3059371145148 + } + ] + }, + { + "id": "9Djjvv9LG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 47.348951911220716, + "left": 773.8923782367448, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 773.8923782367448, + "y": 315.41121633429276 + }, + { + "x": 821.2413301479655, + "y": 315.41121633429276 + }, + { + "x": 821.2413301479655, + "y": 371.2006578947368 + }, + { + "x": 773.8923782367448, + "y": 371.2006578947368 + } + ] + }, + { + "id": "ZI8Ilx97b", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 26.304909062885326, + "left": 682.3510712083847, + "top": 319.621726588199 + }, + "points": [ + { + "x": 682.3510712083847, + "y": 319.621726588199 + }, + { + "x": 708.6559802712701, + "y": 319.621726588199 + }, + { + "x": 708.6559802712701, + "y": 377.51644736842104 + }, + { + "x": 682.3510712083847, + "y": 377.51644736842104 + } + ] + }, + { + "id": "2hyfA6XAW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 18.939580764488287, + "left": 573.9745491676942, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 337.5164794921875 + }, + { + "x": 592.9141299321825, + "y": 337.5164794921875 + }, + { + "x": 592.9141299321825, + "y": 395.41120027240953 + }, + { + "x": 573.9745491676942, + "y": 395.41120027240953 + } + ] + }, + { + "id": "X1pk2mJbd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 38.93139257090012, + "left": 510.8426132860666, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 510.8426132860666, + "y": 332.25330553556745 + }, + { + "x": 549.7740058569667, + "y": 332.25330553556745 + }, + { + "x": 549.7740058569667, + "y": 384.88490054481906 + }, + { + "x": 510.8426132860666, + "y": 384.88490054481906 + } + ] + }, + { + "id": "7cJslkRJy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 23.148360434648584, + "left": 388.78752119297167, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 388.78752119297167, + "y": 349.09539473684214 + }, + { + "x": 411.93588162762023, + "y": 349.09539473684214 + }, + { + "x": 411.93588162762023, + "y": 389.0954107987253 + }, + { + "x": 388.78752119297167, + "y": 389.0954107987253 + } + ] + }, + { + "id": "WJmODHZel", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 16.835215012330455, + "left": 345.6473489519112, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 345.6473489519112, + "y": 356.46384791324016 + }, + { + "x": 362.4825639642417, + "y": 356.46384791324016 + }, + { + "x": 362.4825639642417, + "y": 381.727005807977 + }, + { + "x": 345.6473489519112, + "y": 381.727005807977 + } + ] + } + ], + "version": "2.2.0" + }, + "b00bb567e2c65905c58174f56d838dae": { + "asset": { + "id": "b00bb567e2c65905c58174f56d838dae", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.95 + }, + "regions": [ + { + "id": "VfZN99e7Z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 21.043946516646116, + "left": 340.386386405672, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 340.386386405672, + "y": 359.62174265008224 + }, + { + "x": 361.43033292231814, + "y": 359.62174265008224 + }, + { + "x": 361.43033292231814, + "y": 396.4638157894737 + }, + { + "x": 340.386386405672, + "y": 396.4638157894737 + } + ] + }, + { + "id": "A-ffYugJJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 30.513785064734897, + "left": 382.4743276048089, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 382.4743276048089, + "y": 359.62174265008224 + }, + { + "x": 412.9881126695438, + "y": 359.62174265008224 + }, + { + "x": 412.9881126695438, + "y": 401.72698974609375 + }, + { + "x": 382.4743276048089, + "y": 401.72698974609375 + } + ] + }, + { + "id": "CtHH5DRUw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 21.044042848335387, + "left": 1008.5326757090013, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 1008.5326757090013, + "y": 311.2006578947368 + }, + { + "x": 1029.5767185573366, + "y": 311.2006578947368 + }, + { + "x": 1029.5767185573366, + "y": 365.93753212376646 + }, + { + "x": 1008.5326757090013, + "y": 365.93753212376646 + } + ] + }, + { + "id": "3J7__tA7n", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 28.40937114673243, + "left": 887.5298628236745, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 322.77962132504115 + }, + { + "x": 915.9392339704069, + "y": 322.77962132504115 + }, + { + "x": 915.9392339704069, + "y": 368.04276315789474 + }, + { + "x": 887.5298628236745, + "y": 368.04276315789474 + } + ] + }, + { + "id": "sJ4U6f1RS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 30.513736898890258, + "left": 782.3099375770654, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 782.3099375770654, + "y": 317.51644736842104 + }, + { + "x": 812.8236744759556, + "y": 317.51644736842104 + }, + { + "x": 812.8236744759556, + "y": 379.621726588199 + }, + { + "x": 782.3099375770654, + "y": 379.621726588199 + } + ] + }, + { + "id": "8velp0T1e", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 30.513736898890258, + "left": 685.5076680024661, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 685.5076680024661, + "y": 323.83223684210526 + }, + { + "x": 716.0214049013564, + "y": 323.83223684210526 + }, + { + "x": 716.0214049013564, + "y": 380.6743421052632 + }, + { + "x": 685.5076680024661, + "y": 380.6743421052632 + } + ] + }, + { + "id": "BnxVm3BcK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 39.9835272811344, + "left": 567.6613555795315, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 333.30592105263156 + }, + { + "x": 607.6448828606658, + "y": 333.30592105263156 + }, + { + "x": 607.6448828606658, + "y": 385.93751606188323 + }, + { + "x": 567.6613555795315, + "y": 385.93751606188323 + } + ] + }, + { + "id": "AbnENF-UB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36840499074836, + "width": 31.56596794081381, + "left": 507.6860164919852, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 507.6860164919852, + "y": 335.41120027240953 + }, + { + "x": 539.2519844327991, + "y": 335.41120027240953 + }, + { + "x": 539.2519844327991, + "y": 402.7796052631579 + }, + { + "x": 507.6860164919852, + "y": 402.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "0f99c2eeaf7e8053d2ac97dacf5fc468": { + "asset": { + "id": "0f99c2eeaf7e8053d2ac97dacf5fc468", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.8 + }, + "regions": [ + { + "id": "MLyOZDOmg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 48.40108662145499, + "left": 998.0107506165228, + "top": 319.621726588199 + }, + "points": [ + { + "x": 998.0107506165228, + "y": 319.621726588199 + }, + { + "x": 1046.4118372379778, + "y": 319.621726588199 + }, + { + "x": 1046.4118372379778, + "y": 369.09542686060854 + }, + { + "x": 998.0107506165228, + "y": 369.09542686060854 + } + ] + }, + { + "id": "zle0KO_8x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 47.348951911220716, + "left": 879.1122071516646, + "top": 319.621726588199 + }, + "points": [ + { + "x": 879.1122071516646, + "y": 319.621726588199 + }, + { + "x": 926.4611590628854, + "y": 319.621726588199 + }, + { + "x": 926.4611590628854, + "y": 368.04276315789474 + }, + { + "x": 879.1122071516646, + "y": 368.04276315789474 + } + ] + }, + { + "id": "UCycNX7m0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 36.82693048705302, + "left": 783.3621686189889, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 783.3621686189889, + "y": 314.35855263157896 + }, + { + "x": 820.1890991060419, + "y": 314.35855263157896 + }, + { + "x": 820.1890991060419, + "y": 370.1480423776727 + }, + { + "x": 783.3621686189889, + "y": 370.1480423776727 + } + ] + }, + { + "id": "INdn9eABr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 30.513736898890258, + "left": 684.4554369605426, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 684.4554369605426, + "y": 328.0427952816612 + }, + { + "x": 714.9691738594328, + "y": 328.0427952816612 + }, + { + "x": 714.9691738594328, + "y": 376.46383185135693 + }, + { + "x": 684.4554369605426, + "y": 376.46383185135693 + } + ] + }, + { + "id": "mEWVC2_RI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 30.513736898890258, + "left": 565.5569898273736, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 565.5569898273736, + "y": 335.41120027240953 + }, + { + "x": 596.0707267262638, + "y": 335.41120027240953 + }, + { + "x": 596.0707267262638, + "y": 390.1480263157895 + }, + { + "x": 565.5569898273736, + "y": 390.1480263157895 + } + ] + }, + { + "id": "nRr4IvyX1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 39.9835272811344, + "left": 508.73824753390875, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 508.73824753390875, + "y": 326.9901315789474 + }, + { + "x": 548.7217748150432, + "y": 326.9901315789474 + }, + { + "x": 548.7217748150432, + "y": 385.93751606188323 + }, + { + "x": 508.73824753390875, + "y": 385.93751606188323 + } + ] + }, + { + "id": "6WVvWa6aR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 31.56596794081381, + "left": 387.73533831689275, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 387.73533831689275, + "y": 348.04277921977797 + }, + { + "x": 419.3013062577065, + "y": 348.04277921977797 + }, + { + "x": 419.3013062577065, + "y": 410.14805843955594 + }, + { + "x": 387.73533831689275, + "y": 410.14805843955594 + } + ] + } + ], + "version": "2.2.0" + }, + "4e9b84ae9bc16f11bfb2df1cc8378c73": { + "asset": { + "id": "4e9b84ae9bc16f11bfb2df1cc8378c73", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.65 + }, + "regions": [ + { + "id": "O2k2uJcPz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 33.67033369297164, + "left": 1013.7937345869298, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 1013.7937345869298, + "y": 333.30592105263156 + }, + { + "x": 1047.4640682799013, + "y": 333.30592105263156 + }, + { + "x": 1047.4640682799013, + "y": 369.09542686060854 + }, + { + "x": 1013.7937345869298, + "y": 369.09542686060854 + } + ] + }, + { + "id": "vZKOHxhSA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 42.0879893649815, + "left": 889.6342285758324, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 889.6342285758324, + "y": 330.1480263157895 + }, + { + "x": 931.7222179408138, + "y": 330.1480263157895 + }, + { + "x": 931.7222179408138, + "y": 370.1480423776727 + }, + { + "x": 889.6342285758324, + "y": 370.1480423776727 + } + ] + }, + { + "id": "DNAs50BZP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 26.3050053945746, + "left": 791.7797279593095, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 791.7797279593095, + "y": 325.93751606188323 + }, + { + "x": 818.0847333538841, + "y": 325.93751606188323 + }, + { + "x": 818.0847333538841, + "y": 378.5691110711349 + }, + { + "x": 791.7797279593095, + "y": 378.5691110711349 + } + ] + }, + { + "id": "1t2t3ToKY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 35.77479577681874, + "left": 686.5598027127004, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 686.5598027127004, + "y": 336.4638157894737 + }, + { + "x": 722.3345984895191, + "y": 336.4638157894737 + }, + { + "x": 722.3345984895191, + "y": 378.5691110711349 + }, + { + "x": 686.5598027127004, + "y": 378.5691110711349 + } + ] + }, + { + "id": "7tNGB4V25", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 33.67033369297164, + "left": 575.0267802096178, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 575.0267802096178, + "y": 336.4638157894737 + }, + { + "x": 608.6971139025894, + "y": 336.4638157894737 + }, + { + "x": 608.6971139025894, + "y": 390.1480263157895 + }, + { + "x": 575.0267802096178, + "y": 390.1480263157895 + } + ] + }, + { + "id": "LMIYWPN4D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 35.77469944512947, + "left": 515.0514411220715, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 515.0514411220715, + "y": 338.56909500925167 + }, + { + "x": 550.826140567201, + "y": 338.56909500925167 + }, + { + "x": 550.826140567201, + "y": 392.25330553556745 + }, + { + "x": 515.0514411220715, + "y": 392.25330553556745 + } + ] + }, + { + "id": "RXshsokoa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 28.40937114673243, + "left": 385.6309243988903, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 385.6309243988903, + "y": 362.7796373869243 + }, + { + "x": 414.0402955456227, + "y": 362.7796373869243 + }, + { + "x": 414.0402955456227, + "y": 413.305953176398 + }, + { + "x": 385.6309243988903, + "y": 413.305953176398 + } + ] + }, + { + "id": "n1uEMcH_I", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 21.04399468249075, + "left": 344.5951660758323, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 344.5951660758323, + "y": 356.46384791324016 + }, + { + "x": 365.63916075832304, + "y": 356.46384791324016 + }, + { + "x": 365.63916075832304, + "y": 403.8322689658717 + }, + { + "x": 344.5951660758323, + "y": 403.8322689658717 + } + ] + } + ], + "version": "2.2.0" + }, + "8e4bdc0b5c166d2e5b861d40c2099c3a": { + "asset": { + "id": "8e4bdc0b5c166d2e5b861d40c2099c3a", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.5 + }, + "regions": [ + { + "id": "5XmiJAK6C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 44.192355117139336, + "left": 1005.3760789149198, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 1005.3760789149198, + "y": 317.51644736842104 + }, + { + "x": 1049.5684340320593, + "y": 317.51644736842104 + }, + { + "x": 1049.5684340320593, + "y": 382.77962132504115 + }, + { + "x": 1005.3760789149198, + "y": 382.77962132504115 + } + ] + }, + { + "id": "z-1tkgfH1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 42.0879893649815, + "left": 886.4776317817509, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 886.4776317817509, + "y": 322.77962132504115 + }, + { + "x": 928.5656211467325, + "y": 322.77962132504115 + }, + { + "x": 928.5656211467325, + "y": 376.46383185135693 + }, + { + "x": 886.4776317817509, + "y": 376.46383185135693 + } + ] + }, + { + "id": "W-bqVRWDS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 35.77469944512947, + "left": 783.3621686189889, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 783.3621686189889, + "y": 328.0427952816612 + }, + { + "x": 819.1368680641184, + "y": 328.0427952816612 + }, + { + "x": 819.1368680641184, + "y": 370.1480423776727 + }, + { + "x": 783.3621686189889, + "y": 370.1480423776727 + } + ] + }, + { + "id": "cs4lMFVOD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 19.99181180641184, + "left": 690.7686305487053, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 690.7686305487053, + "y": 324.88490054481906 + }, + { + "x": 710.7604423551171, + "y": 324.88490054481906 + }, + { + "x": 710.7604423551171, + "y": 375.41121633429276 + }, + { + "x": 690.7686305487053, + "y": 375.41121633429276 + } + ] + }, + { + "id": "sM-TxLbuy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 53.66214549938348, + "left": 567.6613555795315, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 334.3585847553454 + }, + { + "x": 621.3235010789149, + "y": 334.3585847553454 + }, + { + "x": 621.3235010789149, + "y": 393.30592105263156 + }, + { + "x": 567.6613555795315, + "y": 393.30592105263156 + } + ] + }, + { + "id": "iLpFnt-sD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 38.93139257090012, + "left": 510.8426132860666, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 510.8426132860666, + "y": 331.2006900185033 + }, + { + "x": 549.7740058569667, + "y": 331.2006900185033 + }, + { + "x": 549.7740058569667, + "y": 391.2006900185033 + }, + { + "x": 510.8426132860666, + "y": 391.2006900185033 + } + ] + }, + { + "id": "yPczJbWLZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 24.200543310727497, + "left": 397.2051286991369, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 397.2051286991369, + "y": 368.04276315789474 + }, + { + "x": 421.40567200986436, + "y": 368.04276315789474 + }, + { + "x": 421.40567200986436, + "y": 412.2532894736842 + }, + { + "x": 397.2051286991369, + "y": 412.2532894736842 + } + ] + }, + { + "id": "ndgQ4eXBb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 32.61815081689272, + "left": 338.2819724876695, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 338.2819724876695, + "y": 352.2532894736842 + }, + { + "x": 370.90012330456227, + "y": 352.2532894736842 + }, + { + "x": 370.90012330456227, + "y": 406.9901637027138 + }, + { + "x": 338.2819724876695, + "y": 406.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "6f473c538a0040f849be60437b678261": { + "asset": { + "id": "6f473c538a0040f849be60437b678261", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.35 + }, + "regions": [ + { + "id": "msg_ogk2A", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 26.3050053945746, + "left": 1024.315659679408, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 1024.315659679408, + "y": 337.5164794921875 + }, + { + "x": 1050.6206650739828, + "y": 337.5164794921875 + }, + { + "x": 1050.6206650739828, + "y": 374.35855263157896 + }, + { + "x": 1024.315659679408, + "y": 374.35855263157896 + } + ] + }, + { + "id": "wTiIdaAhG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 34.722564734895194, + "left": 905.4172125462392, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 905.4172125462392, + "y": 326.9901315789474 + }, + { + "x": 940.1397772811345, + "y": 326.9901315789474 + }, + { + "x": 940.1397772811345, + "y": 385.93751606188323 + }, + { + "x": 905.4172125462392, + "y": 385.93751606188323 + } + ] + }, + { + "id": "VkU4XE9pX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 31.56596794081381, + "left": 792.831959001233, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 792.831959001233, + "y": 334.3585847553454 + }, + { + "x": 824.3979269420469, + "y": 334.3585847553454 + }, + { + "x": 824.3979269420469, + "y": 383.83223684210526 + }, + { + "x": 792.831959001233, + "y": 383.83223684210526 + } + ] + }, + { + "id": "uMzNll4Cr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 34.722564734895194, + "left": 685.5076680024661, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 685.5076680024661, + "y": 338.56909500925167 + }, + { + "x": 720.2302327373613, + "y": 338.56909500925167 + }, + { + "x": 720.2302327373613, + "y": 382.77962132504115 + }, + { + "x": 685.5076680024661, + "y": 382.77962132504115 + } + ] + }, + { + "id": "gGgDdVdei", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 29.46150585696671, + "left": 578.1833770036991, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 343.8322689658717 + }, + { + "x": 607.6448828606658, + "y": 343.8322689658717 + }, + { + "x": 607.6448828606658, + "y": 393.30592105263156 + }, + { + "x": 578.1833770036991, + "y": 393.30592105263156 + } + ] + }, + { + "id": "0NzAom89E", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 28.40937114673243, + "left": 523.4690004623922, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 523.4690004623922, + "y": 334.3585847553454 + }, + { + "x": 551.8783716091245, + "y": 334.3585847553454 + }, + { + "x": 551.8783716091245, + "y": 378.5691110711349 + }, + { + "x": 523.4690004623922, + "y": 378.5691110711349 + } + ] + }, + { + "id": "rufGEgMcJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 41.035758323057955, + "left": 387.73533831689275, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 387.73533831689275, + "y": 348.04277921977797 + }, + { + "x": 428.77109663995066, + "y": 348.04277921977797 + }, + { + "x": 428.77109663995066, + "y": 389.0954107987253 + }, + { + "x": 387.73533831689275, + "y": 389.0954107987253 + } + ] + }, + { + "id": "4_bBN7PWT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 21.043946516646116, + "left": 346.6995799938348, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 346.6995799938348, + "y": 352.2532894736842 + }, + { + "x": 367.7435265104809, + "y": 352.2532894736842 + }, + { + "x": 367.7435265104809, + "y": 389.0954107987253 + }, + { + "x": 346.6995799938348, + "y": 389.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "76e785fb77e02b05126941d203b9ebce": { + "asset": { + "id": "76e785fb77e02b05126941d203b9ebce", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.2 + }, + "regions": [ + { + "id": "EBDlvTTye", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 26.3050053945746, + "left": 1024.315659679408, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 1024.315659679408, + "y": 335.41120027240953 + }, + { + "x": 1050.6206650739828, + "y": 335.41120027240953 + }, + { + "x": 1050.6206650739828, + "y": 391.2006900185033 + }, + { + "x": 1024.315659679408, + "y": 391.2006900185033 + } + ] + }, + { + "id": "s4BA-uOcs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 28.40937114673243, + "left": 911.730406134402, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 911.730406134402, + "y": 331.2006900185033 + }, + { + "x": 940.1397772811345, + "y": 331.2006900185033 + }, + { + "x": 940.1397772811345, + "y": 388.0427952816612 + }, + { + "x": 911.730406134402, + "y": 388.0427952816612 + } + ] + }, + { + "id": "WfI8z0adN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 31.56596794081381, + "left": 791.7797279593095, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 791.7797279593095, + "y": 328.0427952816612 + }, + { + "x": 823.3456959001234, + "y": 328.0427952816612 + }, + { + "x": 823.3456959001234, + "y": 380.6743421052632 + }, + { + "x": 791.7797279593095, + "y": 380.6743421052632 + } + ] + }, + { + "id": "UIoc20_xb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 44.192355117139336, + "left": 683.403205918619, + "top": 321.727005807977 + }, + "points": [ + { + "x": 683.403205918619, + "y": 321.727005807977 + }, + { + "x": 727.5955610357584, + "y": 321.727005807977 + }, + { + "x": 727.5955610357584, + "y": 371.2006578947368 + }, + { + "x": 683.403205918619, + "y": 371.2006578947368 + } + ] + }, + { + "id": "89kq7y0cu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 26.3050053945746, + "left": 588.7053020961775, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 588.7053020961775, + "y": 335.41120027240953 + }, + { + "x": 615.0103074907522, + "y": 335.41120027240953 + }, + { + "x": 615.0103074907522, + "y": 386.9901315789474 + }, + { + "x": 588.7053020961775, + "y": 386.9901315789474 + } + ] + }, + { + "id": "BPVe0r0uC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 27.357140104808877, + "left": 532.9387908446363, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 341.72698974609375 + }, + { + "x": 560.2959309494452, + "y": 341.72698974609375 + }, + { + "x": 560.2959309494452, + "y": 380.6743421052632 + }, + { + "x": 532.9387908446363, + "y": 380.6743421052632 + } + ] + }, + { + "id": "pMUqWG5YJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 31.56596794081381, + "left": 387.73533831689275, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 387.73533831689275, + "y": 359.62174265008224 + }, + { + "x": 419.3013062577065, + "y": 359.62174265008224 + }, + { + "x": 419.3013062577065, + "y": 401.72698974609375 + }, + { + "x": 387.73533831689275, + "y": 401.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "4f7708935f8908f9a82764814023784c": { + "asset": { + "id": "4f7708935f8908f9a82764814023784c", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=37.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=37.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 37.05 + }, + "regions": [ + { + "id": "MVwZmEjW_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 39.9835272811344, + "left": 1028.524487515413, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 1028.524487515413, + "y": 335.41120027240953 + }, + { + "x": 1068.5080147965475, + "y": 335.41120027240953 + }, + { + "x": 1068.5080147965475, + "y": 385.93751606188323 + }, + { + "x": 1028.524487515413, + "y": 385.93751606188323 + } + ] + }, + { + "id": "ASUhcPYVy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 38.93129623921085, + "left": 900.15625, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 900.15625, + "y": 333.30592105263156 + }, + { + "x": 939.0875462392108, + "y": 333.30592105263156 + }, + { + "x": 939.0875462392108, + "y": 384.88490054481906 + }, + { + "x": 900.15625, + "y": 384.88490054481906 + } + ] + }, + { + "id": "917MbNP07", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 57.87097333538841, + "left": 788.6231311652281, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 788.6231311652281, + "y": 329.0954107987253 + }, + { + "x": 846.4941045006166, + "y": 329.0954107987253 + }, + { + "x": 846.4941045006166, + "y": 383.83223684210526 + }, + { + "x": 788.6231311652281, + "y": 383.83223684210526 + } + ] + }, + { + "id": "tsLmTXKkz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 18.939580764488287, + "left": 701.290651972873, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 701.290651972873, + "y": 337.5164794921875 + }, + { + "x": 720.2302327373613, + "y": 337.5164794921875 + }, + { + "x": 720.2302327373613, + "y": 379.621726588199 + }, + { + "x": 701.290651972873, + "y": 379.621726588199 + } + ] + }, + { + "id": "1HguVNdJe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 33.67043002466091, + "left": 591.861898890259, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 591.861898890259, + "y": 337.5164794921875 + }, + { + "x": 625.5323289149198, + "y": 337.5164794921875 + }, + { + "x": 625.5323289149198, + "y": 393.30592105263156 + }, + { + "x": 591.861898890259, + "y": 393.30592105263156 + } + ] + }, + { + "id": "KdqJ4m7aY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 19.99181180641184, + "left": 536.0953876387176, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 536.0953876387176, + "y": 335.41120027240953 + }, + { + "x": 556.0871994451295, + "y": 335.41120027240953 + }, + { + "x": 556.0871994451295, + "y": 379.621726588199 + }, + { + "x": 536.0953876387176, + "y": 379.621726588199 + } + ] + }, + { + "id": "iNFMZA7PK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 27.357140104808877, + "left": 403.5183222872996, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 403.5183222872996, + "y": 354.3585686934622 + }, + { + "x": 430.8754623921085, + "y": 354.3585686934622 + }, + { + "x": 430.8754623921085, + "y": 390.1480263157895 + }, + { + "x": 403.5183222872996, + "y": 390.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "77e0b3aa981d01034c74cd5475c23fdc": { + "asset": { + "id": "77e0b3aa981d01034c74cd5475c23fdc", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.9 + }, + "regions": [ + { + "id": "jdKp4Kg6L", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 33.67033369297164, + "left": 1032.733315351418, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 1032.733315351418, + "y": 340.67437422902964 + }, + { + "x": 1066.4036490443896, + "y": 340.67437422902964 + }, + { + "x": 1066.4036490443896, + "y": 398.56909500925167 + }, + { + "x": 1032.733315351418, + "y": 398.56909500925167 + } + ] + }, + { + "id": "9U9tN2tMw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 41.035758323057955, + "left": 910.6781750924785, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 910.6781750924785, + "y": 332.25330553556745 + }, + { + "x": 951.7139334155364, + "y": 332.25330553556745 + }, + { + "x": 951.7139334155364, + "y": 386.9901315789474 + }, + { + "x": 910.6781750924785, + "y": 386.9901315789474 + } + ] + }, + { + "id": "K4E09bYkk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 41.035758323057955, + "left": 805.4583461775586, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 805.4583461775586, + "y": 339.6217105263158 + }, + { + "x": 846.4941045006166, + "y": 339.6217105263158 + }, + { + "x": 846.4941045006166, + "y": 395.41120027240953 + }, + { + "x": 805.4583461775586, + "y": 395.41120027240953 + } + ] + }, + { + "id": "Vwj7VRXrV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 41.035758323057955, + "left": 703.3950177250308, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 326.9901315789474 + }, + { + "x": 744.4307760480888, + "y": 326.9901315789474 + }, + { + "x": 744.4307760480888, + "y": 379.621726588199 + }, + { + "x": 703.3950177250308, + "y": 379.621726588199 + } + ] + }, + { + "id": "wH4kv4Cu9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 28.40937114673243, + "left": 598.1750924784217, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 598.1750924784217, + "y": 337.5164794921875 + }, + { + "x": 626.5844636251542, + "y": 337.5164794921875 + }, + { + "x": 626.5844636251542, + "y": 390.1480263157895 + }, + { + "x": 598.1750924784217, + "y": 390.1480263157895 + } + ] + }, + { + "id": "KCJvvh6jU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 46.29672086929717, + "left": 520.3124036683107, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 520.3124036683107, + "y": 343.8322689658717 + }, + { + "x": 566.609124537608, + "y": 343.8322689658717 + }, + { + "x": 566.609124537608, + "y": 395.41120027240953 + }, + { + "x": 520.3124036683107, + "y": 395.41120027240953 + } + ] + }, + { + "id": "5tI6qUcAT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 36.82693048705302, + "left": 384.57874152281136, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 384.57874152281136, + "y": 357.51646343030427 + }, + { + "x": 421.40567200986436, + "y": 357.51646343030427 + }, + { + "x": 421.40567200986436, + "y": 408.04277921977797 + }, + { + "x": 384.57874152281136, + "y": 408.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "117b5f433fef7728421e5b4e22efbf26": { + "asset": { + "id": "117b5f433fef7728421e5b4e22efbf26", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.75 + }, + "regions": [ + { + "id": "hvCvjuD6C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 30.513833230579532, + "left": 1030.628853267571, + "top": 353.305953176398 + }, + "points": [ + { + "x": 1030.628853267571, + "y": 353.305953176398 + }, + { + "x": 1061.1426864981504, + "y": 353.305953176398 + }, + { + "x": 1061.1426864981504, + "y": 397.5164794921875 + }, + { + "x": 1030.628853267571, + "y": 397.5164794921875 + } + ] + }, + { + "id": "UEn9q54eC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 45.244586159062884, + "left": 911.730406134402, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 911.730406134402, + "y": 338.56909500925167 + }, + { + "x": 956.9749922934649, + "y": 338.56909500925167 + }, + { + "x": 956.9749922934649, + "y": 403.8322689658717 + }, + { + "x": 911.730406134402, + "y": 403.8322689658717 + } + ] + }, + { + "id": "STNWq2-lI0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 34.722564734895194, + "left": 806.5104808877928, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 806.5104808877928, + "y": 335.41120027240953 + }, + { + "x": 841.233045622688, + "y": 335.41120027240953 + }, + { + "x": 841.233045622688, + "y": 383.83223684210526 + }, + { + "x": 806.5104808877928, + "y": 383.83223684210526 + } + ] + }, + { + "id": "07C0xLu23q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 39.9835272811344, + "left": 704.4472487669544, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 704.4472487669544, + "y": 337.5164794921875 + }, + { + "x": 744.4307760480888, + "y": 337.5164794921875 + }, + { + "x": 744.4307760480888, + "y": 381.727005807977 + }, + { + "x": 704.4472487669544, + "y": 381.727005807977 + } + ] + }, + { + "id": "82RcVLbHJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 38.93129623921085, + "left": 593.966360974106, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 593.966360974106, + "y": 342.7796052631579 + }, + { + "x": 632.8976572133168, + "y": 342.7796052631579 + }, + { + "x": 632.8976572133168, + "y": 388.0427952816612 + }, + { + "x": 593.966360974106, + "y": 388.0427952816612 + } + ] + }, + { + "id": "CpUSQILGQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 24.20063964241677, + "left": 538.1997533908755, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 538.1997533908755, + "y": 339.6217105263158 + }, + { + "x": 562.4003930332923, + "y": 339.6217105263158 + }, + { + "x": 562.4003930332923, + "y": 378.5691110711349 + }, + { + "x": 538.1997533908755, + "y": 378.5691110711349 + } + ] + }, + { + "id": "wMDS5yeyn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 33.67033369297164, + "left": 397.2051286991369, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 397.2051286991369, + "y": 352.2532894736842 + }, + { + "x": 430.8754623921085, + "y": 352.2532894736842 + }, + { + "x": 430.8754623921085, + "y": 390.1480263157895 + }, + { + "x": 397.2051286991369, + "y": 390.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "4c5924f89b80b689980d12313f2ec22b": { + "asset": { + "id": "4c5924f89b80b689980d12313f2ec22b", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.6 + }, + "regions": [ + { + "id": "Iv6CShckV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 39.98362361282368, + "left": 1033.7854500616522, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 1033.7854500616522, + "y": 355.4111842105263 + }, + { + "x": 1073.769073674476, + "y": 355.4111842105263 + }, + { + "x": 1073.769073674476, + "y": 401.72698974609375 + }, + { + "x": 1033.7854500616522, + "y": 401.72698974609375 + } + ] + }, + { + "id": "STRPr8AqB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 50.5055487053021, + "left": 898.0517879161529, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 898.0517879161529, + "y": 337.5164794921875 + }, + { + "x": 948.557336621455, + "y": 337.5164794921875 + }, + { + "x": 948.557336621455, + "y": 399.6217105263158 + }, + { + "x": 898.0517879161529, + "y": 399.6217105263158 + } + ] + }, + { + "id": "WDbTZK08R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 38.93129623921085, + "left": 799.1451525893958, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 799.1451525893958, + "y": 332.25330553556745 + }, + { + "x": 838.0764488286067, + "y": 332.25330553556745 + }, + { + "x": 838.0764488286067, + "y": 380.6743421052632 + }, + { + "x": 799.1451525893958, + "y": 380.6743421052632 + } + ] + }, + { + "id": "25lihiff2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 23.14840860049322, + "left": 703.3950177250308, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 340.67437422902964 + }, + { + "x": 726.543426325524, + "y": 340.67437422902964 + }, + { + "x": 726.543426325524, + "y": 388.0427952816612 + }, + { + "x": 703.3950177250308, + "y": 388.0427952816612 + } + ] + }, + { + "id": "tsXT740Qz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 35.77469944512947, + "left": 590.8097641800247, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 590.8097641800247, + "y": 334.3585847553454 + }, + { + "x": 626.5844636251542, + "y": 334.3585847553454 + }, + { + "x": 626.5844636251542, + "y": 391.2006900185033 + }, + { + "x": 590.8097641800247, + "y": 391.2006900185033 + } + ] + }, + { + "id": "r7pD49QFK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 36.8270268187423, + "left": 531.8865598027127, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 531.8865598027127, + "y": 335.41120027240953 + }, + { + "x": 568.713586621455, + "y": 335.41120027240953 + }, + { + "x": 568.713586621455, + "y": 376.46383185135693 + }, + { + "x": 531.8865598027127, + "y": 376.46383185135693 + } + ] + } + ], + "version": "2.2.0" + }, + "d6b7799842f2cc4f4648f02861143ac7": { + "asset": { + "id": "d6b7799842f2cc4f4648f02861143ac7", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.45 + }, + "regions": [ + { + "id": "t1L_JLR6u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 34.722564734895194, + "left": 1027.4722564734896, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 1027.4722564734896, + "y": 352.2532894736842 + }, + { + "x": 1062.1948212083848, + "y": 352.2532894736842 + }, + { + "x": 1062.1948212083848, + "y": 394.3585847553454 + }, + { + "x": 1027.4722564734896, + "y": 394.3585847553454 + } + ] + }, + { + "id": "aKwGBWEAc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 34.722564734895194, + "left": 923.3045622688039, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 923.3045622688039, + "y": 343.8322689658717 + }, + { + "x": 958.0271270036991, + "y": 343.8322689658717 + }, + { + "x": 958.0271270036991, + "y": 391.2006900185033 + }, + { + "x": 923.3045622688039, + "y": 391.2006900185033 + } + ] + }, + { + "id": "d6LY8on5S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 46.29672086929717, + "left": 791.7797279593095, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 791.7797279593095, + "y": 330.1480263157895 + }, + { + "x": 838.0764488286067, + "y": 330.1480263157895 + }, + { + "x": 838.0764488286067, + "y": 388.0427952816612 + }, + { + "x": 791.7797279593095, + "y": 388.0427952816612 + } + ] + }, + { + "id": "biHjECu3U", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 34.722564734895194, + "left": 701.290651972873, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 701.290651972873, + "y": 337.5164794921875 + }, + { + "x": 736.0132167077682, + "y": 337.5164794921875 + }, + { + "x": 736.0132167077682, + "y": 377.51644736842104 + }, + { + "x": 701.290651972873, + "y": 377.51644736842104 + } + ] + }, + { + "id": "AEJkQ6bTV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 51.557683415536374, + "left": 584.4965705918619, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 584.4965705918619, + "y": 337.5164794921875 + }, + { + "x": 636.0542540073983, + "y": 337.5164794921875 + }, + { + "x": 636.0542540073983, + "y": 385.93751606188323 + }, + { + "x": 584.4965705918619, + "y": 385.93751606188323 + } + ] + }, + { + "id": "zuRPhw2g3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 29.46150585696671, + "left": 533.9910218865598, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 322.77962132504115 + }, + { + "x": 563.4525277435265, + "y": 322.77962132504115 + }, + { + "x": 563.4525277435265, + "y": 378.5691110711349 + }, + { + "x": 533.9910218865598, + "y": 378.5691110711349 + } + ] + } + ], + "version": "2.2.0" + }, + "b25df89a9482bc3736a5f9524740e24e": { + "asset": { + "id": "b25df89a9482bc3736a5f9524740e24e", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.4 + }, + "regions": [ + { + "id": "nNpNV3sgC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 42.08789303329223, + "left": 1032.733315351418, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 1032.733315351418, + "y": 354.3585686934622 + }, + { + "x": 1074.8212083847102, + "y": 354.3585686934622 + }, + { + "x": 1074.8212083847102, + "y": 403.8322689658717 + }, + { + "x": 1032.733315351418, + "y": 403.8322689658717 + } + ] + }, + { + "id": "7CfrHTDXJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 65.23639796547472, + "left": 904.3649815043157, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 904.3649815043157, + "y": 339.6217105263158 + }, + { + "x": 969.6013794697903, + "y": 339.6217105263158 + }, + { + "x": 969.6013794697903, + "y": 399.6217105263158 + }, + { + "x": 904.3649815043157, + "y": 399.6217105263158 + } + ] + }, + { + "id": "QzTfgFtD_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 34.722564734895194, + "left": 800.1972872996301, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 337.5164794921875 + }, + { + "x": 834.9198520345253, + "y": 337.5164794921875 + }, + { + "x": 834.9198520345253, + "y": 389.0954107987253 + }, + { + "x": 800.1972872996301, + "y": 389.0954107987253 + } + ] + }, + { + "id": "nGLvp9xI3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 17.887349722564736, + "left": 709.7082113131936, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 709.7082113131936, + "y": 335.41120027240953 + }, + { + "x": 727.5955610357584, + "y": 335.41120027240953 + }, + { + "x": 727.5955610357584, + "y": 364.88486842105266 + }, + { + "x": 709.7082113131936, + "y": 364.88486842105266 + } + ] + }, + { + "id": "x15onP8-V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 27.35723643649815, + "left": 595.0184956843403, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 595.0184956843403, + "y": 343.8322689658717 + }, + { + "x": 622.3757321208385, + "y": 343.8322689658717 + }, + { + "x": 622.3757321208385, + "y": 383.83223684210526 + }, + { + "x": 595.0184956843403, + "y": 383.83223684210526 + } + ] + }, + { + "id": "Ts_YWtxIV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 23.14840860049322, + "left": 539.2519844327991, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 342.7796052631579 + }, + { + "x": 562.4003930332923, + "y": 342.7796052631579 + }, + { + "x": 562.4003930332923, + "y": 386.9901315789474 + }, + { + "x": 539.2519844327991, + "y": 386.9901315789474 + } + ] + }, + { + "id": "jHMvSc_A4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 28.40937114673243, + "left": 391.944117987053, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 391.944117987053, + "y": 352.2532894736842 + }, + { + "x": 420.35348913378544, + "y": 352.2532894736842 + }, + { + "x": 420.35348913378544, + "y": 399.6217105263158 + }, + { + "x": 391.944117987053, + "y": 399.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "746e8b10de3b6981971ec8d88b142756": { + "asset": { + "id": "746e8b10de3b6981971ec8d88b142756", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.25 + }, + "regions": [ + { + "id": "YSeRjRvZl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 47.348951911220716, + "left": 383.5265104808878, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 383.5265104808878, + "y": 348.04277921977797 + }, + { + "x": 430.8754623921085, + "y": 348.04277921977797 + }, + { + "x": 430.8754623921085, + "y": 385.93751606188323 + }, + { + "x": 383.5265104808878, + "y": 385.93751606188323 + } + ] + }, + { + "id": "4GnSxlK1Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 43.14022040690506, + "left": 1040.0986436498151, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 1040.0986436498151, + "y": 354.3585686934622 + }, + { + "x": 1083.23886405672, + "y": 354.3585686934622 + }, + { + "x": 1083.23886405672, + "y": 416.46384791324016 + }, + { + "x": 1040.0986436498151, + "y": 416.46384791324016 + } + ] + }, + { + "id": "kjzg7Pada", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 42.0879893649815, + "left": 910.6781750924785, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 910.6781750924785, + "y": 340.67437422902964 + }, + { + "x": 952.7661644574599, + "y": 340.67437422902964 + }, + { + "x": 952.7661644574599, + "y": 404.8848844829359 + }, + { + "x": 910.6781750924785, + "y": 404.8848844829359 + } + ] + }, + { + "id": "ggBSqrXL2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 32.61819898273736, + "left": 797.0406905055487, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 797.0406905055487, + "y": 333.30592105263156 + }, + { + "x": 829.658889488286, + "y": 333.30592105263156 + }, + { + "x": 829.658889488286, + "y": 380.6743421052632 + }, + { + "x": 797.0406905055487, + "y": 380.6743421052632 + } + ] + }, + { + "id": "6hhItU-DS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 28.40937114673243, + "left": 700.2384209309495, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 700.2384209309495, + "y": 340.67437422902964 + }, + { + "x": 728.6477920776819, + "y": 340.67437422902964 + }, + { + "x": 728.6477920776819, + "y": 379.621726588199 + }, + { + "x": 700.2384209309495, + "y": 379.621726588199 + } + ] + }, + { + "id": "hUwlJzsV9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 35.77469944512947, + "left": 593.966360974106, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 593.966360974106, + "y": 334.3585847553454 + }, + { + "x": 629.7410604192355, + "y": 334.3585847553454 + }, + { + "x": 629.7410604192355, + "y": 373.3059371145148 + }, + { + "x": 593.966360974106, + "y": 373.3059371145148 + } + ] + }, + { + "id": "p4z4zHZcE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 44.192355117139336, + "left": 526.6255972564735, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 526.6255972564735, + "y": 322.77962132504115 + }, + { + "x": 570.8179523736128, + "y": 322.77962132504115 + }, + { + "x": 570.8179523736128, + "y": 372.2533215974507 + }, + { + "x": 526.6255972564735, + "y": 372.2533215974507 + } + ] + } + ], + "version": "2.2.0" + }, + "90330c669a1e2edec5496d662253983f": { + "asset": { + "id": "90330c669a1e2edec5496d662253983f", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=36.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=36.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 36.1 + }, + "regions": [ + { + "id": "DZqyGqBeD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 38.93129623921085, + "left": 1039.0465089395807, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 1039.0465089395807, + "y": 359.62174265008224 + }, + { + "x": 1077.9778051787916, + "y": 359.62174265008224 + }, + { + "x": 1077.9778051787916, + "y": 403.8322689658717 + }, + { + "x": 1039.0465089395807, + "y": 403.8322689658717 + } + ] + }, + { + "id": "0UX6IF180", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 54.714376541307026, + "left": 910.6781750924785, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 910.6781750924785, + "y": 344.8848844829359 + }, + { + "x": 965.3925516337855, + "y": 344.8848844829359 + }, + { + "x": 965.3925516337855, + "y": 394.3585847553454 + }, + { + "x": 910.6781750924785, + "y": 394.3585847553454 + } + ] + }, + { + "id": "doDPG6yrw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 27.35723643649815, + "left": 806.5104808877928, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 806.5104808877928, + "y": 338.56909500925167 + }, + { + "x": 833.867717324291, + "y": 338.56909500925167 + }, + { + "x": 833.867717324291, + "y": 390.1480263157895 + }, + { + "x": 806.5104808877928, + "y": 390.1480263157895 + } + ] + }, + { + "id": "il4TjVBU3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 31.56596794081381, + "left": 710.7604423551171, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 710.7604423551171, + "y": 331.2006900185033 + }, + { + "x": 742.3264102959309, + "y": 331.2006900185033 + }, + { + "x": 742.3264102959309, + "y": 376.46383185135693 + }, + { + "x": 710.7604423551171, + "y": 376.46383185135693 + } + ] + }, + { + "id": "Q2y_J6RuF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 32.61819898273736, + "left": 595.0184956843403, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 595.0184956843403, + "y": 343.8322689658717 + }, + { + "x": 627.6366946670777, + "y": 343.8322689658717 + }, + { + "x": 627.6366946670777, + "y": 391.2006900185033 + }, + { + "x": 595.0184956843403, + "y": 391.2006900185033 + } + ] + }, + { + "id": "fLI8OgwnH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 36.82693048705302, + "left": 532.9387908446363, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 532.9387908446363, + "y": 335.41120027240953 + }, + { + "x": 569.7657213316893, + "y": 335.41120027240953 + }, + { + "x": 569.7657213316893, + "y": 378.5691110711349 + }, + { + "x": 532.9387908446363, + "y": 378.5691110711349 + } + ] + }, + { + "id": "lO2N5ztxl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 33.67038185881628, + "left": 333.0209617755857, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 333.0209617755857, + "y": 338.56909500925167 + }, + { + "x": 366.69134363440196, + "y": 338.56909500925167 + }, + { + "x": 366.69134363440196, + "y": 380.6743421052632 + }, + { + "x": 333.0209617755857, + "y": 380.6743421052632 + } + ] + } + ], + "version": "2.2.0" + }, + "112b14b2698423f876fd18e654393f30": { + "asset": { + "id": "112b14b2698423f876fd18e654393f30", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.95 + }, + "regions": [ + { + "id": "ex2_ePEow", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 38.93139257090012, + "left": 1037.9942778976572, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 1037.9942778976572, + "y": 370.1480423776727 + }, + { + "x": 1076.9256704685574, + "y": 370.1480423776727 + }, + { + "x": 1076.9256704685574, + "y": 420.6743581671464 + }, + { + "x": 1037.9942778976572, + "y": 420.6743581671464 + } + ] + }, + { + "id": "Db7ZAsBJU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 54.714376541307026, + "left": 911.730406134402, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 911.730406134402, + "y": 346.9901637027138 + }, + { + "x": 966.444782675709, + "y": 346.9901637027138 + }, + { + "x": 966.444782675709, + "y": 409.09539473684214 + }, + { + "x": 911.730406134402, + "y": 409.09539473684214 + } + ] + }, + { + "id": "qeS6MlmaW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 25.25277435265105, + "left": 813.8759055178791, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 813.8759055178791, + "y": 348.04277921977797 + }, + { + "x": 839.1286798705303, + "y": 348.04277921977797 + }, + { + "x": 839.1286798705303, + "y": 403.8322689658717 + }, + { + "x": 813.8759055178791, + "y": 403.8322689658717 + } + ] + }, + { + "id": "dlJfgtcf-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 34.722564734895194, + "left": 714.9691738594328, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 714.9691738594328, + "y": 355.4111842105263 + }, + { + "x": 749.691738594328, + "y": 355.4111842105263 + }, + { + "x": 749.691738594328, + "y": 400.67437422902964 + }, + { + "x": 714.9691738594328, + "y": 400.67437422902964 + } + ] + }, + { + "id": "1a69eKASZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 38.93129623921085, + "left": 593.966360974106, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 593.966360974106, + "y": 335.41120027240953 + }, + { + "x": 632.8976572133168, + "y": 335.41120027240953 + }, + { + "x": 632.8976572133168, + "y": 385.93751606188323 + }, + { + "x": 593.966360974106, + "y": 385.93751606188323 + } + ] + }, + { + "id": "LoSmJXCxe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 21.044042848335387, + "left": 544.5129469790382, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 544.5129469790382, + "y": 335.41120027240953 + }, + { + "x": 565.5569898273736, + "y": 335.41120027240953 + }, + { + "x": 565.5569898273736, + "y": 372.2533215974507 + }, + { + "x": 544.5129469790382, + "y": 372.2533215974507 + } + ] + }, + { + "id": "HwKyMjyA6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 29.46160218865598, + "left": 396.1528976572133, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 396.1528976572133, + "y": 337.5164794921875 + }, + { + "x": 425.6144998458693, + "y": 337.5164794921875 + }, + { + "x": 425.6144998458693, + "y": 385.93751606188323 + }, + { + "x": 396.1528976572133, + "y": 385.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "3c18dfd79164d0bbe42af0cecdcfb9a3": { + "asset": { + "id": "3c18dfd79164d0bbe42af0cecdcfb9a3", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.8 + }, + "regions": [ + { + "id": "bYneWQIOv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 38.93139257090012, + "left": 1046.4118372379778, + "top": 382.77962132504115 + }, + "points": [ + { + "x": 1046.4118372379778, + "y": 382.77962132504115 + }, + { + "x": 1085.343229808878, + "y": 382.77962132504115 + }, + { + "x": 1085.343229808878, + "y": 436.46383185135693 + }, + { + "x": 1046.4118372379778, + "y": 436.46383185135693 + } + ] + }, + { + "id": "jqGNWON73", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 67.36845317639802, + "width": 37.879161528976574, + "left": 929.6177558569667, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 929.6177558569667, + "y": 352.2532894736842 + }, + { + "x": 967.4969173859433, + "y": 352.2532894736842 + }, + { + "x": 967.4969173859433, + "y": 419.62174265008224 + }, + { + "x": 929.6177558569667, + "y": 419.62174265008224 + } + ] + }, + { + "id": "pwKRGouf0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 30.513736898890258, + "left": 813.8759055178791, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 813.8759055178791, + "y": 350.14805843955594 + }, + { + "x": 844.3896424167694, + "y": 350.14805843955594 + }, + { + "x": 844.3896424167694, + "y": 398.56909500925167 + }, + { + "x": 813.8759055178791, + "y": 398.56909500925167 + } + ] + }, + { + "id": "78WVvfycx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 42.0879893649815, + "left": 705.4993834771886, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 705.4993834771886, + "y": 346.9901637027138 + }, + { + "x": 747.5873728421702, + "y": 346.9901637027138 + }, + { + "x": 747.5873728421702, + "y": 391.2006900185033 + }, + { + "x": 705.4993834771886, + "y": 391.2006900185033 + } + ] + }, + { + "id": "h2bZnO3Lh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 41.035758323057955, + "left": 605.540517108508, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 605.540517108508, + "y": 341.72698974609375 + }, + { + "x": 646.5762754315659, + "y": 341.72698974609375 + }, + { + "x": 646.5762754315659, + "y": 389.0954107987253 + }, + { + "x": 605.540517108508, + "y": 389.0954107987253 + } + ] + }, + { + "id": "HNN_-UxZv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 42.0879893649815, + "left": 536.0953876387176, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 536.0953876387176, + "y": 348.04277921977797 + }, + { + "x": 578.1833770036991, + "y": 348.04277921977797 + }, + { + "x": 578.1833770036991, + "y": 388.0427952816612 + }, + { + "x": 536.0953876387176, + "y": 388.0427952816612 + } + ] + }, + { + "id": "FX9MBe3k1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 30.513785064734897, + "left": 401.4139083692972, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 401.4139083692972, + "y": 338.56909500925167 + }, + { + "x": 431.92769343403205, + "y": 338.56909500925167 + }, + { + "x": 431.92769343403205, + "y": 371.2006578947368 + }, + { + "x": 401.4139083692972, + "y": 371.2006578947368 + } + ] + } + ], + "version": "2.2.0" + }, + "9a4901711577b97387f97fe177ce1787": { + "asset": { + "id": "9a4901711577b97387f97fe177ce1787", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.65 + }, + "regions": [ + { + "id": "BwXhSiIVn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 26.3050053945746, + "left": 1050.6206650739828, + "top": 381.727005807977 + }, + "points": [ + { + "x": 1050.6206650739828, + "y": 381.727005807977 + }, + { + "x": 1076.9256704685574, + "y": 381.727005807977 + }, + { + "x": 1076.9256704685574, + "y": 433.3059371145148 + }, + { + "x": 1050.6206650739828, + "y": 433.3059371145148 + } + ] + }, + { + "id": "yO5PM774F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 59.97533908754624, + "left": 916.9913686806412, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 916.9913686806412, + "y": 363.8322529039885 + }, + { + "x": 976.9667077681875, + "y": 363.8322529039885 + }, + { + "x": 976.9667077681875, + "y": 419.62174265008224 + }, + { + "x": 916.9913686806412, + "y": 419.62174265008224 + } + ] + }, + { + "id": "meTEV37s1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 18.939580764488287, + "left": 820.1890991060419, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 820.1890991060419, + "y": 365.93753212376646 + }, + { + "x": 839.1286798705303, + "y": 365.93753212376646 + }, + { + "x": 839.1286798705303, + "y": 405.9375 + }, + { + "x": 820.1890991060419, + "y": 405.9375 + } + ] + }, + { + "id": "vO58eBQI6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 42.08789303329223, + "left": 710.7604423551171, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 710.7604423551171, + "y": 350.14805843955594 + }, + { + "x": 752.8483353884094, + "y": 350.14805843955594 + }, + { + "x": 752.8483353884094, + "y": 392.25330553556745 + }, + { + "x": 710.7604423551171, + "y": 392.25330553556745 + } + ] + }, + { + "id": "3ee1631io", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 27.357140104808877, + "left": 612.9059417385944, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 612.9059417385944, + "y": 356.46384791324016 + }, + { + "x": 640.2630818434033, + "y": 356.46384791324016 + }, + { + "x": 640.2630818434033, + "y": 391.2006900185033 + }, + { + "x": 612.9059417385944, + "y": 391.2006900185033 + } + ] + }, + { + "id": "kOWtCDn18", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 31.56596794081381, + "left": 541.3563501849568, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 541.3563501849568, + "y": 346.9901637027138 + }, + { + "x": 572.9223181257706, + "y": 346.9901637027138 + }, + { + "x": 572.9223181257706, + "y": 389.0954107987253 + }, + { + "x": 541.3563501849568, + "y": 389.0954107987253 + } + ] + }, + { + "id": "NUJZGCVRT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 38.93134440505549, + "left": 401.4139083692972, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 401.4139083692972, + "y": 346.9901637027138 + }, + { + "x": 440.3452527743527, + "y": 346.9901637027138 + }, + { + "x": 440.3452527743527, + "y": 383.83223684210526 + }, + { + "x": 401.4139083692972, + "y": 383.83223684210526 + } + ] + } + ], + "version": "2.2.0" + }, + "5ad5497d87123c2be1c49da2c5e4db4f": { + "asset": { + "id": "5ad5497d87123c2be1c49da2c5e4db4f", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.5 + }, + "regions": [ + { + "id": "u1pUZdnyk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 37.879161528976574, + "left": 1039.0465089395807, + "top": 381.727005807977 + }, + "points": [ + { + "x": 1039.0465089395807, + "y": 381.727005807977 + }, + { + "x": 1076.9256704685574, + "y": 381.727005807977 + }, + { + "x": 1076.9256704685574, + "y": 435.41121633429276 + }, + { + "x": 1039.0465089395807, + "y": 435.41121633429276 + } + ] + }, + { + "id": "ZboXOJXtH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 24.20063964241677, + "left": 932.774352651048, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 932.774352651048, + "y": 364.88486842105266 + }, + { + "x": 956.9749922934649, + "y": 364.88486842105266 + }, + { + "x": 956.9749922934649, + "y": 423.8322529039885 + }, + { + "x": 932.774352651048, + "y": 423.8322529039885 + } + ] + }, + { + "id": "glrer8OKF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 41.035758323057955, + "left": 804.406115135635, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 804.406115135635, + "y": 354.3585686934622 + }, + { + "x": 845.441873458693, + "y": 354.3585686934622 + }, + { + "x": 845.441873458693, + "y": 416.46384791324016 + }, + { + "x": 804.406115135635, + "y": 416.46384791324016 + } + ] + }, + { + "id": "exMQ6EPcs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 39.9835272811344, + "left": 700.2384209309495, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 700.2384209309495, + "y": 349.09539473684214 + }, + { + "x": 740.2219482120838, + "y": 349.09539473684214 + }, + { + "x": 740.2219482120838, + "y": 408.04277921977797 + }, + { + "x": 700.2384209309495, + "y": 408.04277921977797 + } + ] + }, + { + "id": "gvUMpC9GT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 32.61819898273736, + "left": 599.2273235203453, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 356.46384791324016 + }, + { + "x": 631.8455225030826, + "y": 356.46384791324016 + }, + { + "x": 631.8455225030826, + "y": 400.67437422902964 + }, + { + "x": 599.2273235203453, + "y": 400.67437422902964 + } + ] + }, + { + "id": "Ma8WEF4Ur", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 38.93129623921085, + "left": 533.9910218865598, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 331.2006900185033 + }, + { + "x": 572.9223181257706, + "y": 331.2006900185033 + }, + { + "x": 572.9223181257706, + "y": 384.88490054481906 + }, + { + "x": 533.9910218865598, + "y": 384.88490054481906 + } + ] + }, + { + "id": "LkD7WzU22", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 41.035758323057955, + "left": 389.8397040690506, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 389.8397040690506, + "y": 338.56909500925167 + }, + { + "x": 430.8754623921085, + "y": 338.56909500925167 + }, + { + "x": 430.8754623921085, + "y": 398.56909500925167 + }, + { + "x": 389.8397040690506, + "y": 398.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "d43f437fe5cf32cfddcdf8539a9270d0": { + "asset": { + "id": "d43f437fe5cf32cfddcdf8539a9270d0", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.35 + }, + "regions": [ + { + "id": "Bvrh2P5sc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 37.879161528976574, + "left": 1035.8899121454995, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 1035.8899121454995, + "y": 384.88490054481906 + }, + { + "x": 1073.769073674476, + "y": 384.88490054481906 + }, + { + "x": 1073.769073674476, + "y": 436.46383185135693 + }, + { + "x": 1035.8899121454995, + "y": 436.46383185135693 + } + ] + }, + { + "id": "TzsO19lMb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 37.879161528976574, + "left": 923.3045622688039, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 923.3045622688039, + "y": 375.41121633429276 + }, + { + "x": 961.1837237977805, + "y": 375.41121633429276 + }, + { + "x": 961.1837237977805, + "y": 424.88486842105266 + }, + { + "x": 923.3045622688039, + "y": 424.88486842105266 + } + ] + }, + { + "id": "G0ll2wHys", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 41.035758323057955, + "left": 800.1972872996301, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 360.6743581671464 + }, + { + "x": 841.233045622688, + "y": 360.6743581671464 + }, + { + "x": 841.233045622688, + "y": 420.6743581671464 + }, + { + "x": 800.1972872996301, + "y": 420.6743581671464 + } + ] + }, + { + "id": "OoCboL3LB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 35.77479577681874, + "left": 700.2384209309495, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 700.2384209309495, + "y": 356.46384791324016 + }, + { + "x": 736.0132167077682, + "y": 356.46384791324016 + }, + { + "x": 736.0132167077682, + "y": 413.305953176398 + }, + { + "x": 700.2384209309495, + "y": 413.305953176398 + } + ] + }, + { + "id": "7uNOUO3i1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 43.14012407521578, + "left": 602.3839203144266, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 602.3839203144266, + "y": 355.4111842105263 + }, + { + "x": 645.5240443896424, + "y": 355.4111842105263 + }, + { + "x": 645.5240443896424, + "y": 397.5164794921875 + }, + { + "x": 602.3839203144266, + "y": 397.5164794921875 + } + ] + }, + { + "id": "b7uKgsaAV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 33.67043002466091, + "left": 531.8865598027127, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 531.8865598027127, + "y": 351.20067395662005 + }, + { + "x": 565.5569898273736, + "y": 351.20067395662005 + }, + { + "x": 565.5569898273736, + "y": 390.1480263157895 + }, + { + "x": 531.8865598027127, + "y": 390.1480263157895 + } + ] + }, + { + "id": "XEwKHfc4m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 37.879161528976574, + "left": 390.8919351109741, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 390.8919351109741, + "y": 352.2532894736842 + }, + { + "x": 428.77109663995066, + "y": 352.2532894736842 + }, + { + "x": 428.77109663995066, + "y": 390.1480263157895 + }, + { + "x": 390.8919351109741, + "y": 390.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "78e58c1164e14ec11548b18ac435f179": { + "asset": { + "id": "78e58c1164e14ec11548b18ac435f179", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.2 + }, + "regions": [ + { + "id": "nXfJnmftq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 34.722564734895194, + "left": 1035.8899121454995, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 1035.8899121454995, + "y": 385.93751606188323 + }, + { + "x": 1070.6124768803945, + "y": 385.93751606188323 + }, + { + "x": 1070.6124768803945, + "y": 445.93751606188323 + }, + { + "x": 1035.8899121454995, + "y": 445.93751606188323 + } + ] + }, + { + "id": "CQ52lREmX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 50.5055487053021, + "left": 906.4694435881628, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 906.4694435881628, + "y": 373.3059371145148 + }, + { + "x": 956.9749922934649, + "y": 373.3059371145148 + }, + { + "x": 956.9749922934649, + "y": 441.727005807977 + }, + { + "x": 906.4694435881628, + "y": 441.727005807977 + } + ] + }, + { + "id": "z7j-3T3xP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 30.513833230579532, + "left": 800.1972872996301, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 365.93753212376646 + }, + { + "x": 830.7111205302097, + "y": 365.93753212376646 + }, + { + "x": 830.7111205302097, + "y": 419.62174265008224 + }, + { + "x": 800.1972872996301, + "y": 419.62174265008224 + } + ] + }, + { + "id": "6spQP3QiT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 26.304909062885326, + "left": 704.4472487669544, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 704.4472487669544, + "y": 361.7269736842105 + }, + { + "x": 730.7521578298397, + "y": 361.7269736842105 + }, + { + "x": 730.7521578298397, + "y": 403.8322689658717 + }, + { + "x": 704.4472487669544, + "y": 403.8322689658717 + } + ] + }, + { + "id": "pjDpY2e6L", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 31.56596794081381, + "left": 601.3316892725031, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 601.3316892725031, + "y": 356.46384791324016 + }, + { + "x": 632.8976572133168, + "y": 356.46384791324016 + }, + { + "x": 632.8976572133168, + "y": 404.8848844829359 + }, + { + "x": 601.3316892725031, + "y": 404.8848844829359 + } + ] + }, + { + "id": "mC68l6XTN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 21.043946516646116, + "left": 540.3042154747226, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 344.8848844829359 + }, + { + "x": 561.3481619913687, + "y": 344.8848844829359 + }, + { + "x": 561.3481619913687, + "y": 386.9901315789474 + }, + { + "x": 540.3042154747226, + "y": 386.9901315789474 + } + ] + }, + { + "id": "05mjqLDXt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 39.9835272811344, + "left": 384.57874152281136, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 384.57874152281136, + "y": 334.3585847553454 + }, + { + "x": 424.56226880394576, + "y": 334.3585847553454 + }, + { + "x": 424.56226880394576, + "y": 400.67437422902964 + }, + { + "x": 384.57874152281136, + "y": 400.67437422902964 + } + ] + } + ], + "version": "2.2.0" + }, + "d20287bdf7ea52d3d70c1b240daf7680": { + "asset": { + "id": "d20287bdf7ea52d3d70c1b240daf7680", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=35.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=35.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 35.05 + }, + "regions": [ + { + "id": "ez7dI0uJf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 38.93129623921085, + "left": 1026.4201217632553, + "top": 405.9375 + }, + "points": [ + { + "x": 1026.4201217632553, + "y": 405.9375 + }, + { + "x": 1065.351418002466, + "y": 405.9375 + }, + { + "x": 1065.351418002466, + "y": 450.1480263157895 + }, + { + "x": 1026.4201217632553, + "y": 450.1480263157895 + } + ] + }, + { + "id": "MOj_i_XJl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 41.035758323057955, + "left": 908.5738093403206, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 908.5738093403206, + "y": 389.0954107987253 + }, + { + "x": 949.6095676633786, + "y": 389.0954107987253 + }, + { + "x": 949.6095676633786, + "y": 430.1480423776727 + }, + { + "x": 908.5738093403206, + "y": 430.1480423776727 + } + ] + }, + { + "id": "KJ5EfsHjA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 44.192355117139336, + "left": 798.0929215474723, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 798.0929215474723, + "y": 371.2006578947368 + }, + { + "x": 842.2852766646116, + "y": 371.2006578947368 + }, + { + "x": 842.2852766646116, + "y": 425.93753212376646 + }, + { + "x": 798.0929215474723, + "y": 425.93753212376646 + } + ] + }, + { + "id": "6dMoKpDhn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 38.93139257090012, + "left": 690.7686305487053, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 690.7686305487053, + "y": 358.56907894736844 + }, + { + "x": 729.7000231196055, + "y": 358.56907894736844 + }, + { + "x": 729.7000231196055, + "y": 405.9375 + }, + { + "x": 690.7686305487053, + "y": 405.9375 + } + ] + }, + { + "id": "PN5GnUqPU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 45.244586159062884, + "left": 591.861898890259, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 591.861898890259, + "y": 356.46384791324016 + }, + { + "x": 637.1064850493218, + "y": 356.46384791324016 + }, + { + "x": 637.1064850493218, + "y": 399.6217105263158 + }, + { + "x": 591.861898890259, + "y": 399.6217105263158 + } + ] + }, + { + "id": "v-kTqjV-I", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 33.67033369297164, + "left": 523.4690004623922, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 523.4690004623922, + "y": 342.7796052631579 + }, + { + "x": 557.1393341553637, + "y": 342.7796052631579 + }, + { + "x": 557.1393341553637, + "y": 398.56909500925167 + }, + { + "x": 523.4690004623922, + "y": 398.56909500925167 + } + ] + }, + { + "id": "9iJurrWuK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 30.513785064734897, + "left": 376.16113401664614, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 376.16113401664614, + "y": 357.51646343030427 + }, + { + "x": 406.674919081381, + "y": 357.51646343030427 + }, + { + "x": 406.674919081381, + "y": 398.56909500925167 + }, + { + "x": 376.16113401664614, + "y": 398.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "3870f3d1b1eb039eabd88b0b86114576": { + "asset": { + "id": "3870f3d1b1eb039eabd88b0b86114576", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34.9 + }, + "regions": [ + { + "id": "BzLD3deTt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 26.304909062885326, + "left": 1026.4201217632553, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 1026.4201217632553, + "y": 409.09539473684214 + }, + { + "x": 1052.7250308261405, + "y": 409.09539473684214 + }, + { + "x": 1052.7250308261405, + "y": 462.7796052631579 + }, + { + "x": 1026.4201217632553, + "y": 462.7796052631579 + } + ] + }, + { + "id": "apRPEf5jk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 48.401182953144264, + "left": 904.3649815043157, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 904.3649815043157, + "y": 397.5164794921875 + }, + { + "x": 952.7661644574599, + "y": 397.5164794921875 + }, + { + "x": 952.7661644574599, + "y": 448.0427952816612 + }, + { + "x": 904.3649815043157, + "y": 448.0427952816612 + } + ] + }, + { + "id": "9zmUTf0MP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 25.25277435265105, + "left": 794.9363247533909, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 794.9363247533909, + "y": 384.88490054481906 + }, + { + "x": 820.1890991060419, + "y": 384.88490054481906 + }, + { + "x": 820.1890991060419, + "y": 432.2533215974507 + }, + { + "x": 794.9363247533909, + "y": 432.2533215974507 + } + ] + }, + { + "id": "oGUv_7Rnz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 33.67033369297164, + "left": 684.4554369605426, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 684.4554369605426, + "y": 371.2006578947368 + }, + { + "x": 718.1257706535142, + "y": 371.2006578947368 + }, + { + "x": 718.1257706535142, + "y": 423.8322529039885 + }, + { + "x": 684.4554369605426, + "y": 423.8322529039885 + } + ] + }, + { + "id": "usO3l4KrF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 38.93139257090012, + "left": 586.6009363440197, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 363.8322529039885 + }, + { + "x": 625.5323289149198, + "y": 363.8322529039885 + }, + { + "x": 625.5323289149198, + "y": 412.2532894736842 + }, + { + "x": 586.6009363440197, + "y": 412.2532894736842 + } + ] + }, + { + "id": "TDPWKR25y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 19.99181180641184, + "left": 528.7299630086313, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 528.7299630086313, + "y": 355.4111842105263 + }, + { + "x": 548.7217748150432, + "y": 355.4111842105263 + }, + { + "x": 548.7217748150432, + "y": 400.67437422902964 + }, + { + "x": 528.7299630086313, + "y": 400.67437422902964 + } + ] + }, + { + "id": "z4iyIajsw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 26.304957228729965, + "left": 373.00453722256475, + "top": 353.305953176398 + }, + "points": [ + { + "x": 373.00453722256475, + "y": 353.305953176398 + }, + { + "x": 399.3094944512947, + "y": 353.305953176398 + }, + { + "x": 399.3094944512947, + "y": 388.0427952816612 + }, + { + "x": 373.00453722256475, + "y": 388.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "9f4adac4dccf88b7c49b79575cf6f4e7": { + "asset": { + "id": "9f4adac4dccf88b7c49b79575cf6f4e7", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34.75 + }, + "regions": [ + { + "id": "IXhggBYZH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 36.82693048705302, + "left": 1007.480540998767, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 1007.480540998767, + "y": 416.46384791324016 + }, + { + "x": 1044.30747148582, + "y": 416.46384791324016 + }, + { + "x": 1044.30747148582, + "y": 468.04277921977797 + }, + { + "x": 1007.480540998767, + "y": 468.04277921977797 + } + ] + }, + { + "id": "8uZO6dVqV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10523103412829, + "width": 43.14022040690506, + "left": 898.0517879161529, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 898.0517879161529, + "y": 397.5164794921875 + }, + { + "x": 941.192008323058, + "y": 397.5164794921875 + }, + { + "x": 941.192008323058, + "y": 459.6217105263158 + }, + { + "x": 898.0517879161529, + "y": 459.6217105263158 + } + ] + }, + { + "id": "OdGChgJ9o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 36.82693048705302, + "left": 773.8923782367448, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 773.8923782367448, + "y": 378.5691110711349 + }, + { + "x": 810.7193087237978, + "y": 378.5691110711349 + }, + { + "x": 810.7193087237978, + "y": 441.727005807977 + }, + { + "x": 773.8923782367448, + "y": 441.727005807977 + } + ] + }, + { + "id": "eNdDqwwPH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 17.887349722564736, + "left": 691.8208615906289, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 691.8208615906289, + "y": 364.88486842105266 + }, + { + "x": 709.7082113131936, + "y": 364.88486842105266 + }, + { + "x": 709.7082113131936, + "y": 419.62174265008224 + }, + { + "x": 691.8208615906289, + "y": 419.62174265008224 + } + ] + }, + { + "id": "1p8gRi_b-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 23.148312268803945, + "left": 584.4965705918619, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 584.4965705918619, + "y": 364.88486842105266 + }, + { + "x": 607.6448828606658, + "y": 364.88486842105266 + }, + { + "x": 607.6448828606658, + "y": 416.46384791324016 + }, + { + "x": 584.4965705918619, + "y": 416.46384791324016 + } + ] + }, + { + "id": "GvzNy7MnX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 41.035758323057955, + "left": 503.4771886559803, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 503.4771886559803, + "y": 350.14805843955594 + }, + { + "x": 544.5129469790382, + "y": 350.14805843955594 + }, + { + "x": 544.5129469790382, + "y": 393.30592105263156 + }, + { + "x": 503.4771886559803, + "y": 393.30592105263156 + } + ] + } + ], + "version": "2.2.0" + }, + "5d72d0b72a9096213b60db5f194c1928": { + "asset": { + "id": "5d72d0b72a9096213b60db5f194c1928", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34.6 + }, + "regions": [ + { + "id": "3mWeeuOZP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 47.348951911220716, + "left": 1001.1673474106042, + "top": 413.305953176398 + }, + "points": [ + { + "x": 1001.1673474106042, + "y": 413.305953176398 + }, + { + "x": 1048.5162993218248, + "y": 413.305953176398 + }, + { + "x": 1048.5162993218248, + "y": 468.04277921977797 + }, + { + "x": 1001.1673474106042, + "y": 468.04277921977797 + } + ] + }, + { + "id": "SeF_mjztN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 44.192355117139336, + "left": 895.947422163995, + "top": 413.305953176398 + }, + "points": [ + { + "x": 895.947422163995, + "y": 413.305953176398 + }, + { + "x": 940.1397772811345, + "y": 413.305953176398 + }, + { + "x": 940.1397772811345, + "y": 471.20067395662005 + }, + { + "x": 895.947422163995, + "y": 471.20067395662005 + } + ] + }, + { + "id": "dEAKMsX20", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 41.035758323057955, + "left": 772.8401471948213, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 772.8401471948213, + "y": 392.25330553556745 + }, + { + "x": 813.8759055178791, + "y": 392.25330553556745 + }, + { + "x": 813.8759055178791, + "y": 438.5691110711349 + }, + { + "x": 772.8401471948213, + "y": 438.5691110711349 + } + ] + }, + { + "id": "c-V2yjT_i", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 31.56596794081381, + "left": 678.1422433723798, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 678.1422433723798, + "y": 388.0427952816612 + }, + { + "x": 709.7082113131936, + "y": 388.0427952816612 + }, + { + "x": 709.7082113131936, + "y": 428.04276315789474 + }, + { + "x": 678.1422433723798, + "y": 428.04276315789474 + } + ] + }, + { + "id": "OLpyxyv4c", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 45.244586159062884, + "left": 580.2877427558569, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 580.2877427558569, + "y": 361.7269736842105 + }, + { + "x": 625.5323289149198, + "y": 361.7269736842105 + }, + { + "x": 625.5323289149198, + "y": 417.51646343030427 + }, + { + "x": 580.2877427558569, + "y": 417.51646343030427 + } + ] + }, + { + "id": "PVSGHayX-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 32.61819898273736, + "left": 507.6860164919852, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 507.6860164919852, + "y": 362.7796373869243 + }, + { + "x": 540.3042154747226, + "y": 362.7796373869243 + }, + { + "x": 540.3042154747226, + "y": 408.04277921977797 + }, + { + "x": 507.6860164919852, + "y": 408.04277921977797 + } + ] + }, + { + "id": "esyWFx-Uc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 28.40937114673243, + "left": 360.3781500462392, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 360.3781500462392, + "y": 357.51646343030427 + }, + { + "x": 388.78752119297167, + "y": 357.51646343030427 + }, + { + "x": 388.78752119297167, + "y": 399.6217105263158 + }, + { + "x": 360.3781500462392, + "y": 399.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "b665acf95cc61df74e46ae10d30ee2bd": { + "asset": { + "id": "b665acf95cc61df74e46ae10d30ee2bd", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34.45 + }, + "regions": [ + { + "id": "yEHV4Zxyu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 27.35723643649815, + "left": 999.062885326757, + "top": 428.04276315789474 + }, + "points": [ + { + "x": 999.062885326757, + "y": 428.04276315789474 + }, + { + "x": 1026.4201217632553, + "y": 428.04276315789474 + }, + { + "x": 1026.4201217632553, + "y": 471.20067395662005 + }, + { + "x": 999.062885326757, + "y": 471.20067395662005 + } + ] + }, + { + "id": "A5ICh37Ex", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 37.879161528976574, + "left": 881.2166692355117, + "top": 414.3585686934622 + }, + "points": [ + { + "x": 881.2166692355117, + "y": 414.3585686934622 + }, + { + "x": 919.0958307644883, + "y": 414.3585686934622 + }, + { + "x": 919.0958307644883, + "y": 462.7796052631579 + }, + { + "x": 881.2166692355117, + "y": 462.7796052631579 + } + ] + }, + { + "id": "mimP9Ehkg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 35.77469944512947, + "left": 764.4225878545006, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 764.4225878545006, + "y": 394.3585847553454 + }, + { + "x": 800.1972872996301, + "y": 394.3585847553454 + }, + { + "x": 800.1972872996301, + "y": 438.5691110711349 + }, + { + "x": 764.4225878545006, + "y": 438.5691110711349 + } + ] + }, + { + "id": "E9Z5M9YYe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 25.25277435265105, + "left": 676.0378776202219, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 676.0378776202219, + "y": 378.5691110711349 + }, + { + "x": 701.290651972873, + "y": 378.5691110711349 + }, + { + "x": 701.290651972873, + "y": 426.99014764083057 + }, + { + "x": 676.0378776202219, + "y": 426.99014764083057 + } + ] + }, + { + "id": "10XP6KfMn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 34.722564734895194, + "left": 562.4003930332923, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 562.4003930332923, + "y": 366.99014764083057 + }, + { + "x": 597.1229577681875, + "y": 366.99014764083057 + }, + { + "x": 597.1229577681875, + "y": 418.56907894736844 + }, + { + "x": 562.4003930332923, + "y": 418.56907894736844 + } + ] + }, + { + "id": "4dM758pR1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 32.61810265104809, + "left": 502.425053945746, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 502.425053945746, + "y": 351.20067395662005 + }, + { + "x": 535.0431565967941, + "y": 351.20067395662005 + }, + { + "x": 535.0431565967941, + "y": 406.9901637027138 + }, + { + "x": 502.425053945746, + "y": 406.9901637027138 + } + ] + }, + { + "id": "kfBgfuAPZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 34.722564734895194, + "left": 361.43033292231814, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 361.43033292231814, + "y": 354.3585686934622 + }, + { + "x": 396.1528976572133, + "y": 354.3585686934622 + }, + { + "x": 396.1528976572133, + "y": 396.4638157894737 + }, + { + "x": 361.43033292231814, + "y": 396.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "494116b0346ca1d2b19e9b1fff010d76": { + "asset": { + "id": "494116b0346ca1d2b19e9b1fff010d76", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34.3 + }, + "regions": [ + { + "id": "WxaxzufY2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 45.244586159062884, + "left": 973.810110974106, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 973.810110974106, + "y": 422.7796373869243 + }, + { + "x": 1019.0546971331689, + "y": 422.7796373869243 + }, + { + "x": 1019.0546971331689, + "y": 473.305953176398 + }, + { + "x": 973.810110974106, + "y": 473.305953176398 + } + ] + }, + { + "id": "qStQ_yXzB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 47.348951911220716, + "left": 868.5902820591862, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 868.5902820591862, + "y": 409.09539473684214 + }, + { + "x": 915.9392339704069, + "y": 409.09539473684214 + }, + { + "x": 915.9392339704069, + "y": 452.25330553556745 + }, + { + "x": 868.5902820591862, + "y": 452.25330553556745 + } + ] + }, + { + "id": "Sh9t5RJC5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 37.879161528976574, + "left": 756.0049321824907, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 756.0049321824907, + "y": 395.41120027240953 + }, + { + "x": 793.8840937114674, + "y": 395.41120027240953 + }, + { + "x": 793.8840937114674, + "y": 442.77962132504115 + }, + { + "x": 756.0049321824907, + "y": 442.77962132504115 + } + ] + }, + { + "id": "6zbs5rDgL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 34.722564734895194, + "left": 669.7246840320591, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 669.7246840320591, + "y": 384.88490054481906 + }, + { + "x": 704.4472487669544, + "y": 384.88490054481906 + }, + { + "x": 704.4472487669544, + "y": 432.2533215974507 + }, + { + "x": 669.7246840320591, + "y": 432.2533215974507 + } + ] + }, + { + "id": "vwivQSzXq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 41.035758323057955, + "left": 555.0349684032059, + "top": 369.09542686060854 + }, + "points": [ + { + "x": 555.0349684032059, + "y": 369.09542686060854 + }, + { + "x": 596.0707267262638, + "y": 369.09542686060854 + }, + { + "x": 596.0707267262638, + "y": 417.51646343030427 + }, + { + "x": 555.0349684032059, + "y": 417.51646343030427 + } + ] + }, + { + "id": "JIXbXA6mm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 41.035758323057955, + "left": 486.6420699753391, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 357.51646343030427 + }, + { + "x": 527.677828298397, + "y": 357.51646343030427 + }, + { + "x": 527.677828298397, + "y": 405.9375 + }, + { + "x": 486.6420699753391, + "y": 405.9375 + } + ] + }, + { + "id": "vWjezqUrP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 29.461554022811345, + "left": 349.8561767879162, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 349.8561767879162, + "y": 364.88486842105266 + }, + { + "x": 379.3177308107275, + "y": 364.88486842105266 + }, + { + "x": 379.3177308107275, + "y": 406.9901637027138 + }, + { + "x": 349.8561767879162, + "y": 406.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "61b37d4455098e468ef0090eaf35ebda": { + "asset": { + "id": "61b37d4455098e468ef0090eaf35ebda", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34.15 + }, + "regions": [ + { + "id": "ymOXdoj_z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 44.192355117139336, + "left": 340.386386405672, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 340.386386405672, + "y": 356.46384791324016 + }, + { + "x": 384.57874152281136, + "y": 356.46384791324016 + }, + { + "x": 384.57874152281136, + "y": 400.67437422902964 + }, + { + "x": 340.386386405672, + "y": 400.67437422902964 + } + ] + }, + { + "id": "xU88zHNKN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 34.722564734895194, + "left": 484.537607891492, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 484.537607891492, + "y": 361.7269736842105 + }, + { + "x": 519.2601726263872, + "y": 361.7269736842105 + }, + { + "x": 519.2601726263872, + "y": 402.7796052631579 + }, + { + "x": 484.537607891492, + "y": 402.7796052631579 + } + ] + }, + { + "id": "8G2eYoyU4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 42.0879893649815, + "left": 551.8783716091245, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 551.8783716091245, + "y": 371.2006578947368 + }, + { + "x": 593.966360974106, + "y": 371.2006578947368 + }, + { + "x": 593.966360974106, + "y": 413.305953176398 + }, + { + "x": 551.8783716091245, + "y": 413.305953176398 + } + ] + }, + { + "id": "ExwCEjIUg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 33.67033369297164, + "left": 747.5873728421702, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 747.5873728421702, + "y": 401.72698974609375 + }, + { + "x": 781.2577065351418, + "y": 401.72698974609375 + }, + { + "x": 781.2577065351418, + "y": 444.88490054481906 + }, + { + "x": 747.5873728421702, + "y": 444.88490054481906 + } + ] + }, + { + "id": "7ISIC_Fmd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 25.25277435265105, + "left": 654.9938347718866, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 654.9938347718866, + "y": 391.2006900185033 + }, + { + "x": 680.2466091245376, + "y": 391.2006900185033 + }, + { + "x": 680.2466091245376, + "y": 420.6743581671464 + }, + { + "x": 654.9938347718866, + "y": 420.6743581671464 + } + ] + }, + { + "id": "MT8PPHPu4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 37.879161528976574, + "left": 866.4858199753392, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 866.4858199753392, + "y": 410.14805843955594 + }, + { + "x": 904.3649815043157, + "y": 410.14805843955594 + }, + { + "x": 904.3649815043157, + "y": 462.7796052631579 + }, + { + "x": 866.4858199753392, + "y": 462.7796052631579 + } + ] + }, + { + "id": "uNcC5zEwd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 31.56596794081381, + "left": 974.8623420160296, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 974.8623420160296, + "y": 422.7796373869243 + }, + { + "x": 1006.4283099568435, + "y": 422.7796373869243 + }, + { + "x": 1006.4283099568435, + "y": 471.20067395662005 + }, + { + "x": 974.8623420160296, + "y": 471.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "27fdb12f4ae9040f61e3894b5d1f028b": { + "asset": { + "id": "27fdb12f4ae9040f61e3894b5d1f028b", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=34.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=34", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 34 + }, + "regions": [ + { + "id": "4EBLvvjm_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 27.35723643649815, + "left": 961.1837237977805, + "top": 421.7269736842105 + }, + "points": [ + { + "x": 961.1837237977805, + "y": 421.7269736842105 + }, + { + "x": 988.5409602342787, + "y": 421.7269736842105 + }, + { + "x": 988.5409602342787, + "y": 473.305953176398 + }, + { + "x": 961.1837237977805, + "y": 473.305953176398 + } + ] + }, + { + "id": "P438xl0LM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 37.879161528976574, + "left": 860.1726263871764, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 860.1726263871764, + "y": 410.14805843955594 + }, + { + "x": 898.0517879161529, + "y": 410.14805843955594 + }, + { + "x": 898.0517879161529, + "y": 460.67437422902964 + }, + { + "x": 860.1726263871764, + "y": 460.67437422902964 + } + ] + }, + { + "id": "KY-_ZjSlv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 38.93139257090012, + "left": 741.2741792540074, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 391.2006900185033 + }, + { + "x": 780.2055718249076, + "y": 391.2006900185033 + }, + { + "x": 780.2055718249076, + "y": 442.77962132504115 + }, + { + "x": 741.2741792540074, + "y": 442.77962132504115 + } + ] + }, + { + "id": "OspYBLI_3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 28.40937114673243, + "left": 643.4196786374846, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 384.88490054481906 + }, + { + "x": 671.829049784217, + "y": 384.88490054481906 + }, + { + "x": 671.829049784217, + "y": 428.04276315789474 + }, + { + "x": 643.4196786374846, + "y": 428.04276315789474 + } + ] + }, + { + "id": "FpNaqpgxK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 32.61810265104809, + "left": 546.6174090628854, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 546.6174090628854, + "y": 371.2006578947368 + }, + { + "x": 579.2355117139334, + "y": 371.2006578947368 + }, + { + "x": 579.2355117139334, + "y": 409.09539473684214 + }, + { + "x": 546.6174090628854, + "y": 409.09539473684214 + } + ] + }, + { + "id": "F5X0cIJPt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 32.61810265104809, + "left": 480.3288763871763, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 480.3288763871763, + "y": 360.6743581671464 + }, + { + "x": 512.9469790382244, + "y": 360.6743581671464 + }, + { + "x": 512.9469790382244, + "y": 403.8322689658717 + }, + { + "x": 480.3288763871763, + "y": 403.8322689658717 + } + ] + }, + { + "id": "7n0IloDiB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 22.096177558569668, + "left": 335.1253756935882, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 335.1253756935882, + "y": 350.14805843955594 + }, + { + "x": 357.22155325215783, + "y": 350.14805843955594 + }, + { + "x": 357.22155325215783, + "y": 393.30592105263156 + }, + { + "x": 335.1253756935882, + "y": 393.30592105263156 + } + ] + } + ], + "version": "2.2.0" + }, + "83ffc716561e81db18a5a85756d75d69": { + "asset": { + "id": "83ffc716561e81db18a5a85756d75d69", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.85 + }, + "regions": [ + { + "id": "BJhXaKORa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 18.939580764488287, + "left": 336.1775585696671, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 336.1775585696671, + "y": 351.20067395662005 + }, + { + "x": 355.11713933415535, + "y": 351.20067395662005 + }, + { + "x": 355.11713933415535, + "y": 394.3585847553454 + }, + { + "x": 336.1775585696671, + "y": 394.3585847553454 + } + ] + }, + { + "id": "4ZUZyN7pJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 38.93129623921085, + "left": 467.7024892108508, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 467.7024892108508, + "y": 354.3585686934622 + }, + { + "x": 506.6337854500617, + "y": 354.3585686934622 + }, + { + "x": 506.6337854500617, + "y": 402.7796052631579 + }, + { + "x": 467.7024892108508, + "y": 402.7796052631579 + } + ] + }, + { + "id": "S_PqpEPLB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 31.56596794081381, + "left": 544.5129469790382, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 544.5129469790382, + "y": 372.2533215974507 + }, + { + "x": 576.0789149198521, + "y": 372.2533215974507 + }, + { + "x": 576.0789149198521, + "y": 415.4111842105263 + }, + { + "x": 544.5129469790382, + "y": 415.4111842105263 + } + ] + }, + { + "id": "YCfiT5rek", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 37.879161528976574, + "left": 958.0271270036991, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 958.0271270036991, + "y": 422.7796373869243 + }, + { + "x": 995.9062885326757, + "y": 422.7796373869243 + }, + { + "x": 995.9062885326757, + "y": 466.9901637027138 + }, + { + "x": 958.0271270036991, + "y": 466.9901637027138 + } + ] + }, + { + "id": "XZs1iwCdS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 30.513833230579532, + "left": 857.0160295930949, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 857.0160295930949, + "y": 406.9901637027138 + }, + { + "x": 887.5298628236745, + "y": 406.9901637027138 + }, + { + "x": 887.5298628236745, + "y": 453.30592105263156 + }, + { + "x": 857.0160295930949, + "y": 453.30592105263156 + } + ] + }, + { + "id": "zpXrIYb-W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 36.82693048705302, + "left": 726.543426325524, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 726.543426325524, + "y": 386.9901315789474 + }, + { + "x": 763.370356812577, + "y": 386.9901315789474 + }, + { + "x": 763.370356812577, + "y": 440.6743421052632 + }, + { + "x": 726.543426325524, + "y": 440.6743421052632 + } + ] + }, + { + "id": "XiL6ZDBW3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 19.99181180641184, + "left": 646.5762754315659, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 646.5762754315659, + "y": 374.35855263157896 + }, + { + "x": 666.5680872379778, + "y": 374.35855263157896 + }, + { + "x": 666.5680872379778, + "y": 429.09542686060854 + }, + { + "x": 646.5762754315659, + "y": 429.09542686060854 + } + ] + } + ], + "version": "2.2.0" + }, + "1a6d682bf2282d81475ff568ea83bd80": { + "asset": { + "id": "1a6d682bf2282d81475ff568ea83bd80", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.8 + }, + "regions": [ + { + "id": "TLyj2qmcM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 27.357188270653513, + "left": 333.0209617755857, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 333.0209617755857, + "y": 361.7269736842105 + }, + { + "x": 360.3781500462392, + "y": 361.7269736842105 + }, + { + "x": 360.3781500462392, + "y": 393.30592105263156 + }, + { + "x": 333.0209617755857, + "y": 393.30592105263156 + } + ] + } + ], + "version": "2.2.0" + }, + "917f2b46001b922c97930e867fe6612c": { + "asset": { + "id": "917f2b46001b922c97930e867fe6612c", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.75 + }, + "regions": [ + { + "id": "IjJkZm9aD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 21.043946516646116, + "left": 330.91659602342787, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 330.91659602342787, + "y": 360.6743581671464 + }, + { + "x": 351.96054254007396, + "y": 360.6743581671464 + }, + { + "x": 351.96054254007396, + "y": 403.8322689658717 + }, + { + "x": 330.91659602342787, + "y": 403.8322689658717 + } + ] + } + ], + "version": "2.2.0" + }, + "e78d9c90aed4ba520bb7ea300977ef60": { + "asset": { + "id": "e78d9c90aed4ba520bb7ea300977ef60", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.65 + }, + "regions": [ + { + "id": "QZjHT11QH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 37.879161528976574, + "left": 958.0271270036991, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 958.0271270036991, + "y": 417.51646343030427 + }, + { + "x": 995.9062885326757, + "y": 417.51646343030427 + }, + { + "x": 995.9062885326757, + "y": 464.8848844829359 + }, + { + "x": 958.0271270036991, + "y": 464.8848844829359 + } + ] + }, + { + "id": "0Vt36wuQ8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 33.67043002466091, + "left": 847.5462392108508, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 406.9901637027138 + }, + { + "x": 881.2166692355117, + "y": 406.9901637027138 + }, + { + "x": 881.2166692355117, + "y": 462.7796052631579 + }, + { + "x": 847.5462392108508, + "y": 462.7796052631579 + } + ] + }, + { + "id": "Ea9Kkp6bm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 32.61810265104809, + "left": 732.8566199136868, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 732.8566199136868, + "y": 391.2006900185033 + }, + { + "x": 765.4747225647349, + "y": 391.2006900185033 + }, + { + "x": 765.4747225647349, + "y": 441.727005807977 + }, + { + "x": 732.8566199136868, + "y": 441.727005807977 + } + ] + }, + { + "id": "CSlcC7tGT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 12.626387176325524, + "left": 642.3674475955611, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 380.6743421052632 + }, + { + "x": 654.9938347718866, + "y": 380.6743421052632 + }, + { + "x": 654.9938347718866, + "y": 419.62174265008224 + }, + { + "x": 642.3674475955611, + "y": 419.62174265008224 + } + ] + }, + { + "id": "s1ojo34We", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 30.513736898890258, + "left": 540.3042154747226, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 374.35855263157896 + }, + { + "x": 570.8179523736128, + "y": 374.35855263157896 + }, + { + "x": 570.8179523736128, + "y": 409.09539473684214 + }, + { + "x": 540.3042154747226, + "y": 409.09539473684214 + } + ] + }, + { + "id": "wqqvTUMc6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 28.40937114673243, + "left": 467.7024892108508, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 467.7024892108508, + "y": 355.4111842105263 + }, + { + "x": 496.1118603575832, + "y": 355.4111842105263 + }, + { + "x": 496.1118603575832, + "y": 400.67437422902964 + }, + { + "x": 467.7024892108508, + "y": 400.67437422902964 + } + ] + }, + { + "id": "rOV2bicfj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 26.304957228729965, + "left": 324.6034024352651, + "top": 353.305953176398 + }, + "points": [ + { + "x": 324.6034024352651, + "y": 353.305953176398 + }, + { + "x": 350.9083596639951, + "y": 353.305953176398 + }, + { + "x": 350.9083596639951, + "y": 384.88490054481906 + }, + { + "x": 324.6034024352651, + "y": 384.88490054481906 + } + ] + } + ], + "version": "2.2.0" + }, + "565c24865a649b2e64448f715f803ed2": { + "asset": { + "id": "565c24865a649b2e64448f715f803ed2", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.45 + }, + "regions": [ + { + "id": "dvrLnrJ7q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 28.40937114673243, + "left": 952.7661644574599, + "top": 415.4111842105263 + }, + "points": [ + { + "x": 952.7661644574599, + "y": 415.4111842105263 + }, + { + "x": 981.1755356041924, + "y": 415.4111842105263 + }, + { + "x": 981.1755356041924, + "y": 465.9375 + }, + { + "x": 952.7661644574599, + "y": 465.9375 + } + ] + }, + { + "id": "RJ_XNlxnk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 42.0879893649815, + "left": 844.3896424167694, + "top": 400.67437422902964 + }, + "points": [ + { + "x": 844.3896424167694, + "y": 400.67437422902964 + }, + { + "x": 886.4776317817509, + "y": 400.67437422902964 + }, + { + "x": 886.4776317817509, + "y": 457.5164794921875 + }, + { + "x": 844.3896424167694, + "y": 457.5164794921875 + } + ] + }, + { + "id": "WlkGYjwRo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 34.722564734895194, + "left": 730.7521578298397, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 730.7521578298397, + "y": 384.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 384.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 438.5691110711349 + }, + { + "x": 730.7521578298397, + "y": 438.5691110711349 + } + ] + }, + { + "id": "osn7BHf03", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 24.200543310727497, + "left": 638.1587160912454, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 378.5691110711349 + }, + { + "x": 662.3592594019728, + "y": 378.5691110711349 + }, + { + "x": 662.3592594019728, + "y": 428.04276315789474 + }, + { + "x": 638.1587160912454, + "y": 428.04276315789474 + } + ] + }, + { + "id": "Wq-lSSX80", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 43.14012407521578, + "left": 521.3646347102343, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 521.3646347102343, + "y": 361.7269736842105 + }, + { + "x": 564.5047587854501, + "y": 361.7269736842105 + }, + { + "x": 564.5047587854501, + "y": 402.7796052631579 + }, + { + "x": 521.3646347102343, + "y": 402.7796052631579 + } + ] + }, + { + "id": "8HURv_cy_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 33.67033369297164, + "left": 466.6502581689273, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 466.6502581689273, + "y": 361.7269736842105 + }, + { + "x": 500.3205918618989, + "y": 361.7269736842105 + }, + { + "x": 500.3205918618989, + "y": 393.30592105263156 + }, + { + "x": 466.6502581689273, + "y": 393.30592105263156 + } + ] + }, + { + "id": "vlWfmqHj6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 36.82693048705302, + "left": 311.97701525893956, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 311.97701525893956, + "y": 338.56909500925167 + }, + { + "x": 348.8039457459926, + "y": 338.56909500925167 + }, + { + "x": 348.8039457459926, + "y": 389.0954107987253 + }, + { + "x": 311.97701525893956, + "y": 389.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "d2cf4b90291d3291b1a9a8f68e9da173": { + "asset": { + "id": "d2cf4b90291d3291b1a9a8f68e9da173", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.25 + }, + "regions": [ + { + "id": "6kCOYYqh-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 31.56596794081381, + "left": 327.7599992293465, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 327.7599992293465, + "y": 336.4638157894737 + }, + { + "x": 359.3259671701603, + "y": 336.4638157894737 + }, + { + "x": 359.3259671701603, + "y": 381.727005807977 + }, + { + "x": 327.7599992293465, + "y": 381.727005807977 + } + ] + }, + { + "id": "mdkG4sZe8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 37.879161528976574, + "left": 466.6502581689273, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 466.6502581689273, + "y": 359.62174265008224 + }, + { + "x": 504.52941969790385, + "y": 359.62174265008224 + }, + { + "x": 504.52941969790385, + "y": 397.5164794921875 + }, + { + "x": 466.6502581689273, + "y": 397.5164794921875 + } + ] + }, + { + "id": "-Jno_-_Yg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 54.714376541307026, + "left": 621.3235010789149, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 621.3235010789149, + "y": 380.6743421052632 + }, + { + "x": 676.0378776202219, + "y": 380.6743421052632 + }, + { + "x": 676.0378776202219, + "y": 421.7269736842105 + }, + { + "x": 621.3235010789149, + "y": 421.7269736842105 + } + ] + }, + { + "id": "EsqPsqZmQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 19.99181180641184, + "left": 538.1997533908755, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 538.1997533908755, + "y": 377.51644736842104 + }, + { + "x": 558.1915651972873, + "y": 377.51644736842104 + }, + { + "x": 558.1915651972873, + "y": 409.09539473684214 + }, + { + "x": 538.1997533908755, + "y": 409.09539473684214 + } + ] + }, + { + "id": "7-Hcd2873", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 37.879161528976574, + "left": 722.3345984895191, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 722.3345984895191, + "y": 384.88490054481906 + }, + { + "x": 760.2137600184957, + "y": 384.88490054481906 + }, + { + "x": 760.2137600184957, + "y": 434.35855263157896 + }, + { + "x": 722.3345984895191, + "y": 434.35855263157896 + } + ] + }, + { + "id": "KEv32-6Q0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 43.14022040690506, + "left": 847.5462392108508, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 404.8848844829359 + }, + { + "x": 890.6864596177559, + "y": 404.8848844829359 + }, + { + "x": 890.6864596177559, + "y": 452.25330553556745 + }, + { + "x": 847.5462392108508, + "y": 452.25330553556745 + } + ] + }, + { + "id": "0fWCkdug0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 34.722564734895194, + "left": 949.6095676633786, + "top": 411.20067395662005 + }, + "points": [ + { + "x": 949.6095676633786, + "y": 411.20067395662005 + }, + { + "x": 984.3321323982738, + "y": 411.20067395662005 + }, + { + "x": 984.3321323982738, + "y": 461.72698974609375 + }, + { + "x": 949.6095676633786, + "y": 461.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "a54f46a36c67b38b1f567d7442d5bb0a": { + "asset": { + "id": "a54f46a36c67b38b1f567d7442d5bb0a", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=33.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=33.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 33.1 + }, + "regions": [ + { + "id": "h_cBEmFkn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 21.043946516646116, + "left": 466.6502581689273, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 466.6502581689273, + "y": 348.04277921977797 + }, + { + "x": 487.69420468557337, + "y": 348.04277921977797 + }, + { + "x": 487.69420468557337, + "y": 394.3585847553454 + }, + { + "x": 466.6502581689273, + "y": 394.3585847553454 + } + ] + }, + { + "id": "i5Z5njN7u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 37.879161528976574, + "left": 533.9910218865598, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 361.7269736842105 + }, + { + "x": 571.8701834155364, + "y": 361.7269736842105 + }, + { + "x": 571.8701834155364, + "y": 405.9375 + }, + { + "x": 533.9910218865598, + "y": 405.9375 + } + ] + }, + { + "id": "tclLwX1Ey", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 34.722564734895194, + "left": 626.5844636251542, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 626.5844636251542, + "y": 368.04276315789474 + }, + { + "x": 661.3070283600493, + "y": 368.04276315789474 + }, + { + "x": 661.3070283600493, + "y": 411.20067395662005 + }, + { + "x": 626.5844636251542, + "y": 411.20067395662005 + } + ] + }, + { + "id": "AZ1tT0pzR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 19.99181180641184, + "left": 730.7521578298397, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 730.7521578298397, + "y": 388.0427952816612 + }, + { + "x": 750.7439696362516, + "y": 388.0427952816612 + }, + { + "x": 750.7439696362516, + "y": 442.77962132504115 + }, + { + "x": 730.7521578298397, + "y": 442.77962132504115 + } + ] + }, + { + "id": "UP22hZAbJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 24.20063964241677, + "left": 847.5462392108508, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 394.3585847553454 + }, + { + "x": 871.7468788532676, + "y": 394.3585847553454 + }, + { + "x": 871.7468788532676, + "y": 445.93751606188323 + }, + { + "x": 847.5462392108508, + "y": 445.93751606188323 + } + ] + }, + { + "id": "jCnxbpyk1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 38.93129623921085, + "left": 944.3486051171393, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 418.56907894736844 + }, + { + "x": 983.2799013563503, + "y": 418.56907894736844 + }, + { + "x": 983.2799013563503, + "y": 464.8848844829359 + }, + { + "x": 944.3486051171393, + "y": 464.8848844829359 + } + ] + } + ], + "version": "2.2.0" + }, + "9e781f920e65c92d35093a6e92bbd8e4": { + "asset": { + "id": "9e781f920e65c92d35093a6e92bbd8e4", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=32.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=32.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 32.9 + }, + "regions": [ + { + "id": "oaYTKamQo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 24.200591476572132, + "left": 458.232650662762, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 458.232650662762, + "y": 336.4638157894737 + }, + { + "x": 482.43324213933414, + "y": 336.4638157894737 + }, + { + "x": 482.43324213933414, + "y": 391.2006900185033 + }, + { + "x": 458.232650662762, + "y": 391.2006900185033 + } + ] + }, + { + "id": "E64rQFZ-B", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 44.192355117139336, + "left": 935.9309494451295, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 935.9309494451295, + "y": 412.2532894736842 + }, + { + "x": 980.1233045622688, + "y": 412.2532894736842 + }, + { + "x": 980.1233045622688, + "y": 459.6217105263158 + }, + { + "x": 935.9309494451295, + "y": 459.6217105263158 + } + ] + }, + { + "id": "9NiNkdWR2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 38.93139257090012, + "left": 839.1286798705303, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 839.1286798705303, + "y": 397.5164794921875 + }, + { + "x": 878.0600724414303, + "y": 397.5164794921875 + }, + { + "x": 878.0600724414303, + "y": 445.93751606188323 + }, + { + "x": 839.1286798705303, + "y": 445.93751606188323 + } + ] + }, + { + "id": "stnlQmesh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 34.722564734895194, + "left": 718.1257706535142, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 718.1257706535142, + "y": 385.93751606188323 + }, + { + "x": 752.8483353884094, + "y": 385.93751606188323 + }, + { + "x": 752.8483353884094, + "y": 433.3059371145148 + }, + { + "x": 718.1257706535142, + "y": 433.3059371145148 + } + ] + }, + { + "id": "nQRRWdRGm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 28.40937114673243, + "left": 622.3757321208385, + "top": 369.09542686060854 + }, + "points": [ + { + "x": 622.3757321208385, + "y": 369.09542686060854 + }, + { + "x": 650.7851032675709, + "y": 369.09542686060854 + }, + { + "x": 650.7851032675709, + "y": 411.20067395662005 + }, + { + "x": 622.3757321208385, + "y": 411.20067395662005 + } + ] + }, + { + "id": "BwXpFVrDR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 45.244586159062884, + "left": 523.4690004623922, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 523.4690004623922, + "y": 351.20067395662005 + }, + { + "x": 568.713586621455, + "y": 351.20067395662005 + }, + { + "x": 568.713586621455, + "y": 401.72698974609375 + }, + { + "x": 523.4690004623922, + "y": 401.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "1844ecf7502ce1bce1ddfaf7716b9cc5": { + "asset": { + "id": "1844ecf7502ce1bce1ddfaf7716b9cc5", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=32.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=32.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 32.75 + }, + "regions": [ + { + "id": "ea1vyoVJT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 27.35723643649815, + "left": 452.9716399506782, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 452.9716399506782, + "y": 341.72698974609375 + }, + { + "x": 480.3288763871763, + "y": 341.72698974609375 + }, + { + "x": 480.3288763871763, + "y": 381.727005807977 + }, + { + "x": 452.9716399506782, + "y": 381.727005807977 + } + ] + }, + { + "id": "QhRy58MUi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 30.513736898890258, + "left": 521.3646347102343, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 521.3646347102343, + "y": 354.3585686934622 + }, + { + "x": 551.8783716091245, + "y": 354.3585686934622 + }, + { + "x": 551.8783716091245, + "y": 398.56909500925167 + }, + { + "x": 521.3646347102343, + "y": 398.56909500925167 + } + ] + }, + { + "id": "RVxISxJV3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 28.40937114673243, + "left": 938.0354115289766, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 938.0354115289766, + "y": 401.72698974609375 + }, + { + "x": 966.444782675709, + "y": 401.72698974609375 + }, + { + "x": 966.444782675709, + "y": 456.4638157894737 + }, + { + "x": 938.0354115289766, + "y": 456.4638157894737 + } + ] + }, + { + "id": "ckAUWsjmr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 37.879161528976574, + "left": 835.9720830764488, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 835.9720830764488, + "y": 396.4638157894737 + }, + { + "x": 873.8512446054254, + "y": 396.4638157894737 + }, + { + "x": 873.8512446054254, + "y": 439.621726588199 + }, + { + "x": 835.9720830764488, + "y": 439.621726588199 + } + ] + }, + { + "id": "5GvL-z4fG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 26.304909062885326, + "left": 723.3868295314427, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 372.2533215974507 + }, + { + "x": 749.691738594328, + "y": 372.2533215974507 + }, + { + "x": 749.691738594328, + "y": 420.6743581671464 + }, + { + "x": 723.3868295314427, + "y": 420.6743581671464 + } + ] + }, + { + "id": "3aJa0Wbzs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 26.304909062885326, + "left": 612.9059417385944, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 612.9059417385944, + "y": 359.62174265008224 + }, + { + "x": 639.2108508014796, + "y": 359.62174265008224 + }, + { + "x": 639.2108508014796, + "y": 406.9901637027138 + }, + { + "x": 612.9059417385944, + "y": 406.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "932db666012230289d71ca958bc82493": { + "asset": { + "id": "932db666012230289d71ca958bc82493", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=32.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=32.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 32.6 + }, + "regions": [ + { + "id": "5JyPI8saM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 28.40937114673243, + "left": 450.86727419852036, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 450.86727419852036, + "y": 348.04277921977797 + }, + { + "x": 479.2766453452528, + "y": 348.04277921977797 + }, + { + "x": 479.2766453452528, + "y": 381.727005807977 + }, + { + "x": 450.86727419852036, + "y": 381.727005807977 + } + ] + }, + { + "id": "E_p-yB9y6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 25.25277435265105, + "left": 521.3646347102343, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 521.3646347102343, + "y": 348.04277921977797 + }, + { + "x": 546.6174090628854, + "y": 348.04277921977797 + }, + { + "x": 546.6174090628854, + "y": 394.3585847553454 + }, + { + "x": 521.3646347102343, + "y": 394.3585847553454 + } + ] + }, + { + "id": "M77M2mK59", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 39.98362361282368, + "left": 702.3427866831073, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 702.3427866831073, + "y": 371.2006578947368 + }, + { + "x": 742.3264102959309, + "y": 371.2006578947368 + }, + { + "x": 742.3264102959309, + "y": 426.99014764083057 + }, + { + "x": 702.3427866831073, + "y": 426.99014764083057 + } + ] + }, + { + "id": "ZOS3RAX1O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 19.99181180641184, + "left": 839.1286798705303, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 839.1286798705303, + "y": 397.5164794921875 + }, + { + "x": 859.120491676942, + "y": 397.5164794921875 + }, + { + "x": 859.120491676942, + "y": 450.1480263157895 + }, + { + "x": 839.1286798705303, + "y": 450.1480263157895 + } + ] + }, + { + "id": "jh6s9uO3m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 43.14012407521578, + "left": 930.6699868988902, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 398.56909500925167 + }, + { + "x": 973.810110974106, + "y": 398.56909500925167 + }, + { + "x": 973.810110974106, + "y": 456.4638157894737 + }, + { + "x": 930.6699868988902, + "y": 456.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "d0fe22d6c327be94f4fb2fd0ee6788eb": { + "asset": { + "id": "d0fe22d6c327be94f4fb2fd0ee6788eb", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=32.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=32.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 32.4 + }, + "regions": [ + { + "id": "F2jQO22U5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 31.56596794081381, + "left": 943.2963740752158, + "top": 400.67437422902964 + }, + "points": [ + { + "x": 943.2963740752158, + "y": 400.67437422902964 + }, + { + "x": 974.8623420160296, + "y": 400.67437422902964 + }, + { + "x": 974.8623420160296, + "y": 455.41120027240953 + }, + { + "x": 943.2963740752158, + "y": 455.41120027240953 + } + ] + }, + { + "id": "UR3FTsQ8_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 37.879161528976574, + "left": 833.867717324291, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 833.867717324291, + "y": 395.41120027240953 + }, + { + "x": 871.7468788532676, + "y": 395.41120027240953 + }, + { + "x": 871.7468788532676, + "y": 451.2006900185033 + }, + { + "x": 833.867717324291, + "y": 451.2006900185033 + } + ] + }, + { + "id": "q7Dy8FIz5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 35.77469944512947, + "left": 717.0736359432799, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 717.0736359432799, + "y": 377.51644736842104 + }, + { + "x": 752.8483353884094, + "y": 377.51644736842104 + }, + { + "x": 752.8483353884094, + "y": 430.1480423776727 + }, + { + "x": 717.0736359432799, + "y": 430.1480423776727 + } + ] + }, + { + "id": "V_DGwGhWf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 32.61819898273736, + "left": 617.11467324291, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 617.11467324291, + "y": 380.6743421052632 + }, + { + "x": 649.7328722256474, + "y": 380.6743421052632 + }, + { + "x": 649.7328722256474, + "y": 409.09539473684214 + }, + { + "x": 617.11467324291, + "y": 409.09539473684214 + } + ] + }, + { + "id": "_h6chZhbz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 36.82693048705302, + "left": 517.1558068742294, + "top": 353.305953176398 + }, + "points": [ + { + "x": 517.1558068742294, + "y": 353.305953176398 + }, + { + "x": 553.9827373612824, + "y": 353.305953176398 + }, + { + "x": 553.9827373612824, + "y": 396.4638157894737 + }, + { + "x": 517.1558068742294, + "y": 396.4638157894737 + } + ] + }, + { + "id": "jbXZqQ3bJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 29.46160218865598, + "left": 449.8150431565968, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 449.8150431565968, + "y": 340.67437422902964 + }, + { + "x": 479.2766453452528, + "y": 340.67437422902964 + }, + { + "x": 479.2766453452528, + "y": 382.77962132504115 + }, + { + "x": 449.8150431565968, + "y": 382.77962132504115 + } + ] + } + ], + "version": "2.2.0" + }, + "c8f11f01b6a20fb7a128b7dae30087d9": { + "asset": { + "id": "c8f11f01b6a20fb7a128b7dae30087d9", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=32.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=32.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 32.2 + }, + "regions": [ + { + "id": "tl8THvVth", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 39.9835272811344, + "left": 947.5052019112208, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 947.5052019112208, + "y": 408.04277921977797 + }, + { + "x": 987.4887291923551, + "y": 408.04277921977797 + }, + { + "x": 987.4887291923551, + "y": 453.30592105263156 + }, + { + "x": 947.5052019112208, + "y": 453.30592105263156 + } + ] + }, + { + "id": "tuhdBUF_j", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 45.24448982737361, + "left": 849.6507012946979, + "top": 394.3585847553454 + }, + "points": [ + { + "x": 849.6507012946979, + "y": 394.3585847553454 + }, + { + "x": 894.8951911220715, + "y": 394.3585847553454 + }, + { + "x": 894.8951911220715, + "y": 440.6743421052632 + }, + { + "x": 849.6507012946979, + "y": 440.6743421052632 + } + ] + }, + { + "id": "0ppeGjAfb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 44.192355117139336, + "left": 720.2302327373613, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 720.2302327373613, + "y": 380.6743421052632 + }, + { + "x": 764.4225878545006, + "y": 380.6743421052632 + }, + { + "x": 764.4225878545006, + "y": 432.2533215974507 + }, + { + "x": 720.2302327373613, + "y": 432.2533215974507 + } + ] + }, + { + "id": "YxlTiBBZv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 30.513736898890258, + "left": 625.5323289149198, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 625.5323289149198, + "y": 371.2006578947368 + }, + { + "x": 656.0460658138102, + "y": 371.2006578947368 + }, + { + "x": 656.0460658138102, + "y": 408.04277921977797 + }, + { + "x": 625.5323289149198, + "y": 408.04277921977797 + } + ] + }, + { + "id": "PNEXwEOG9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 43.14012407521578, + "left": 523.4690004623922, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 523.4690004623922, + "y": 370.1480423776727 + }, + { + "x": 566.609124537608, + "y": 370.1480423776727 + }, + { + "x": 566.609124537608, + "y": 401.72698974609375 + }, + { + "x": 523.4690004623922, + "y": 401.72698974609375 + } + ] + }, + { + "id": "4bczKBaQ6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 35.77479577681874, + "left": 456.1282367447596, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 456.1282367447596, + "y": 361.7269736842105 + }, + { + "x": 491.9030325215783, + "y": 361.7269736842105 + }, + { + "x": 491.9030325215783, + "y": 383.83223684210526 + }, + { + "x": 456.1282367447596, + "y": 383.83223684210526 + } + ] + }, + { + "id": "46PeZm6e3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 30.513736898890258, + "left": 311.97701525893956, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 311.97701525893956, + "y": 335.41120027240953 + }, + { + "x": 342.49075215782983, + "y": 335.41120027240953 + }, + { + "x": 342.49075215782983, + "y": 373.3059371145148 + }, + { + "x": 311.97701525893956, + "y": 373.3059371145148 + } + ] + } + ], + "version": "2.2.0" + }, + "4a1b44c23765fd0484831cdbf1298bcd": { + "asset": { + "id": "4a1b44c23765fd0484831cdbf1298bcd", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=32.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=32", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 32 + }, + "regions": [ + { + "id": "w5-yII84x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 35.77479577681874, + "left": 954.8705302096178, + "top": 406.9901637027138 + }, + "points": [ + { + "x": 954.8705302096178, + "y": 406.9901637027138 + }, + { + "x": 990.6453259864365, + "y": 406.9901637027138 + }, + { + "x": 990.6453259864365, + "y": 459.6217105263158 + }, + { + "x": 954.8705302096178, + "y": 459.6217105263158 + } + ] + }, + { + "id": "lT5GQqcZF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 50.5055487053021, + "left": 844.3896424167694, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 844.3896424167694, + "y": 399.6217105263158 + }, + { + "x": 894.8951911220715, + "y": 399.6217105263158 + }, + { + "x": 894.8951911220715, + "y": 436.46383185135693 + }, + { + "x": 844.3896424167694, + "y": 436.46383185135693 + } + ] + }, + { + "id": "gE4mt6SUx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 42.08789303329223, + "left": 729.7000231196055, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 386.9901315789474 + }, + { + "x": 771.7879161528977, + "y": 386.9901315789474 + }, + { + "x": 771.7879161528977, + "y": 425.93753212376646 + }, + { + "x": 729.7000231196055, + "y": 425.93753212376646 + } + ] + }, + { + "id": "7OTkEQaPY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 23.148312268803945, + "left": 625.5323289149198, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 625.5323289149198, + "y": 373.3059371145148 + }, + { + "x": 648.6806411837238, + "y": 373.3059371145148 + }, + { + "x": 648.6806411837238, + "y": 410.14805843955594 + }, + { + "x": 625.5323289149198, + "y": 410.14805843955594 + } + ] + }, + { + "id": "3qZmVQMmW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 39.9835272811344, + "left": 523.4690004623922, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 523.4690004623922, + "y": 358.56907894736844 + }, + { + "x": 563.4525277435265, + "y": 358.56907894736844 + }, + { + "x": 563.4525277435265, + "y": 395.41120027240953 + }, + { + "x": 523.4690004623922, + "y": 395.41120027240953 + } + ] + }, + { + "id": "06T3IeMkS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 37.879161528976574, + "left": 447.71067740443897, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 447.71067740443897, + "y": 344.8848844829359 + }, + { + "x": 485.58983893341554, + "y": 344.8848844829359 + }, + { + "x": 485.58983893341554, + "y": 385.93751606188323 + }, + { + "x": 447.71067740443897, + "y": 385.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "1cd22ace204a169c074ecbf9537d1445": { + "asset": { + "id": "1cd22ace204a169c074ecbf9537d1445", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31.9 + }, + "regions": [ + { + "id": "eYqXzn4yx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 44.192355117139336, + "left": 961.1837237977805, + "top": 411.20067395662005 + }, + "points": [ + { + "x": 961.1837237977805, + "y": 411.20067395662005 + }, + { + "x": 1005.3760789149198, + "y": 411.20067395662005 + }, + { + "x": 1005.3760789149198, + "y": 450.1480263157895 + }, + { + "x": 961.1837237977805, + "y": 450.1480263157895 + } + ] + }, + { + "id": "7uYS6uTZZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 61.027473797780516, + "left": 837.0243141183724, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 837.0243141183724, + "y": 390.1480263157895 + }, + { + "x": 898.0517879161529, + "y": 390.1480263157895 + }, + { + "x": 898.0517879161529, + "y": 444.88490054481906 + }, + { + "x": 837.0243141183724, + "y": 444.88490054481906 + } + ] + }, + { + "id": "AR6m2wbnq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 42.08789303329223, + "left": 729.7000231196055, + "top": 379.621726588199 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 379.621726588199 + }, + { + "x": 771.7879161528977, + "y": 379.621726588199 + }, + { + "x": 771.7879161528977, + "y": 424.88486842105266 + }, + { + "x": 729.7000231196055, + "y": 424.88486842105266 + } + ] + }, + { + "id": "kKRwwxD8Q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 23.14840860049322, + "left": 630.793291461159, + "top": 381.727005807977 + }, + "points": [ + { + "x": 630.793291461159, + "y": 381.727005807977 + }, + { + "x": 653.9417000616523, + "y": 381.727005807977 + }, + { + "x": 653.9417000616523, + "y": 415.4111842105263 + }, + { + "x": 630.793291461159, + "y": 415.4111842105263 + } + ] + }, + { + "id": "iQJlThIf-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 38.93139257090012, + "left": 526.6255972564735, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 526.6255972564735, + "y": 362.7796373869243 + }, + { + "x": 565.5569898273736, + "y": 362.7796373869243 + }, + { + "x": 565.5569898273736, + "y": 396.4638157894737 + }, + { + "x": 526.6255972564735, + "y": 396.4638157894737 + } + ] + }, + { + "id": "eoV9QqYMs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 32.61815081689272, + "left": 451.9194570745993, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 337.5164794921875 + }, + { + "x": 484.537607891492, + "y": 337.5164794921875 + }, + { + "x": 484.537607891492, + "y": 382.77962132504115 + }, + { + "x": 451.9194570745993, + "y": 382.77962132504115 + } + ] + }, + { + "id": "faZvA-nqb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 28.40937114673243, + "left": 317.2379778051788, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 317.2379778051788, + "y": 328.0427952816612 + }, + { + "x": 345.6473489519112, + "y": 328.0427952816612 + }, + { + "x": 345.6473489519112, + "y": 370.1480423776727 + }, + { + "x": 317.2379778051788, + "y": 370.1480423776727 + } + ] + } + ], + "version": "2.2.0" + }, + "73b191c9b3a567ad0bbbb7fe4ed6620e": { + "asset": { + "id": "73b191c9b3a567ad0bbbb7fe4ed6620e", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31.75 + }, + "regions": [ + { + "id": "v-5sJacjb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 21.043946516646116, + "left": 327.7599992293465, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 327.7599992293465, + "y": 336.4638157894737 + }, + { + "x": 348.8039457459926, + "y": 336.4638157894737 + }, + { + "x": 348.8039457459926, + "y": 373.3059371145148 + }, + { + "x": 327.7599992293465, + "y": 373.3059371145148 + } + ] + }, + { + "id": "Q-eFxWZdp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 30.513785064734897, + "left": 445.6062634864365, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 445.6062634864365, + "y": 343.8322689658717 + }, + { + "x": 476.1200485511714, + "y": 343.8322689658717 + }, + { + "x": 476.1200485511714, + "y": 386.9901315789474 + }, + { + "x": 445.6062634864365, + "y": 386.9901315789474 + } + ] + }, + { + "id": "k2S4Mzq6G", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 34.722564734895194, + "left": 524.5212315043157, + "top": 345.9375 + }, + "points": [ + { + "x": 524.5212315043157, + "y": 345.9375 + }, + { + "x": 559.2437962392108, + "y": 345.9375 + }, + { + "x": 559.2437962392108, + "y": 396.4638157894737 + }, + { + "x": 524.5212315043157, + "y": 396.4638157894737 + } + ] + }, + { + "id": "sDEnIIoUW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 43.14012407521578, + "left": 622.3757321208385, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 622.3757321208385, + "y": 365.93753212376646 + }, + { + "x": 665.5158561960543, + "y": 365.93753212376646 + }, + { + "x": 665.5158561960543, + "y": 409.09539473684214 + }, + { + "x": 622.3757321208385, + "y": 409.09539473684214 + } + ] + }, + { + "id": "68oJynpFv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 61.027473797780516, + "left": 710.7604423551171, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 710.7604423551171, + "y": 385.93751606188323 + }, + { + "x": 771.7879161528977, + "y": 385.93751606188323 + }, + { + "x": 771.7879161528977, + "y": 418.56907894736844 + }, + { + "x": 710.7604423551171, + "y": 418.56907894736844 + } + ] + }, + { + "id": "6u2opUu7a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 37.879161528976574, + "left": 855.9638948828607, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 392.25330553556745 + }, + { + "x": 893.8430564118372, + "y": 392.25330553556745 + }, + { + "x": 893.8430564118372, + "y": 445.93751606188323 + }, + { + "x": 855.9638948828607, + "y": 445.93751606188323 + } + ] + }, + { + "id": "ZpQFZIx_v", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 24.20063964241677, + "left": 964.3403205918619, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 964.3403205918619, + "y": 404.8848844829359 + }, + { + "x": 988.5409602342787, + "y": 404.8848844829359 + }, + { + "x": 988.5409602342787, + "y": 456.4638157894737 + }, + { + "x": 964.3403205918619, + "y": 456.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "fdd797fc0e41d07a37d62aa375a09154": { + "asset": { + "id": "fdd797fc0e41d07a37d62aa375a09154", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31.6 + }, + "regions": [ + { + "id": "O-2UfImwd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 32.61815081689272, + "left": 319.34239172318127, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 319.34239172318127, + "y": 332.25330553556745 + }, + { + "x": 351.96054254007396, + "y": 332.25330553556745 + }, + { + "x": 351.96054254007396, + "y": 360.6743581671464 + }, + { + "x": 319.34239172318127, + "y": 360.6743581671464 + } + ] + }, + { + "id": "uTu2Gh9xV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 24.200591476572132, + "left": 451.9194570745993, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 341.72698974609375 + }, + { + "x": 476.1200485511714, + "y": 341.72698974609375 + }, + { + "x": 476.1200485511714, + "y": 385.93751606188323 + }, + { + "x": 451.9194570745993, + "y": 385.93751606188323 + } + ] + }, + { + "id": "aPps9mSfd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 34.722564734895194, + "left": 528.7299630086313, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 528.7299630086313, + "y": 344.8848844829359 + }, + { + "x": 563.4525277435265, + "y": 344.8848844829359 + }, + { + "x": 563.4525277435265, + "y": 400.67437422902964 + }, + { + "x": 528.7299630086313, + "y": 400.67437422902964 + } + ] + }, + { + "id": "JGEIx0XZ1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 35.77469944512947, + "left": 625.5323289149198, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 625.5323289149198, + "y": 373.3059371145148 + }, + { + "x": 661.3070283600493, + "y": 373.3059371145148 + }, + { + "x": 661.3070283600493, + "y": 399.6217105263158 + }, + { + "x": 625.5323289149198, + "y": 399.6217105263158 + } + ] + }, + { + "id": "v30xoTXRl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 33.67043002466091, + "left": 727.5955610357584, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 727.5955610357584, + "y": 378.5691110711349 + }, + { + "x": 761.2659910604192, + "y": 378.5691110711349 + }, + { + "x": 761.2659910604192, + "y": 437.51644736842104 + }, + { + "x": 727.5955610357584, + "y": 437.51644736842104 + } + ] + }, + { + "id": "DsELjio9s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 26.304909062885326, + "left": 865.4336852651048, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 865.4336852651048, + "y": 395.41120027240953 + }, + { + "x": 891.7385943279902, + "y": 395.41120027240953 + }, + { + "x": 891.7385943279902, + "y": 449.0954107987253 + }, + { + "x": 865.4336852651048, + "y": 449.0954107987253 + } + ] + }, + { + "id": "8EeF2uQBM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 35.77479577681874, + "left": 961.1837237977805, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 961.1837237977805, + "y": 412.2532894736842 + }, + { + "x": 996.9585195745992, + "y": 412.2532894736842 + }, + { + "x": 996.9585195745992, + "y": 455.41120027240953 + }, + { + "x": 961.1837237977805, + "y": 455.41120027240953 + } + ] + } + ], + "version": "2.2.0" + }, + "d6f27369770edff13ad9ccc47fb9ee01": { + "asset": { + "id": "d6f27369770edff13ad9ccc47fb9ee01", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31.45 + }, + "regions": [ + { + "id": "7O3L5jvo1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 31.56596794081381, + "left": 963.2881858816277, + "top": 413.305953176398 + }, + "points": [ + { + "x": 963.2881858816277, + "y": 413.305953176398 + }, + { + "x": 994.8541538224414, + "y": 413.305953176398 + }, + { + "x": 994.8541538224414, + "y": 462.7796052631579 + }, + { + "x": 963.2881858816277, + "y": 462.7796052631579 + } + ] + }, + { + "id": "ce9pcatIF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 53.66214549938348, + "left": 851.7550670468557, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 393.30592105263156 + }, + { + "x": 905.4172125462392, + "y": 393.30592105263156 + }, + { + "x": 905.4172125462392, + "y": 451.2006900185033 + }, + { + "x": 851.7550670468557, + "y": 451.2006900185033 + } + ] + }, + { + "id": "_Zb3Tjv8F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 53.66214549938348, + "left": 726.543426325524, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 726.543426325524, + "y": 384.88490054481906 + }, + { + "x": 780.2055718249076, + "y": 384.88490054481906 + }, + { + "x": 780.2055718249076, + "y": 423.8322529039885 + }, + { + "x": 726.543426325524, + "y": 423.8322529039885 + } + ] + }, + { + "id": "n6mSSP5ZA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 29.46150585696671, + "left": 631.8455225030826, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 631.8455225030826, + "y": 368.04276315789474 + }, + { + "x": 661.3070283600493, + "y": 368.04276315789474 + }, + { + "x": 661.3070283600493, + "y": 402.7796052631579 + }, + { + "x": 631.8455225030826, + "y": 402.7796052631579 + } + ] + }, + { + "id": "uOd74KMou", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 52.6100107891492, + "left": 525.57336621455, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 525.57336621455, + "y": 350.14805843955594 + }, + { + "x": 578.1833770036991, + "y": 350.14805843955594 + }, + { + "x": 578.1833770036991, + "y": 396.4638157894737 + }, + { + "x": 525.57336621455, + "y": 396.4638157894737 + } + ] + }, + { + "id": "B8Izjsgre", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 39.98357544697904, + "left": 458.232650662762, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 458.232650662762, + "y": 338.56909500925167 + }, + { + "x": 498.21622610974106, + "y": 338.56909500925167 + }, + { + "x": 498.21622610974106, + "y": 384.88490054481906 + }, + { + "x": 458.232650662762, + "y": 384.88490054481906 + } + ] + }, + { + "id": "Dgo6l9vxH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 31.56596794081381, + "left": 325.655585311344, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 325.655585311344, + "y": 341.72698974609375 + }, + { + "x": 357.22155325215783, + "y": 341.72698974609375 + }, + { + "x": 357.22155325215783, + "y": 380.6743421052632 + }, + { + "x": 325.655585311344, + "y": 380.6743421052632 + } + ] + } + ], + "version": "2.2.0" + }, + "b298e3411ed51538c05b41c3f9be79eb": { + "asset": { + "id": "b298e3411ed51538c05b41c3f9be79eb", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31.3 + }, + "regions": [ + { + "id": "A90vzMLc7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 34.722564734895194, + "left": 968.5491484278668, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 968.5491484278668, + "y": 416.46384791324016 + }, + { + "x": 1003.271713162762, + "y": 416.46384791324016 + }, + { + "x": 1003.271713162762, + "y": 458.56909500925167 + }, + { + "x": 968.5491484278668, + "y": 458.56909500925167 + } + ] + }, + { + "id": "nQQ8_wUZf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 31.56596794081381, + "left": 869.6424167694205, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 869.6424167694205, + "y": 402.7796052631579 + }, + { + "x": 901.2083847102343, + "y": 402.7796052631579 + }, + { + "x": 901.2083847102343, + "y": 452.25330553556745 + }, + { + "x": 869.6424167694205, + "y": 452.25330553556745 + } + ] + }, + { + "id": "LP1bWoQua", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 21.044042848335387, + "left": 743.3785450061653, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 743.3785450061653, + "y": 393.30592105263156 + }, + { + "x": 764.4225878545006, + "y": 393.30592105263156 + }, + { + "x": 764.4225878545006, + "y": 435.41121633429276 + }, + { + "x": 743.3785450061653, + "y": 435.41121633429276 + } + ] + }, + { + "id": "NhcVr03Ce", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 21.044042848335387, + "left": 639.2108508014796, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 376.46383185135693 + }, + { + "x": 660.254893649815, + "y": 376.46383185135693 + }, + { + "x": 660.254893649815, + "y": 405.9375 + }, + { + "x": 639.2108508014796, + "y": 405.9375 + } + ] + }, + { + "id": "w2iD5pJDC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 27.357140104808877, + "left": 537.1476186806412, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 537.1476186806412, + "y": 362.7796373869243 + }, + { + "x": 564.5047587854501, + "y": 362.7796373869243 + }, + { + "x": 564.5047587854501, + "y": 408.04277921977797 + }, + { + "x": 537.1476186806412, + "y": 408.04277921977797 + } + ] + }, + { + "id": "RxmSNzciV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 21.043946516646116, + "left": 457.1804677866831, + "top": 345.9375 + }, + "points": [ + { + "x": 457.1804677866831, + "y": 345.9375 + }, + { + "x": 478.22441430332924, + "y": 345.9375 + }, + { + "x": 478.22441430332924, + "y": 386.9901315789474 + }, + { + "x": 457.1804677866831, + "y": 386.9901315789474 + } + ] + }, + { + "id": "sdFI1g2N8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 41.035758323057955, + "left": 218.33129431257706, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 218.33129431257706, + "y": 318.5691110711349 + }, + { + "x": 259.36705263563505, + "y": 318.5691110711349 + }, + { + "x": 259.36705263563505, + "y": 371.2006578947368 + }, + { + "x": 218.33129431257706, + "y": 371.2006578947368 + } + ] + } + ], + "version": "2.2.0" + }, + "d7df67c9ad58ed39f36a955a0cc53ed7": { + "asset": { + "id": "d7df67c9ad58ed39f36a955a0cc53ed7", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31.15 + }, + "regions": [ + { + "id": "kz2sTLAVb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 52.6100107891492, + "left": 967.4969173859433, + "top": 421.7269736842105 + }, + "points": [ + { + "x": 967.4969173859433, + "y": 421.7269736842105 + }, + { + "x": 1020.1069281750925, + "y": 421.7269736842105 + }, + { + "x": 1020.1069281750925, + "y": 462.7796052631579 + }, + { + "x": 967.4969173859433, + "y": 462.7796052631579 + } + ] + }, + { + "id": "oYoXOamuH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 62.07970483970407, + "left": 865.4336852651048, + "top": 411.20067395662005 + }, + "points": [ + { + "x": 865.4336852651048, + "y": 411.20067395662005 + }, + { + "x": 927.5133901048089, + "y": 411.20067395662005 + }, + { + "x": 927.5133901048089, + "y": 450.1480263157895 + }, + { + "x": 865.4336852651048, + "y": 450.1480263157895 + } + ] + }, + { + "id": "Lt3ZD38zD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 37.879161528976574, + "left": 743.3785450061653, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 743.3785450061653, + "y": 393.30592105263156 + }, + { + "x": 781.2577065351418, + "y": 393.30592105263156 + }, + { + "x": 781.2577065351418, + "y": 443.83223684210526 + }, + { + "x": 743.3785450061653, + "y": 443.83223684210526 + } + ] + }, + { + "id": "a7xX5cpEN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 28.40937114673243, + "left": 641.3153128853268, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 641.3153128853268, + "y": 374.35855263157896 + }, + { + "x": 669.7246840320591, + "y": 374.35855263157896 + }, + { + "x": 669.7246840320591, + "y": 431.2006578947368 + }, + { + "x": 641.3153128853268, + "y": 431.2006578947368 + } + ] + }, + { + "id": "35qR0gejg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 37.879161528976574, + "left": 541.3563501849568, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 541.3563501849568, + "y": 363.8322529039885 + }, + { + "x": 579.2355117139334, + "y": 363.8322529039885 + }, + { + "x": 579.2355117139334, + "y": 405.9375 + }, + { + "x": 541.3563501849568, + "y": 405.9375 + } + ] + }, + { + "id": "QT9yV-0D3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 38.93139257090012, + "left": 462.4414303329223, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 462.4414303329223, + "y": 346.9901637027138 + }, + { + "x": 501.37282290382245, + "y": 346.9901637027138 + }, + { + "x": 501.37282290382245, + "y": 385.93751606188323 + }, + { + "x": 462.4414303329223, + "y": 385.93751606188323 + } + ] + }, + { + "id": "Cr9mYHdgt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 24.200591476572132, + "left": 329.8643649815043, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 329.8643649815043, + "y": 329.0954107987253 + }, + { + "x": 354.06495645807644, + "y": 329.0954107987253 + }, + { + "x": 354.06495645807644, + "y": 365.93753212376646 + }, + { + "x": 329.8643649815043, + "y": 365.93753212376646 + } + ] + } + ], + "version": "2.2.0" + }, + "601743b524d61168c38a26ec06c92a39": { + "asset": { + "id": "601743b524d61168c38a26ec06c92a39", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=31.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=31", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 31 + }, + "regions": [ + { + "id": "rEa7gw0Nw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 39.98357544697904, + "left": 329.8643649815043, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 329.8643649815043, + "y": 344.8848844829359 + }, + { + "x": 369.84794042848335, + "y": 344.8848844829359 + }, + { + "x": 369.84794042848335, + "y": 378.5691110711349 + }, + { + "x": 329.8643649815043, + "y": 378.5691110711349 + } + ] + }, + { + "id": "PV70Gwxkc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 34.722564734895194, + "left": 461.38929562268805, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 461.38929562268805, + "y": 350.14805843955594 + }, + { + "x": 496.1118603575832, + "y": 350.14805843955594 + }, + { + "x": 496.1118603575832, + "y": 395.41120027240953 + }, + { + "x": 461.38929562268805, + "y": 395.41120027240953 + } + ] + }, + { + "id": "Q3LDoHdno", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 35.77469944512947, + "left": 540.3042154747226, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 360.6743581671464 + }, + { + "x": 576.0789149198521, + "y": 360.6743581671464 + }, + { + "x": 576.0789149198521, + "y": 403.8322689658717 + }, + { + "x": 540.3042154747226, + "y": 403.8322689658717 + } + ] + }, + { + "id": "bHQxH5nMe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 19.999983938116777, + "width": 22.096177558569668, + "left": 643.4196786374846, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 388.0427952816612 + }, + { + "x": 665.5158561960543, + "y": 388.0427952816612 + }, + { + "x": 665.5158561960543, + "y": 408.04277921977797 + }, + { + "x": 643.4196786374846, + "y": 408.04277921977797 + } + ] + }, + { + "id": "DId3wdF3r", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 44.192355117139336, + "left": 740.2219482120838, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 740.2219482120838, + "y": 392.25330553556745 + }, + { + "x": 784.4143033292232, + "y": 392.25330553556745 + }, + { + "x": 784.4143033292232, + "y": 430.1480423776727 + }, + { + "x": 740.2219482120838, + "y": 430.1480423776727 + } + ] + }, + { + "id": "rLnPWZ0oj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 35.77479577681874, + "left": 873.8512446054254, + "top": 405.9375 + }, + "points": [ + { + "x": 873.8512446054254, + "y": 405.9375 + }, + { + "x": 909.6260403822441, + "y": 405.9375 + }, + { + "x": 909.6260403822441, + "y": 457.5164794921875 + }, + { + "x": 873.8512446054254, + "y": 457.5164794921875 + } + ] + }, + { + "id": "bJLTDO4gu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 21.043946516646116, + "left": 978.018938810111, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 978.018938810111, + "y": 418.56907894736844 + }, + { + "x": 999.062885326757, + "y": 418.56907894736844 + }, + { + "x": 999.062885326757, + "y": 469.09539473684214 + }, + { + "x": 978.018938810111, + "y": 469.09539473684214 + } + ] + } + ], + "version": "2.2.0" + }, + "49659f314ffa6dfcb094a391ffab0ee1": { + "asset": { + "id": "49659f314ffa6dfcb094a391ffab0ee1", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.85 + }, + "regions": [ + { + "id": "mTVEfWdyW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 32.61819898273736, + "left": 469.8068549630086, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 469.8068549630086, + "y": 357.51646343030427 + }, + { + "x": 502.425053945746, + "y": 357.51646343030427 + }, + { + "x": 502.425053945746, + "y": 398.56909500925167 + }, + { + "x": 469.8068549630086, + "y": 398.56909500925167 + } + ] + }, + { + "id": "KkSEkbbZJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 29.461554022811345, + "left": 328.8121821054254, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 328.8121821054254, + "y": 337.5164794921875 + }, + { + "x": 358.27373612823675, + "y": 337.5164794921875 + }, + { + "x": 358.27373612823675, + "y": 384.88490054481906 + }, + { + "x": 328.8121821054254, + "y": 384.88490054481906 + } + ] + }, + { + "id": "7wFLZibTN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 22.096177558569668, + "left": 546.6174090628854, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 546.6174090628854, + "y": 356.46384791324016 + }, + { + "x": 568.713586621455, + "y": 356.46384791324016 + }, + { + "x": 568.713586621455, + "y": 409.09539473684214 + }, + { + "x": 546.6174090628854, + "y": 409.09539473684214 + } + ] + }, + { + "id": "3kCjOiDYp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 21.044042848335387, + "left": 642.3674475955611, + "top": 379.621726588199 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 379.621726588199 + }, + { + "x": 663.4114904438965, + "y": 379.621726588199 + }, + { + "x": 663.4114904438965, + "y": 422.7796373869243 + }, + { + "x": 642.3674475955611, + "y": 422.7796373869243 + } + ] + }, + { + "id": "1IVYeiaSb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 34.722564734895194, + "left": 744.4307760480888, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 388.0427952816612 + }, + { + "x": 779.153340782984, + "y": 388.0427952816612 + }, + { + "x": 779.153340782984, + "y": 439.621726588199 + }, + { + "x": 744.4307760480888, + "y": 439.621726588199 + } + ] + }, + { + "id": "v0ERn7iBD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 47.348951911220716, + "left": 869.6424167694205, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 869.6424167694205, + "y": 408.04277921977797 + }, + { + "x": 916.9913686806412, + "y": 408.04277921977797 + }, + { + "x": 916.9913686806412, + "y": 453.30592105263156 + }, + { + "x": 869.6424167694205, + "y": 453.30592105263156 + } + ] + }, + { + "id": "fb64L_JNi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 37.879161528976574, + "left": 972.7579762638718, + "top": 422.7796373869243 + }, + "points": [ + { + "x": 972.7579762638718, + "y": 422.7796373869243 + }, + { + "x": 1010.6371377928483, + "y": 422.7796373869243 + }, + { + "x": 1010.6371377928483, + "y": 463.8322689658717 + }, + { + "x": 972.7579762638718, + "y": 463.8322689658717 + } + ] + } + ], + "version": "2.2.0" + }, + "96ce9a2c6237d085fe14e49dc5bc5473": { + "asset": { + "id": "96ce9a2c6237d085fe14e49dc5bc5473", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.7 + }, + "regions": [ + { + "id": "v8iGYEkOi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 31.56596794081381, + "left": 328.8121821054254, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 328.8121821054254, + "y": 342.7796052631579 + }, + { + "x": 360.3781500462392, + "y": 342.7796052631579 + }, + { + "x": 360.3781500462392, + "y": 383.83223684210526 + }, + { + "x": 328.8121821054254, + "y": 383.83223684210526 + } + ] + }, + { + "id": "lBLGdDge_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 32.61810265104809, + "left": 461.38929562268805, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 461.38929562268805, + "y": 349.09539473684214 + }, + { + "x": 494.00739827373616, + "y": 349.09539473684214 + }, + { + "x": 494.00739827373616, + "y": 395.41120027240953 + }, + { + "x": 461.38929562268805, + "y": 395.41120027240953 + } + ] + }, + { + "id": "pnOi552Uj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 35.77479577681874, + "left": 542.4085812268804, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 542.4085812268804, + "y": 362.7796373869243 + }, + { + "x": 578.1833770036991, + "y": 362.7796373869243 + }, + { + "x": 578.1833770036991, + "y": 399.6217105263158 + }, + { + "x": 542.4085812268804, + "y": 399.6217105263158 + } + ] + }, + { + "id": "ElMGs8ebb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.210494192023027, + "width": 28.40937114673243, + "left": 637.1064850493218, + "top": 381.727005807977 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 381.727005807977 + }, + { + "x": 665.5158561960543, + "y": 381.727005807977 + }, + { + "x": 665.5158561960543, + "y": 405.9375 + }, + { + "x": 637.1064850493218, + "y": 405.9375 + } + ] + }, + { + "id": "h8gPu318W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 39.9835272811344, + "left": 738.117582459926, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 738.117582459926, + "y": 390.1480263157895 + }, + { + "x": 778.1011097410604, + "y": 390.1480263157895 + }, + { + "x": 778.1011097410604, + "y": 434.35855263157896 + }, + { + "x": 738.117582459926, + "y": 434.35855263157896 + } + ] + }, + { + "id": "YMUdTS_P4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 54.714280209617755, + "left": 859.120491676942, + "top": 405.9375 + }, + "points": [ + { + "x": 859.120491676942, + "y": 405.9375 + }, + { + "x": 913.8347718865598, + "y": 405.9375 + }, + { + "x": 913.8347718865598, + "y": 444.88490054481906 + }, + { + "x": 859.120491676942, + "y": 444.88490054481906 + } + ] + }, + { + "id": "PDDY7oq8y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 41.035758323057955, + "left": 969.6013794697903, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 969.6013794697903, + "y": 419.62174265008224 + }, + { + "x": 1010.6371377928483, + "y": 419.62174265008224 + }, + { + "x": 1010.6371377928483, + "y": 457.5164794921875 + }, + { + "x": 969.6013794697903, + "y": 457.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "84bc6fb86db6ab8e2fc1591131edf4c0": { + "asset": { + "id": "84bc6fb86db6ab8e2fc1591131edf4c0", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.55 + }, + "regions": [ + { + "id": "pB9yoKMYx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 45.24453799321825, + "left": 321.44680564118374, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 321.44680564118374, + "y": 335.41120027240953 + }, + { + "x": 366.69134363440196, + "y": 335.41120027240953 + }, + { + "x": 366.69134363440196, + "y": 373.3059371145148 + }, + { + "x": 321.44680564118374, + "y": 373.3059371145148 + } + ] + }, + { + "id": "JMGPHutWM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 24.200543310727497, + "left": 457.1804677866831, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 457.1804677866831, + "y": 338.56909500925167 + }, + { + "x": 481.38101109741064, + "y": 338.56909500925167 + }, + { + "x": 481.38101109741064, + "y": 396.4638157894737 + }, + { + "x": 457.1804677866831, + "y": 396.4638157894737 + } + ] + }, + { + "id": "y3rC6MWZ1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 33.67033369297164, + "left": 533.9910218865598, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 371.2006578947368 + }, + { + "x": 567.6613555795315, + "y": 371.2006578947368 + }, + { + "x": 567.6613555795315, + "y": 399.6217105263158 + }, + { + "x": 533.9910218865598, + "y": 399.6217105263158 + } + ] + }, + { + "id": "9_SwV7m37", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 19.991715474722564, + "left": 638.1587160912454, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 385.93751606188323 + }, + { + "x": 658.150431565968, + "y": 385.93751606188323 + }, + { + "x": 658.150431565968, + "y": 406.9901637027138 + }, + { + "x": 638.1587160912454, + "y": 406.9901637027138 + } + ] + }, + { + "id": "pPb5JihBZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 36.82693048705302, + "left": 736.0132167077682, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 736.0132167077682, + "y": 390.1480263157895 + }, + { + "x": 772.8401471948213, + "y": 390.1480263157895 + }, + { + "x": 772.8401471948213, + "y": 431.2006578947368 + }, + { + "x": 736.0132167077682, + "y": 431.2006578947368 + } + ] + }, + { + "id": "0DRGWdyw7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 41.035758323057955, + "left": 854.9116638409371, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 854.9116638409371, + "y": 390.1480263157895 + }, + { + "x": 895.947422163995, + "y": 390.1480263157895 + }, + { + "x": 895.947422163995, + "y": 450.1480263157895 + }, + { + "x": 854.9116638409371, + "y": 450.1480263157895 + } + ] + }, + { + "id": "P1Zi4u7PG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 36.82693048705302, + "left": 959.0793580456227, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 959.0793580456227, + "y": 416.46384791324016 + }, + { + "x": 995.9062885326757, + "y": 416.46384791324016 + }, + { + "x": 995.9062885326757, + "y": 461.72698974609375 + }, + { + "x": 959.0793580456227, + "y": 461.72698974609375 + } + ] + } + ], + "version": "2.2.0" + }, + "f629c0dd9de3d5c6bd98741a9b152657": { + "asset": { + "id": "f629c0dd9de3d5c6bd98741a9b152657", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.4 + }, + "regions": [ + { + "id": "5uH7fdQas", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 34.722564734895194, + "left": 459.2848335388409, + "top": 360.6743581671464 + }, + "points": [ + { + "x": 459.2848335388409, + "y": 360.6743581671464 + }, + { + "x": 494.00739827373616, + "y": 360.6743581671464 + }, + { + "x": 494.00739827373616, + "y": 386.9901315789474 + }, + { + "x": 459.2848335388409, + "y": 386.9901315789474 + } + ] + }, + { + "id": "33tUJSvLs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 29.46160218865598, + "left": 531.8865598027127, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 531.8865598027127, + "y": 368.04276315789474 + }, + { + "x": 561.3481619913687, + "y": 368.04276315789474 + }, + { + "x": 561.3481619913687, + "y": 408.04277921977797 + }, + { + "x": 531.8865598027127, + "y": 408.04277921977797 + } + ] + }, + { + "id": "IZxiOl0h0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 24.200543310727497, + "left": 624.4800978729963, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 624.4800978729963, + "y": 376.46383185135693 + }, + { + "x": 648.6806411837238, + "y": 376.46383185135693 + }, + { + "x": 648.6806411837238, + "y": 417.51646343030427 + }, + { + "x": 624.4800978729963, + "y": 417.51646343030427 + } + ] + }, + { + "id": "e2Yc-AZRd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 35.77479577681874, + "left": 734.9609856658446, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 734.9609856658446, + "y": 384.88490054481906 + }, + { + "x": 770.7357814426634, + "y": 384.88490054481906 + }, + { + "x": 770.7357814426634, + "y": 437.51644736842104 + }, + { + "x": 734.9609856658446, + "y": 437.51644736842104 + } + ] + }, + { + "id": "TN-KV4zw8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 57.87097333538841, + "left": 851.7550670468557, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 851.7550670468557, + "y": 402.7796052631579 + }, + { + "x": 909.6260403822441, + "y": 402.7796052631579 + }, + { + "x": 909.6260403822441, + "y": 444.88490054481906 + }, + { + "x": 851.7550670468557, + "y": 444.88490054481906 + } + ] + }, + { + "id": "wQ2RZ2tvC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 44.192355117139336, + "left": 961.1837237977805, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 961.1837237977805, + "y": 417.51646343030427 + }, + { + "x": 1005.3760789149198, + "y": 417.51646343030427 + }, + { + "x": 1005.3760789149198, + "y": 462.7796052631579 + }, + { + "x": 961.1837237977805, + "y": 462.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "985364e0a624d633097ea541780d7f5d": { + "asset": { + "id": "985364e0a624d633097ea541780d7f5d", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.25 + }, + "regions": [ + { + "id": "kyi54Kt1M", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 44.192355117139336, + "left": 320.3945745992602, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 320.3945745992602, + "y": 338.56909500925167 + }, + { + "x": 364.58692971639954, + "y": 338.56909500925167 + }, + { + "x": 364.58692971639954, + "y": 363.8322529039885 + }, + { + "x": 320.3945745992602, + "y": 363.8322529039885 + } + ] + }, + { + "id": "9RnyJnwbr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 18.939580764488287, + "left": 461.38929562268805, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 461.38929562268805, + "y": 359.62174265008224 + }, + { + "x": 480.3288763871763, + "y": 359.62174265008224 + }, + { + "x": 480.3288763871763, + "y": 386.9901315789474 + }, + { + "x": 461.38929562268805, + "y": 386.9901315789474 + } + ] + }, + { + "id": "9I2HbdhZB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 51.557779747225645, + "left": 522.4167694204685, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 522.4167694204685, + "y": 358.56907894736844 + }, + { + "x": 573.9745491676942, + "y": 358.56907894736844 + }, + { + "x": 573.9745491676942, + "y": 394.3585847553454 + }, + { + "x": 522.4167694204685, + "y": 394.3585847553454 + } + ] + }, + { + "id": "l3a5_DVxk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 26.3050053945746, + "left": 632.8976572133168, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 375.41121633429276 + }, + { + "x": 659.2026626078915, + "y": 375.41121633429276 + }, + { + "x": 659.2026626078915, + "y": 410.14805843955594 + }, + { + "x": 632.8976572133168, + "y": 410.14805843955594 + } + ] + }, + { + "id": "JNeiufBNI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 26.3050053945746, + "left": 740.2219482120838, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 740.2219482120838, + "y": 389.0954107987253 + }, + { + "x": 766.5269536066585, + "y": 389.0954107987253 + }, + { + "x": 766.5269536066585, + "y": 416.46384791324016 + }, + { + "x": 740.2219482120838, + "y": 416.46384791324016 + } + ] + }, + { + "id": "INHK2t152", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 43.14012407521578, + "left": 858.0682606350185, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 858.0682606350185, + "y": 397.5164794921875 + }, + { + "x": 901.2083847102343, + "y": 397.5164794921875 + }, + { + "x": 901.2083847102343, + "y": 454.3585847553454 + }, + { + "x": 858.0682606350185, + "y": 454.3585847553454 + } + ] + }, + { + "id": "acyqefHVX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 14.730849260172626, + "left": 970.6535141800247, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 970.6535141800247, + "y": 408.04277921977797 + }, + { + "x": 985.3843634401973, + "y": 408.04277921977797 + }, + { + "x": 985.3843634401973, + "y": 442.77962132504115 + }, + { + "x": 970.6535141800247, + "y": 442.77962132504115 + } + ] + } + ], + "version": "2.2.0" + }, + "0e8e950654161bd6bc3c99c8e7e9cadc": { + "asset": { + "id": "0e8e950654161bd6bc3c99c8e7e9cadc", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.2 + }, + "regions": [ + { + "id": "xoXLHVovC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 25.25277435265105, + "left": 344.5951660758323, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 344.5951660758323, + "y": 352.2532894736842 + }, + { + "x": 369.84794042848335, + "y": 352.2532894736842 + }, + { + "x": 369.84794042848335, + "y": 382.77962132504115 + }, + { + "x": 344.5951660758323, + "y": 382.77962132504115 + } + ] + }, + { + "id": "eDHoCipzt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 17.894704718338815, + "width": 10.521973258323058, + "left": 253.05385904747226, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 253.05385904747226, + "y": 346.9901637027138 + }, + { + "x": 263.5758323057953, + "y": 346.9901637027138 + }, + { + "x": 263.5758323057953, + "y": 364.88486842105266 + }, + { + "x": 253.05385904747226, + "y": 364.88486842105266 + } + ] + }, + { + "id": "Q_xuBdnQ0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 54.714376541307026, + "left": 454.02387099260176, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 454.02387099260176, + "y": 358.56907894736844 + }, + { + "x": 508.73824753390875, + "y": 358.56907894736844 + }, + { + "x": 508.73824753390875, + "y": 390.1480263157895 + }, + { + "x": 454.02387099260176, + "y": 390.1480263157895 + } + ] + }, + { + "id": "5BofzP3sP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 34.722564734895194, + "left": 540.3042154747226, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 362.7796373869243 + }, + { + "x": 575.0267802096178, + "y": 362.7796373869243 + }, + { + "x": 575.0267802096178, + "y": 401.72698974609375 + }, + { + "x": 540.3042154747226, + "y": 401.72698974609375 + } + ] + }, + { + "id": "qlihU0MCI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 22.096177558569668, + "left": 637.1064850493218, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 371.2006578947368 + }, + { + "x": 659.2026626078915, + "y": 371.2006578947368 + }, + { + "x": 659.2026626078915, + "y": 406.9901637027138 + }, + { + "x": 637.1064850493218, + "y": 406.9901637027138 + } + ] + }, + { + "id": "oTg82Atvz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 58.92310804562269, + "left": 732.8566199136868, + "top": 381.727005807977 + }, + "points": [ + { + "x": 732.8566199136868, + "y": 381.727005807977 + }, + { + "x": 791.7797279593095, + "y": 381.727005807977 + }, + { + "x": 791.7797279593095, + "y": 424.88486842105266 + }, + { + "x": 732.8566199136868, + "y": 424.88486842105266 + } + ] + }, + { + "id": "f1gU9ouIk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 46.29672086929717, + "left": 867.5380510172627, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 867.5380510172627, + "y": 399.6217105263158 + }, + { + "x": 913.8347718865598, + "y": 399.6217105263158 + }, + { + "x": 913.8347718865598, + "y": 442.77962132504115 + }, + { + "x": 867.5380510172627, + "y": 442.77962132504115 + } + ] + }, + { + "id": "MW-Nyx_MJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 43.14012407521578, + "left": 960.1315890875462, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 960.1315890875462, + "y": 417.51646343030427 + }, + { + "x": 1003.271713162762, + "y": 417.51646343030427 + }, + { + "x": 1003.271713162762, + "y": 456.4638157894737 + }, + { + "x": 960.1315890875462, + "y": 456.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "fa5e7102c2b673d903f484171a4e632c": { + "asset": { + "id": "fa5e7102c2b673d903f484171a4e632c", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=30.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=30.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 30.05 + }, + "regions": [ + { + "id": "R4X88nbkP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 37.879161528976574, + "left": 220.43570823057954, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 220.43570823057954, + "y": 331.2006900185033 + }, + { + "x": 258.31486975955613, + "y": 331.2006900185033 + }, + { + "x": 258.31486975955613, + "y": 365.93753212376646 + }, + { + "x": 220.43570823057954, + "y": 365.93753212376646 + } + ] + }, + { + "id": "KxCr-Na8C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526283665707236, + "width": 22.096177558569668, + "left": 313.0291981350185, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 313.0291981350185, + "y": 350.14805843955594 + }, + { + "x": 335.1253756935882, + "y": 350.14805843955594 + }, + { + "x": 335.1253756935882, + "y": 380.6743421052632 + }, + { + "x": 313.0291981350185, + "y": 380.6743421052632 + } + ] + }, + { + "id": "QUJSnk3j5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 17.887446054254006, + "left": 471.91122071516645, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 362.7796373869243 + }, + { + "x": 489.7986667694205, + "y": 362.7796373869243 + }, + { + "x": 489.7986667694205, + "y": 392.25330553556745 + }, + { + "x": 471.91122071516645, + "y": 392.25330553556745 + } + ] + }, + { + "id": "8bGs6inNp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 41.035758323057955, + "left": 535.0431565967941, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 362.7796373869243 + }, + { + "x": 576.0789149198521, + "y": 362.7796373869243 + }, + { + "x": 576.0789149198521, + "y": 399.6217105263158 + }, + { + "x": 535.0431565967941, + "y": 399.6217105263158 + } + ] + }, + { + "id": "gfHmPJ3eS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 22.096177558569668, + "left": 642.3674475955611, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 371.2006578947368 + }, + { + "x": 664.4636251541307, + "y": 371.2006578947368 + }, + { + "x": 664.4636251541307, + "y": 402.7796052631579 + }, + { + "x": 642.3674475955611, + "y": 402.7796052631579 + } + ] + }, + { + "id": "dKCtId1_S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 19.99181180641184, + "left": 750.7439696362516, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 750.7439696362516, + "y": 389.0954107987253 + }, + { + "x": 770.7357814426634, + "y": 389.0954107987253 + }, + { + "x": 770.7357814426634, + "y": 431.2006578947368 + }, + { + "x": 750.7439696362516, + "y": 431.2006578947368 + } + ] + }, + { + "id": "TRu5elbtL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 35.77479577681874, + "left": 875.9556103575833, + "top": 405.9375 + }, + "points": [ + { + "x": 875.9556103575833, + "y": 405.9375 + }, + { + "x": 911.730406134402, + "y": 405.9375 + }, + { + "x": 911.730406134402, + "y": 452.25330553556745 + }, + { + "x": 875.9556103575833, + "y": 452.25330553556745 + } + ] + }, + { + "id": "FIlE08xc_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 33.67043002466091, + "left": 973.810110974106, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 973.810110974106, + "y": 410.14805843955594 + }, + { + "x": 1007.480540998767, + "y": 410.14805843955594 + }, + { + "x": 1007.480540998767, + "y": 460.67437422902964 + }, + { + "x": 973.810110974106, + "y": 460.67437422902964 + } + ] + } + ], + "version": "2.2.0" + }, + "ba54bee92aa661fc81b6deeccfd0273b": { + "asset": { + "id": "ba54bee92aa661fc81b6deeccfd0273b", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29.9 + }, + "regions": [ + { + "id": "nufnVLqKV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 26.304957228729965, + "left": 240.42747187114674, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 240.42747187114674, + "y": 322.77962132504115 + }, + { + "x": 266.7324290998767, + "y": 322.77962132504115 + }, + { + "x": 266.7324290998767, + "y": 361.7269736842105 + }, + { + "x": 240.42747187114674, + "y": 361.7269736842105 + } + ] + }, + { + "id": "dBwO05aRh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 16.835215012330455, + "left": 345.6473489519112, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 345.6473489519112, + "y": 323.83223684210526 + }, + { + "x": 362.4825639642417, + "y": 323.83223684210526 + }, + { + "x": 362.4825639642417, + "y": 364.88486842105266 + }, + { + "x": 345.6473489519112, + "y": 364.88486842105266 + } + ] + }, + { + "id": "CSeXjgBD3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 31.56596794081381, + "left": 467.7024892108508, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 467.7024892108508, + "y": 352.2532894736842 + }, + { + "x": 499.2684571516646, + "y": 352.2532894736842 + }, + { + "x": 499.2684571516646, + "y": 380.6743421052632 + }, + { + "x": 467.7024892108508, + "y": 380.6743421052632 + } + ] + }, + { + "id": "7b2-83Irp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 32.61819898273736, + "left": 545.5651780209618, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 370.1480423776727 + }, + { + "x": 578.1833770036991, + "y": 370.1480423776727 + }, + { + "x": 578.1833770036991, + "y": 411.20067395662005 + }, + { + "x": 545.5651780209618, + "y": 411.20067395662005 + } + ] + }, + { + "id": "zu0-sHCz2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 24.200543310727497, + "left": 638.1587160912454, + "top": 383.83223684210526 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 383.83223684210526 + }, + { + "x": 662.3592594019728, + "y": 383.83223684210526 + }, + { + "x": 662.3592594019728, + "y": 404.8848844829359 + }, + { + "x": 638.1587160912454, + "y": 404.8848844829359 + } + ] + }, + { + "id": "g13rSIr1m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 49.45341399506782, + "left": 737.0653514180025, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 737.0653514180025, + "y": 388.0427952816612 + }, + { + "x": 786.5187654130702, + "y": 388.0427952816612 + }, + { + "x": 786.5187654130702, + "y": 428.04276315789474 + }, + { + "x": 737.0653514180025, + "y": 428.04276315789474 + } + ] + }, + { + "id": "l-MrZ-Apk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 35.77469944512947, + "left": 871.7468788532676, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 871.7468788532676, + "y": 396.4638157894737 + }, + { + "x": 907.521578298397, + "y": 396.4638157894737 + }, + { + "x": 907.521578298397, + "y": 438.5691110711349 + }, + { + "x": 871.7468788532676, + "y": 438.5691110711349 + } + ] + }, + { + "id": "bxV3SmcX2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 59.97533908754624, + "left": 961.1837237977805, + "top": 413.305953176398 + }, + "points": [ + { + "x": 961.1837237977805, + "y": 413.305953176398 + }, + { + "x": 1021.1590628853268, + "y": 413.305953176398 + }, + { + "x": 1021.1590628853268, + "y": 458.56909500925167 + }, + { + "x": 961.1837237977805, + "y": 458.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "30f3085e59baec65bfdf6382c86e0874": { + "asset": { + "id": "30f3085e59baec65bfdf6382c86e0874", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29.75 + }, + "regions": [ + { + "id": "asMGWsZdS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 28.40937114673243, + "left": 243.58406866522813, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 243.58406866522813, + "y": 332.25330553556745 + }, + { + "x": 271.99343981196057, + "y": 332.25330553556745 + }, + { + "x": 271.99343981196057, + "y": 365.93753212376646 + }, + { + "x": 243.58406866522813, + "y": 365.93753212376646 + } + ] + }, + { + "id": "fXrC382jg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 29.46160218865598, + "left": 469.8068549630086, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 469.8068549630086, + "y": 342.7796052631579 + }, + { + "x": 499.2684571516646, + "y": 342.7796052631579 + }, + { + "x": 499.2684571516646, + "y": 391.2006900185033 + }, + { + "x": 469.8068549630086, + "y": 391.2006900185033 + } + ] + }, + { + "id": "WSLaf89T2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 42.08789303329223, + "left": 543.4608122688039, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 543.4608122688039, + "y": 362.7796373869243 + }, + { + "x": 585.5487053020962, + "y": 362.7796373869243 + }, + { + "x": 585.5487053020962, + "y": 396.4638157894737 + }, + { + "x": 543.4608122688039, + "y": 396.4638157894737 + } + ] + }, + { + "id": "tLHHdX3Sy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 23.14840860049322, + "left": 640.2630818434033, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 640.2630818434033, + "y": 372.2533215974507 + }, + { + "x": 663.4114904438965, + "y": 372.2533215974507 + }, + { + "x": 663.4114904438965, + "y": 406.9901637027138 + }, + { + "x": 640.2630818434033, + "y": 406.9901637027138 + } + ] + }, + { + "id": "kXsIc_c3U", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 37.879161528976574, + "left": 745.4830070900124, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 745.4830070900124, + "y": 378.5691110711349 + }, + { + "x": 783.3621686189889, + "y": 378.5691110711349 + }, + { + "x": 783.3621686189889, + "y": 430.1480423776727 + }, + { + "x": 745.4830070900124, + "y": 430.1480423776727 + } + ] + }, + { + "id": "ftE7Z7jUd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 16.835118680641184, + "left": 878.0600724414303, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 878.0600724414303, + "y": 393.30592105263156 + }, + { + "x": 894.8951911220715, + "y": 393.30592105263156 + }, + { + "x": 894.8951911220715, + "y": 442.77962132504115 + }, + { + "x": 878.0600724414303, + "y": 442.77962132504115 + } + ] + }, + { + "id": "JfUV38lFi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 28.40937114673243, + "left": 970.6535141800247, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 970.6535141800247, + "y": 412.2532894736842 + }, + { + "x": 999.062885326757, + "y": 412.2532894736842 + }, + { + "x": 999.062885326757, + "y": 457.5164794921875 + }, + { + "x": 970.6535141800247, + "y": 457.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "fbea92a1e6253c315e6138952719b326": { + "asset": { + "id": "fbea92a1e6253c315e6138952719b326", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29.6 + }, + "regions": [ + { + "id": "9vudMohxE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 22.096177558569668, + "left": 329.8643649815043, + "top": 319.621726588199 + }, + "points": [ + { + "x": 329.8643649815043, + "y": 319.621726588199 + }, + { + "x": 351.96054254007396, + "y": 319.621726588199 + }, + { + "x": 351.96054254007396, + "y": 359.62174265008224 + }, + { + "x": 329.8643649815043, + "y": 359.62174265008224 + } + ] + }, + { + "id": "HcDxqbB9d", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 30.513736898890258, + "left": 463.4936613748459, + "top": 345.9375 + }, + "points": [ + { + "x": 463.4936613748459, + "y": 345.9375 + }, + { + "x": 494.00739827373616, + "y": 345.9375 + }, + { + "x": 494.00739827373616, + "y": 383.83223684210526 + }, + { + "x": 463.4936613748459, + "y": 383.83223684210526 + } + ] + }, + { + "id": "Mq4VkESXV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 29.46150585696671, + "left": 540.3042154747226, + "top": 353.305953176398 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 353.305953176398 + }, + { + "x": 569.7657213316893, + "y": 353.305953176398 + }, + { + "x": 569.7657213316893, + "y": 394.3585847553454 + }, + { + "x": 540.3042154747226, + "y": 394.3585847553454 + } + ] + }, + { + "id": "yBlpwrX0R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 28.40937114673243, + "left": 633.9498882552405, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 633.9498882552405, + "y": 365.93753212376646 + }, + { + "x": 662.3592594019728, + "y": 365.93753212376646 + }, + { + "x": 662.3592594019728, + "y": 398.56909500925167 + }, + { + "x": 633.9498882552405, + "y": 398.56909500925167 + } + ] + }, + { + "id": "DqWkrqeCe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 47.348951911220716, + "left": 728.6477920776819, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 728.6477920776819, + "y": 375.41121633429276 + }, + { + "x": 775.9967439889026, + "y": 375.41121633429276 + }, + { + "x": 775.9967439889026, + "y": 422.7796373869243 + }, + { + "x": 728.6477920776819, + "y": 422.7796373869243 + } + ] + }, + { + "id": "SQJyQe0KW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 49.45331766337855, + "left": 865.4336852651048, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 865.4336852651048, + "y": 393.30592105263156 + }, + { + "x": 914.8870029284834, + "y": 393.30592105263156 + }, + { + "x": 914.8870029284834, + "y": 437.51644736842104 + }, + { + "x": 865.4336852651048, + "y": 437.51644736842104 + } + ] + }, + { + "id": "lAWMBv-Gu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 37.879161528976574, + "left": 964.3403205918619, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 964.3403205918619, + "y": 409.09539473684214 + }, + { + "x": 1002.2194821208385, + "y": 409.09539473684214 + }, + { + "x": 1002.2194821208385, + "y": 452.25330553556745 + }, + { + "x": 964.3403205918619, + "y": 452.25330553556745 + } + ] + } + ], + "version": "2.2.0" + }, + "0a798d6fcb2563e733484e4e9d71c644": { + "asset": { + "id": "0a798d6fcb2563e733484e4e9d71c644", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29.45 + }, + "regions": [ + { + "id": "U4OgP00it", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 42.08794119913687, + "left": 328.8121821054254, + "top": 328.0427952816612 + }, + "points": [ + { + "x": 328.8121821054254, + "y": 328.0427952816612 + }, + { + "x": 370.90012330456227, + "y": 328.0427952816612 + }, + { + "x": 370.90012330456227, + "y": 370.1480423776727 + }, + { + "x": 328.8121821054254, + "y": 370.1480423776727 + } + ] + }, + { + "id": "NeFQjOYnb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 37.879161528976574, + "left": 459.2848335388409, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 459.2848335388409, + "y": 333.30592105263156 + }, + { + "x": 497.1639950678175, + "y": 333.30592105263156 + }, + { + "x": 497.1639950678175, + "y": 378.5691110711349 + }, + { + "x": 459.2848335388409, + "y": 378.5691110711349 + } + ] + }, + { + "id": "nRHKrfOZm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 36.8270268187423, + "left": 535.0431565967941, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 346.9901637027138 + }, + { + "x": 571.8701834155364, + "y": 346.9901637027138 + }, + { + "x": 571.8701834155364, + "y": 398.56909500925167 + }, + { + "x": 535.0431565967941, + "y": 398.56909500925167 + } + ] + }, + { + "id": "4q2tya5zo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 24.200543310727497, + "left": 635.002119297164, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 635.002119297164, + "y": 363.8322529039885 + }, + { + "x": 659.2026626078915, + "y": 363.8322529039885 + }, + { + "x": 659.2026626078915, + "y": 403.8322689658717 + }, + { + "x": 635.002119297164, + "y": 403.8322689658717 + } + ] + }, + { + "id": "GAocyEA-1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 42.0879893649815, + "left": 738.117582459926, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 738.117582459926, + "y": 376.46383185135693 + }, + { + "x": 780.2055718249076, + "y": 376.46383185135693 + }, + { + "x": 780.2055718249076, + "y": 415.4111842105263 + }, + { + "x": 738.117582459926, + "y": 415.4111842105263 + } + ] + }, + { + "id": "GqWGxMjX8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 27.35723643649815, + "left": 869.6424167694205, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 869.6424167694205, + "y": 386.9901315789474 + }, + { + "x": 896.9996532059187, + "y": 386.9901315789474 + }, + { + "x": 896.9996532059187, + "y": 443.83223684210526 + }, + { + "x": 869.6424167694205, + "y": 443.83223684210526 + } + ] + }, + { + "id": "FFUKA6FAa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 34.722564734895194, + "left": 966.444782675709, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 966.444782675709, + "y": 408.04277921977797 + }, + { + "x": 1001.1673474106042, + "y": 408.04277921977797 + }, + { + "x": 1001.1673474106042, + "y": 442.77962132504115 + }, + { + "x": 966.444782675709, + "y": 442.77962132504115 + } + ] + } + ], + "version": "2.2.0" + }, + "682a75046f8d43e3645b4b6bb8915927": { + "asset": { + "id": "682a75046f8d43e3645b4b6bb8915927", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29.3 + }, + "regions": [ + { + "id": "byZkGFc9T", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 30.513785064734897, + "left": 335.1253756935882, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 335.1253756935882, + "y": 317.51644736842104 + }, + { + "x": 365.63916075832304, + "y": 317.51644736842104 + }, + { + "x": 365.63916075832304, + "y": 360.6743581671464 + }, + { + "x": 335.1253756935882, + "y": 360.6743581671464 + } + ] + }, + { + "id": "YIh9XERrz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 31.566016106658445, + "left": 458.232650662762, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 458.232650662762, + "y": 332.25330553556745 + }, + { + "x": 489.7986667694205, + "y": 332.25330553556745 + }, + { + "x": 489.7986667694205, + "y": 380.6743421052632 + }, + { + "x": 458.232650662762, + "y": 380.6743421052632 + } + ] + }, + { + "id": "H_D-8r1Dv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 37.879161528976574, + "left": 537.1476186806412, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 537.1476186806412, + "y": 349.09539473684214 + }, + { + "x": 575.0267802096178, + "y": 349.09539473684214 + }, + { + "x": 575.0267802096178, + "y": 393.30592105263156 + }, + { + "x": 537.1476186806412, + "y": 393.30592105263156 + } + ] + }, + { + "id": "MY4eII_6C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 37.879161528976574, + "left": 629.7410604192355, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 363.8322529039885 + }, + { + "x": 667.6202219482121, + "y": 363.8322529039885 + }, + { + "x": 667.6202219482121, + "y": 406.9901637027138 + }, + { + "x": 629.7410604192355, + "y": 406.9901637027138 + } + ] + }, + { + "id": "5ZRheHQzQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 27.35723643649815, + "left": 746.5351418002466, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 376.46383185135693 + }, + { + "x": 773.8923782367448, + "y": 376.46383185135693 + }, + { + "x": 773.8923782367448, + "y": 428.04276315789474 + }, + { + "x": 746.5351418002466, + "y": 428.04276315789474 + } + ] + }, + { + "id": "aSUaOny7v", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 41.035758323057955, + "left": 871.7468788532676, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 871.7468788532676, + "y": 391.2006900185033 + }, + { + "x": 912.7826371763256, + "y": 391.2006900185033 + }, + { + "x": 912.7826371763256, + "y": 437.51644736842104 + }, + { + "x": 871.7468788532676, + "y": 437.51644736842104 + } + ] + }, + { + "id": "jJNGbmiiv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 19.991715474722564, + "left": 972.7579762638718, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 972.7579762638718, + "y": 404.8848844829359 + }, + { + "x": 992.7496917385944, + "y": 404.8848844829359 + }, + { + "x": 992.7496917385944, + "y": 459.6217105263158 + }, + { + "x": 972.7579762638718, + "y": 459.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "bc837674e4a57f7d3ee35f1fcc1fdeee": { + "asset": { + "id": "bc837674e4a57f7d3ee35f1fcc1fdeee", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29.15 + }, + "regions": [ + { + "id": "r_24709lL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 22.096177558569668, + "left": 347.7517628699137, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 347.7517628699137, + "y": 331.2006900185033 + }, + { + "x": 369.84794042848335, + "y": 331.2006900185033 + }, + { + "x": 369.84794042848335, + "y": 369.09542686060854 + }, + { + "x": 347.7517628699137, + "y": 369.09542686060854 + } + ] + }, + { + "id": "P9gFXVj_f", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 38.93139257090012, + "left": 466.6502581689273, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 466.6502581689273, + "y": 333.30592105263156 + }, + { + "x": 505.58165073982735, + "y": 333.30592105263156 + }, + { + "x": 505.58165073982735, + "y": 381.727005807977 + }, + { + "x": 466.6502581689273, + "y": 381.727005807977 + } + ] + }, + { + "id": "0m54NbjHL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 26.3050053945746, + "left": 551.8783716091245, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 551.8783716091245, + "y": 359.62174265008224 + }, + { + "x": 578.1833770036991, + "y": 359.62174265008224 + }, + { + "x": 578.1833770036991, + "y": 393.30592105263156 + }, + { + "x": 551.8783716091245, + "y": 393.30592105263156 + } + ] + }, + { + "id": "FbFWL__GS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 24.200543310727497, + "left": 640.2630818434033, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 640.2630818434033, + "y": 368.04276315789474 + }, + { + "x": 664.4636251541307, + "y": 368.04276315789474 + }, + { + "x": 664.4636251541307, + "y": 402.7796052631579 + }, + { + "x": 640.2630818434033, + "y": 402.7796052631579 + } + ] + }, + { + "id": "11AAEjTty", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 31.56596794081381, + "left": 746.5351418002466, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 380.6743421052632 + }, + { + "x": 778.1011097410604, + "y": 380.6743421052632 + }, + { + "x": 778.1011097410604, + "y": 426.99014764083057 + }, + { + "x": 746.5351418002466, + "y": 426.99014764083057 + } + ] + }, + { + "id": "AAcWPfi2P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 36.82693048705302, + "left": 878.0600724414303, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 878.0600724414303, + "y": 390.1480263157895 + }, + { + "x": 914.8870029284834, + "y": 390.1480263157895 + }, + { + "x": 914.8870029284834, + "y": 446.9901315789474 + }, + { + "x": 878.0600724414303, + "y": 446.9901315789474 + } + ] + }, + { + "id": "yp_7OQIZk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 51.557779747225645, + "left": 962.235954839704, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 962.235954839704, + "y": 402.7796052631579 + }, + { + "x": 1013.7937345869298, + "y": 402.7796052631579 + }, + { + "x": 1013.7937345869298, + "y": 449.0954107987253 + }, + { + "x": 962.235954839704, + "y": 449.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "24c640f2e5d12d58d3e4b0d69a4962d4": { + "asset": { + "id": "24c640f2e5d12d58d3e4b0d69a4962d4", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=29.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=29", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 29 + }, + "regions": [ + { + "id": "259faxxoU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 16.83516684648582, + "left": 248.84507937731198, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 248.84507937731198, + "y": 313.3059371145148 + }, + { + "x": 265.6802462237978, + "y": 313.3059371145148 + }, + { + "x": 265.6802462237978, + "y": 353.305953176398 + }, + { + "x": 248.84507937731198, + "y": 353.305953176398 + } + ] + }, + { + "id": "9LrmjkGMx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 37.879161528976574, + "left": 354.06495645807644, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 354.06495645807644, + "y": 322.77962132504115 + }, + { + "x": 391.944117987053, + "y": 322.77962132504115 + }, + { + "x": 391.944117987053, + "y": 363.8322529039885 + }, + { + "x": 354.06495645807644, + "y": 363.8322529039885 + } + ] + }, + { + "id": "8PGkC4iCc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 37.879161528976574, + "left": 467.7024892108508, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 467.7024892108508, + "y": 334.3585847553454 + }, + { + "x": 505.58165073982735, + "y": 334.3585847553454 + }, + { + "x": 505.58165073982735, + "y": 373.3059371145148 + }, + { + "x": 467.7024892108508, + "y": 373.3059371145148 + } + ] + }, + { + "id": "4jespbTXO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 37.879161528976574, + "left": 556.0871994451295, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 340.67437422902964 + }, + { + "x": 593.966360974106, + "y": 340.67437422902964 + }, + { + "x": 593.966360974106, + "y": 393.30592105263156 + }, + { + "x": 556.0871994451295, + "y": 393.30592105263156 + } + ] + }, + { + "id": "GuH4na7xq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 35.77469944512947, + "left": 641.3153128853268, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 641.3153128853268, + "y": 359.62174265008224 + }, + { + "x": 677.0900123304563, + "y": 359.62174265008224 + }, + { + "x": 677.0900123304563, + "y": 401.72698974609375 + }, + { + "x": 641.3153128853268, + "y": 401.72698974609375 + } + ] + }, + { + "id": "rQlLOyRUH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 38.93139257090012, + "left": 746.5351418002466, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 380.6743421052632 + }, + { + "x": 785.4665343711467, + "y": 380.6743421052632 + }, + { + "x": 785.4665343711467, + "y": 421.7269736842105 + }, + { + "x": 746.5351418002466, + "y": 421.7269736842105 + } + ] + }, + { + "id": "q98SVBAbQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 33.67033369297164, + "left": 878.0600724414303, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 878.0600724414303, + "y": 389.0954107987253 + }, + { + "x": 911.730406134402, + "y": 389.0954107987253 + }, + { + "x": 911.730406134402, + "y": 437.51644736842104 + }, + { + "x": 878.0600724414303, + "y": 437.51644736842104 + } + ] + }, + { + "id": "br3mFJfao", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 29.46150585696671, + "left": 975.9145730579531, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 975.9145730579531, + "y": 409.09539473684214 + }, + { + "x": 1005.3760789149198, + "y": 409.09539473684214 + }, + { + "x": 1005.3760789149198, + "y": 450.1480263157895 + }, + { + "x": 975.9145730579531, + "y": 450.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "1e8d342f25fa867fbd7d0bf30d62eea1": { + "asset": { + "id": "1e8d342f25fa867fbd7d0bf30d62eea1", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=28.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=28.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 28.85 + }, + "regions": [ + { + "id": "WYWh5Ijop", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 43.14012407521578, + "left": 974.8623420160296, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 974.8623420160296, + "y": 410.14805843955594 + }, + { + "x": 1018.0024660912454, + "y": 410.14805843955594 + }, + { + "x": 1018.0024660912454, + "y": 457.5164794921875 + }, + { + "x": 974.8623420160296, + "y": 457.5164794921875 + } + ] + }, + { + "id": "TYdWj--X8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 50.5055487053021, + "left": 873.8512446054254, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 873.8512446054254, + "y": 386.9901315789474 + }, + { + "x": 924.3567933107275, + "y": 386.9901315789474 + }, + { + "x": 924.3567933107275, + "y": 439.621726588199 + }, + { + "x": 873.8512446054254, + "y": 439.621726588199 + } + ] + }, + { + "id": "f-zQhDrY4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 22.096177558569668, + "left": 759.1615289765722, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 759.1615289765722, + "y": 385.93751606188323 + }, + { + "x": 781.2577065351418, + "y": 385.93751606188323 + }, + { + "x": 781.2577065351418, + "y": 421.7269736842105 + }, + { + "x": 759.1615289765722, + "y": 421.7269736842105 + } + ] + }, + { + "id": "a81_LADr7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 34.722564734895194, + "left": 643.4196786374846, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 366.99014764083057 + }, + { + "x": 678.1422433723798, + "y": 366.99014764083057 + }, + { + "x": 678.1422433723798, + "y": 403.8322689658717 + }, + { + "x": 643.4196786374846, + "y": 403.8322689658717 + } + ] + }, + { + "id": "4E4Y3ybME", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 26.3050053945746, + "left": 561.3481619913687, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 346.9901637027138 + }, + { + "x": 587.6531673859433, + "y": 346.9901637027138 + }, + { + "x": 587.6531673859433, + "y": 398.56909500925167 + }, + { + "x": 561.3481619913687, + "y": 398.56909500925167 + } + ] + }, + { + "id": "sA-wwdgxo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 34.722564734895194, + "left": 479.2766453452528, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 340.67437422902964 + }, + { + "x": 513.9992100801479, + "y": 340.67437422902964 + }, + { + "x": 513.9992100801479, + "y": 380.6743421052632 + }, + { + "x": 479.2766453452528, + "y": 380.6743421052632 + } + ] + }, + { + "id": "RHnZwvesn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 19.9917636405672, + "left": 357.22155325215783, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 357.22155325215783, + "y": 335.41120027240953 + }, + { + "x": 377.21331689272506, + "y": 335.41120027240953 + }, + { + "x": 377.21331689272506, + "y": 361.7269736842105 + }, + { + "x": 357.22155325215783, + "y": 361.7269736842105 + } + ] + } + ], + "version": "2.2.0" + }, + "2938ffc4e30e7ca431616c38ae8aca94": { + "asset": { + "id": "2938ffc4e30e7ca431616c38ae8aca94", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=28.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=28.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 28.7 + }, + "regions": [ + { + "id": "1SY5Wag7n", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 46.29672086929717, + "left": 248.84507937731198, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 248.84507937731198, + "y": 313.3059371145148 + }, + { + "x": 295.14180024660914, + "y": 313.3059371145148 + }, + { + "x": 295.14180024660914, + "y": 355.4111842105263 + }, + { + "x": 248.84507937731198, + "y": 355.4111842105263 + } + ] + }, + { + "id": "tyAa9iKHX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 33.67033369297164, + "left": 480.3288763871763, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 480.3288763871763, + "y": 338.56909500925167 + }, + { + "x": 513.9992100801479, + "y": 338.56909500925167 + }, + { + "x": 513.9992100801479, + "y": 382.77962132504115 + }, + { + "x": 480.3288763871763, + "y": 382.77962132504115 + } + ] + }, + { + "id": "IDW0ARWPM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 38.93139257090012, + "left": 561.3481619913687, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 346.9901637027138 + }, + { + "x": 600.2795545622688, + "y": 346.9901637027138 + }, + { + "x": 600.2795545622688, + "y": 403.8322689658717 + }, + { + "x": 561.3481619913687, + "y": 403.8322689658717 + } + ] + }, + { + "id": "VSvD_gXi4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 44.192355117139336, + "left": 753.9005664303329, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 753.9005664303329, + "y": 370.1480423776727 + }, + { + "x": 798.0929215474723, + "y": 370.1480423776727 + }, + { + "x": 798.0929215474723, + "y": 429.09542686060854 + }, + { + "x": 753.9005664303329, + "y": 429.09542686060854 + } + ] + }, + { + "id": "d1BzojjRh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 19.991715474722564, + "left": 657.0982968557337, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 657.0982968557337, + "y": 378.5691110711349 + }, + { + "x": 677.0900123304563, + "y": 378.5691110711349 + }, + { + "x": 677.0900123304563, + "y": 412.2532894736842 + }, + { + "x": 657.0982968557337, + "y": 412.2532894736842 + } + ] + }, + { + "id": "mGD5ay-TU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 24.200543310727497, + "left": 892.7908253699137, + "top": 389.0954107987253 + }, + "points": [ + { + "x": 892.7908253699137, + "y": 389.0954107987253 + }, + { + "x": 916.9913686806412, + "y": 389.0954107987253 + }, + { + "x": 916.9913686806412, + "y": 443.83223684210526 + }, + { + "x": 892.7908253699137, + "y": 443.83223684210526 + } + ] + }, + { + "id": "-MWyD4LHT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 52.60991445745993, + "left": 978.018938810111, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 978.018938810111, + "y": 404.8848844829359 + }, + { + "x": 1030.628853267571, + "y": 404.8848844829359 + }, + { + "x": 1030.628853267571, + "y": 453.30592105263156 + }, + { + "x": 978.018938810111, + "y": 453.30592105263156 + } + ] + }, + { + "id": "wf8TK0mLu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 52.60996262330456, + "left": 348.8039457459926, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 348.8039457459926, + "y": 320.6743421052632 + }, + { + "x": 401.4139083692972, + "y": 320.6743421052632 + }, + { + "x": 401.4139083692972, + "y": 364.88486842105266 + }, + { + "x": 348.8039457459926, + "y": 364.88486842105266 + } + ] + } + ], + "version": "2.2.0" + }, + "a216e06e1e319a7c822eaa18e8ad549f": { + "asset": { + "id": "a216e06e1e319a7c822eaa18e8ad549f", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=28.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=28.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 28.55 + }, + "regions": [ + { + "id": "4bNhhoAhE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 26.304957228729965, + "left": 268.8368430178792, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 268.8368430178792, + "y": 309.09542686060854 + }, + { + "x": 295.14180024660914, + "y": 309.09542686060854 + }, + { + "x": 295.14180024660914, + "y": 355.4111842105263 + }, + { + "x": 268.8368430178792, + "y": 355.4111842105263 + } + ] + }, + { + "id": "JKo1c98Q2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 22.096177558569668, + "left": 373.00453722256475, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 373.00453722256475, + "y": 314.35855263157896 + }, + { + "x": 395.1007147811344, + "y": 314.35855263157896 + }, + { + "x": 395.1007147811344, + "y": 372.2533215974507 + }, + { + "x": 373.00453722256475, + "y": 372.2533215974507 + } + ] + }, + { + "id": "RxB8ZgKFP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 27.357140104808877, + "left": 489.7986667694205, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 489.7986667694205, + "y": 334.3585847553454 + }, + { + "x": 517.1558068742294, + "y": 334.3585847553454 + }, + { + "x": 517.1558068742294, + "y": 382.77962132504115 + }, + { + "x": 489.7986667694205, + "y": 382.77962132504115 + } + ] + }, + { + "id": "tbGqH33Un", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 46.29681720098644, + "left": 563.4525277435265, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 349.09539473684214 + }, + { + "x": 609.7493449445129, + "y": 349.09539473684214 + }, + { + "x": 609.7493449445129, + "y": 392.25330553556745 + }, + { + "x": 563.4525277435265, + "y": 392.25330553556745 + } + ] + }, + { + "id": "63o3Thm6Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 37.879161528976574, + "left": 654.9938347718866, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 654.9938347718866, + "y": 361.7269736842105 + }, + { + "x": 692.8729963008632, + "y": 361.7269736842105 + }, + { + "x": 692.8729963008632, + "y": 394.3585847553454 + }, + { + "x": 654.9938347718866, + "y": 394.3585847553454 + } + ] + }, + { + "id": "JTo3iWyRN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 27.357140104808877, + "left": 760.2137600184957, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 760.2137600184957, + "y": 378.5691110711349 + }, + { + "x": 787.5709001233046, + "y": 378.5691110711349 + }, + { + "x": 787.5709001233046, + "y": 436.46383185135693 + }, + { + "x": 760.2137600184957, + "y": 436.46383185135693 + } + ] + }, + { + "id": "L-X9qOfGM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 50.5055487053021, + "left": 894.8951911220715, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 894.8951911220715, + "y": 388.0427952816612 + }, + { + "x": 945.4007398273736, + "y": 388.0427952816612 + }, + { + "x": 945.4007398273736, + "y": 442.77962132504115 + }, + { + "x": 894.8951911220715, + "y": 442.77962132504115 + } + ] + }, + { + "id": "kM6a2YgPi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 26.304909062885326, + "left": 988.5409602342787, + "top": 405.9375 + }, + "points": [ + { + "x": 988.5409602342787, + "y": 405.9375 + }, + { + "x": 1014.845869297164, + "y": 405.9375 + }, + { + "x": 1014.845869297164, + "y": 454.3585847553454 + }, + { + "x": 988.5409602342787, + "y": 454.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "8899c9f9d2db09f8c7e8528a60ea4042": { + "asset": { + "id": "8899c9f9d2db09f8c7e8528a60ea4042", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=28.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=28.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 28.4 + }, + "regions": [ + { + "id": "ZfzQGf_0V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 41.035758323057955, + "left": 367.7435265104809, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 367.7435265104809, + "y": 320.6743421052632 + }, + { + "x": 408.77928483353884, + "y": 320.6743421052632 + }, + { + "x": 408.77928483353884, + "y": 376.46383185135693 + }, + { + "x": 367.7435265104809, + "y": 376.46383185135693 + } + ] + }, + { + "id": "y-0d2-WkY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 43.14012407521578, + "left": 498.21622610974106, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 498.21622610974106, + "y": 338.56909500925167 + }, + { + "x": 541.3563501849568, + "y": 338.56909500925167 + }, + { + "x": 541.3563501849568, + "y": 388.0427952816612 + }, + { + "x": 498.21622610974106, + "y": 388.0427952816612 + } + ] + }, + { + "id": "JaoAphluW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 33.67033369297164, + "left": 571.8701834155364, + "top": 353.305953176398 + }, + "points": [ + { + "x": 571.8701834155364, + "y": 353.305953176398 + }, + { + "x": 605.540517108508, + "y": 353.305953176398 + }, + { + "x": 605.540517108508, + "y": 397.5164794921875 + }, + { + "x": 571.8701834155364, + "y": 397.5164794921875 + } + ] + }, + { + "id": "oBG0jS2zx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 42.0879893649815, + "left": 763.370356812577, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 763.370356812577, + "y": 377.51644736842104 + }, + { + "x": 805.4583461775586, + "y": 377.51644736842104 + }, + { + "x": 805.4583461775586, + "y": 422.7796373869243 + }, + { + "x": 763.370356812577, + "y": 422.7796373869243 + } + ] + }, + { + "id": "rM4Fru5JJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 43.14012407521578, + "left": 662.3592594019728, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 662.3592594019728, + "y": 373.3059371145148 + }, + { + "x": 705.4993834771886, + "y": 373.3059371145148 + }, + { + "x": 705.4993834771886, + "y": 399.6217105263158 + }, + { + "x": 662.3592594019728, + "y": 399.6217105263158 + } + ] + }, + { + "id": "1iMJRg3YZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 39.9835272811344, + "left": 892.7908253699137, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 892.7908253699137, + "y": 395.41120027240953 + }, + { + "x": 932.774352651048, + "y": 395.41120027240953 + }, + { + "x": 932.774352651048, + "y": 446.9901315789474 + }, + { + "x": 892.7908253699137, + "y": 446.9901315789474 + } + ] + }, + { + "id": "rPEzPDVlH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 45.244586159062884, + "left": 992.7496917385944, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 992.7496917385944, + "y": 408.04277921977797 + }, + { + "x": 1037.9942778976572, + "y": 408.04277921977797 + }, + { + "x": 1037.9942778976572, + "y": 455.41120027240953 + }, + { + "x": 992.7496917385944, + "y": 455.41120027240953 + } + ] + } + ], + "version": "2.2.0" + }, + "5b6848aefa5feca4b98ad26c7f377c86": { + "asset": { + "id": "5b6848aefa5feca4b98ad26c7f377c86", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=28.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=28.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 28.25 + }, + "regions": [ + { + "id": "Rt5IZMEmc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 25.25277435265105, + "left": 379.3177308107275, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 379.3177308107275, + "y": 332.25330553556745 + }, + { + "x": 404.5705051633785, + "y": 332.25330553556745 + }, + { + "x": 404.5705051633785, + "y": 363.8322529039885 + }, + { + "x": 379.3177308107275, + "y": 363.8322529039885 + } + ] + }, + { + "id": "N5RsMLrIL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 22.096177558569668, + "left": 503.4771886559803, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 503.4771886559803, + "y": 334.3585847553454 + }, + { + "x": 525.57336621455, + "y": 334.3585847553454 + }, + { + "x": 525.57336621455, + "y": 381.727005807977 + }, + { + "x": 503.4771886559803, + "y": 381.727005807977 + } + ] + }, + { + "id": "CdXrQLvdv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 37.879161528976574, + "left": 577.1311459617756, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 358.56907894736844 + }, + { + "x": 615.0103074907522, + "y": 358.56907894736844 + }, + { + "x": 615.0103074907522, + "y": 398.56909500925167 + }, + { + "x": 577.1311459617756, + "y": 398.56909500925167 + } + ] + }, + { + "id": "jA1BrKIuW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 26.3050053945746, + "left": 662.3592594019728, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 662.3592594019728, + "y": 372.2533215974507 + }, + { + "x": 688.6642647965475, + "y": 372.2533215974507 + }, + { + "x": 688.6642647965475, + "y": 404.8848844829359 + }, + { + "x": 662.3592594019728, + "y": 404.8848844829359 + } + ] + }, + { + "id": "YSSHElLwz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 25.25277435265105, + "left": 765.4747225647349, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 765.4747225647349, + "y": 377.51644736842104 + }, + { + "x": 790.7274969173859, + "y": 377.51644736842104 + }, + { + "x": 790.7274969173859, + "y": 424.88486842105266 + }, + { + "x": 765.4747225647349, + "y": 424.88486842105266 + } + ] + }, + { + "id": "hnZ7tqh4F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 53.66214549938348, + "left": 887.5298628236745, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 887.5298628236745, + "y": 393.30592105263156 + }, + { + "x": 941.192008323058, + "y": 393.30592105263156 + }, + { + "x": 941.192008323058, + "y": 438.5691110711349 + }, + { + "x": 887.5298628236745, + "y": 438.5691110711349 + } + ] + }, + { + "id": "Zv9nHjBxR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 26.3050053945746, + "left": 996.9585195745992, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 996.9585195745992, + "y": 416.46384791324016 + }, + { + "x": 1023.2635249691739, + "y": 416.46384791324016 + }, + { + "x": 1023.2635249691739, + "y": 455.41120027240953 + }, + { + "x": 996.9585195745992, + "y": 455.41120027240953 + } + ] + } + ], + "version": "2.2.0" + }, + "2ff61568f809063c20c4f87d31f810e5": { + "asset": { + "id": "2ff61568f809063c20c4f87d31f810e5", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=28.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=28.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 28.1 + }, + "regions": [ + { + "id": "1QoricWq_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 28.40937114673243, + "left": 273.0456226880395, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 273.0456226880395, + "y": 309.09542686060854 + }, + { + "x": 301.45499383477187, + "y": 309.09542686060854 + }, + { + "x": 301.45499383477187, + "y": 349.09539473684214 + }, + { + "x": 273.0456226880395, + "y": 349.09539473684214 + } + ] + }, + { + "id": "BVHfZAtSI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 37.879161528976574, + "left": 377.21331689272506, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 377.21331689272506, + "y": 313.3059371145148 + }, + { + "x": 415.0924784217016, + "y": 313.3059371145148 + }, + { + "x": 415.0924784217016, + "y": 366.99014764083057 + }, + { + "x": 377.21331689272506, + "y": 366.99014764083057 + } + ] + }, + { + "id": "N0bAC6xRa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 29.46150585696671, + "left": 505.58165073982735, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 505.58165073982735, + "y": 333.30592105263156 + }, + { + "x": 535.0431565967941, + "y": 333.30592105263156 + }, + { + "x": 535.0431565967941, + "y": 379.621726588199 + }, + { + "x": 505.58165073982735, + "y": 379.621726588199 + } + ] + }, + { + "id": "wKhBxzf1g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 43.14022040690506, + "left": 572.9223181257706, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 572.9223181257706, + "y": 346.9901637027138 + }, + { + "x": 616.0625385326757, + "y": 346.9901637027138 + }, + { + "x": 616.0625385326757, + "y": 395.41120027240953 + }, + { + "x": 572.9223181257706, + "y": 395.41120027240953 + } + ] + }, + { + "id": "zyQLllrDJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 39.98362361282368, + "left": 658.150431565968, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 658.150431565968, + "y": 365.93753212376646 + }, + { + "x": 698.1340551787916, + "y": 365.93753212376646 + }, + { + "x": 698.1340551787916, + "y": 393.30592105263156 + }, + { + "x": 658.150431565968, + "y": 393.30592105263156 + } + ] + }, + { + "id": "THW9DS4py", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 43.14022040690506, + "left": 768.6313193588163, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 768.6313193588163, + "y": 378.5691110711349 + }, + { + "x": 811.7715397657213, + "y": 378.5691110711349 + }, + { + "x": 811.7715397657213, + "y": 431.2006578947368 + }, + { + "x": 768.6313193588163, + "y": 431.2006578947368 + } + ] + }, + { + "id": "4H7yd-xrA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 31.56596794081381, + "left": 896.9996532059187, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 896.9996532059187, + "y": 391.2006900185033 + }, + { + "x": 928.5656211467325, + "y": 391.2006900185033 + }, + { + "x": 928.5656211467325, + "y": 438.5691110711349 + }, + { + "x": 896.9996532059187, + "y": 438.5691110711349 + } + ] + }, + { + "id": "pu5W9M0fv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 22.096177558569668, + "left": 999.062885326757, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 999.062885326757, + "y": 408.04277921977797 + }, + { + "x": 1021.1590628853268, + "y": 408.04277921977797 + }, + { + "x": 1021.1590628853268, + "y": 449.0954107987253 + }, + { + "x": 999.062885326757, + "y": 449.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "dbd1dcf74a08b3e3bf656ddd420233a7": { + "asset": { + "id": "dbd1dcf74a08b3e3bf656ddd420233a7", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.95 + }, + "regions": [ + { + "id": "4MgbmGHGU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 27.357188270653513, + "left": 278.3066334001233, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 278.3066334001233, + "y": 314.35855263157896 + }, + { + "x": 305.6638216707768, + "y": 314.35855263157896 + }, + { + "x": 305.6638216707768, + "y": 366.99014764083057 + }, + { + "x": 278.3066334001233, + "y": 366.99014764083057 + } + ] + }, + { + "id": "eb72rhIeA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 21.04399468249075, + "left": 383.5265104808878, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 383.5265104808878, + "y": 323.83223684210526 + }, + { + "x": 404.5705051633785, + "y": 323.83223684210526 + }, + { + "x": 404.5705051633785, + "y": 356.46384791324016 + }, + { + "x": 383.5265104808878, + "y": 356.46384791324016 + } + ] + }, + { + "id": "PkQu-IHXn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 26.3050053945746, + "left": 503.4771886559803, + "top": 349.09539473684214 + }, + "points": [ + { + "x": 503.4771886559803, + "y": 349.09539473684214 + }, + { + "x": 529.7821940505548, + "y": 349.09539473684214 + }, + { + "x": 529.7821940505548, + "y": 380.6743421052632 + }, + { + "x": 503.4771886559803, + "y": 380.6743421052632 + } + ] + }, + { + "id": "w0_vNmcVc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 24.200543310727497, + "left": 573.9745491676942, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 348.04277921977797 + }, + { + "x": 598.1750924784217, + "y": 348.04277921977797 + }, + { + "x": 598.1750924784217, + "y": 403.8322689658717 + }, + { + "x": 573.9745491676942, + "y": 403.8322689658717 + } + ] + }, + { + "id": "SHaCjBZmU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 27.35723643649815, + "left": 664.4636251541307, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 664.4636251541307, + "y": 374.35855263157896 + }, + { + "x": 691.8208615906289, + "y": 374.35855263157896 + }, + { + "x": 691.8208615906289, + "y": 412.2532894736842 + }, + { + "x": 664.4636251541307, + "y": 412.2532894736842 + } + ] + }, + { + "id": "RZ4lbJiAF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 42.0879893649815, + "left": 763.370356812577, + "top": 379.621726588199 + }, + "points": [ + { + "x": 763.370356812577, + "y": 379.621726588199 + }, + { + "x": 805.4583461775586, + "y": 379.621726588199 + }, + { + "x": 805.4583461775586, + "y": 424.88486842105266 + }, + { + "x": 763.370356812577, + "y": 424.88486842105266 + } + ] + }, + { + "id": "LeXuvjAHj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 37.879161528976574, + "left": 892.7908253699137, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 892.7908253699137, + "y": 395.41120027240953 + }, + { + "x": 930.6699868988902, + "y": 395.41120027240953 + }, + { + "x": 930.6699868988902, + "y": 450.1480263157895 + }, + { + "x": 892.7908253699137, + "y": 450.1480263157895 + } + ] + }, + { + "id": "i0dRGm6P3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 52.6100107891492, + "left": 989.5930949445129, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 989.5930949445129, + "y": 412.2532894736842 + }, + { + "x": 1042.2031057336621, + "y": 412.2532894736842 + }, + { + "x": 1042.2031057336621, + "y": 457.5164794921875 + }, + { + "x": 989.5930949445129, + "y": 457.5164794921875 + } + ] + } + ], + "version": "2.2.0" + }, + "1dda6fc7d16af673256077e538a0d249": { + "asset": { + "id": "1dda6fc7d16af673256077e538a0d249", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.8 + }, + "regions": [ + { + "id": "jZf8zsRWj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 18.939580764488287, + "left": 273.0456226880395, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 273.0456226880395, + "y": 318.5691110711349 + }, + { + "x": 291.98520345252774, + "y": 318.5691110711349 + }, + { + "x": 291.98520345252774, + "y": 345.9375 + }, + { + "x": 273.0456226880395, + "y": 345.9375 + } + ] + }, + { + "id": "VgNIaxezZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 24.200591476572132, + "left": 380.3699136868064, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 380.3699136868064, + "y": 316.46383185135693 + }, + { + "x": 404.5705051633785, + "y": 316.46383185135693 + }, + { + "x": 404.5705051633785, + "y": 360.6743581671464 + }, + { + "x": 380.3699136868064, + "y": 360.6743581671464 + } + ] + }, + { + "id": "-_G9-DGES", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 24.20063964241677, + "left": 494.00739827373616, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 333.30592105263156 + }, + { + "x": 518.2080379161529, + "y": 333.30592105263156 + }, + { + "x": 518.2080379161529, + "y": 381.727005807977 + }, + { + "x": 494.00739827373616, + "y": 381.727005807977 + } + ] + }, + { + "id": "EyfDp6IIS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 44.192355117139336, + "left": 565.5569898273736, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 565.5569898273736, + "y": 344.8848844829359 + }, + { + "x": 609.7493449445129, + "y": 344.8848844829359 + }, + { + "x": 609.7493449445129, + "y": 394.3585847553454 + }, + { + "x": 565.5569898273736, + "y": 394.3585847553454 + } + ] + }, + { + "id": "HLi4XlpDU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 25.25277435265105, + "left": 660.254893649815, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 660.254893649815, + "y": 363.8322529039885 + }, + { + "x": 685.5076680024661, + "y": 363.8322529039885 + }, + { + "x": 685.5076680024661, + "y": 403.8322689658717 + }, + { + "x": 660.254893649815, + "y": 403.8322689658717 + } + ] + }, + { + "id": "EZLG29jvG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 29.46160218865598, + "left": 759.1615289765722, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 759.1615289765722, + "y": 368.04276315789474 + }, + { + "x": 788.6231311652281, + "y": 368.04276315789474 + }, + { + "x": 788.6231311652281, + "y": 418.56907894736844 + }, + { + "x": 759.1615289765722, + "y": 418.56907894736844 + } + ] + }, + { + "id": "xG7_zsu1A", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 46.29681720098644, + "left": 888.5819975339087, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 888.5819975339087, + "y": 397.5164794921875 + }, + { + "x": 934.8788147348952, + "y": 397.5164794921875 + }, + { + "x": 934.8788147348952, + "y": 439.621726588199 + }, + { + "x": 888.5819975339087, + "y": 439.621726588199 + } + ] + }, + { + "id": "ACxllyjSJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 32.61810265104809, + "left": 991.69755702836, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 991.69755702836, + "y": 403.8322689658717 + }, + { + "x": 1024.315659679408, + "y": 403.8322689658717 + }, + { + "x": 1024.315659679408, + "y": 448.0427952816612 + }, + { + "x": 991.69755702836, + "y": 448.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "1a8413bb783da796f6a9f53f67b2a654": { + "asset": { + "id": "1a8413bb783da796f6a9f53f67b2a654", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.65 + }, + "regions": [ + { + "id": "FsjN2p4cu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 23.14840860049322, + "left": 266.7324290998767, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 266.7324290998767, + "y": 313.3059371145148 + }, + { + "x": 289.8808377003699, + "y": 313.3059371145148 + }, + { + "x": 289.8808377003699, + "y": 348.04277921977797 + }, + { + "x": 266.7324290998767, + "y": 348.04277921977797 + } + ] + }, + { + "id": "EBTfQuV4Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 14.73080109432799, + "left": 382.4743276048089, + "top": 322.77962132504115 + }, + "points": [ + { + "x": 382.4743276048089, + "y": 322.77962132504115 + }, + { + "x": 397.2051286991369, + "y": 322.77962132504115 + }, + { + "x": 397.2051286991369, + "y": 358.56907894736844 + }, + { + "x": 382.4743276048089, + "y": 358.56907894736844 + } + ] + }, + { + "id": "e_dOiC0Vn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 24.200543310727497, + "left": 496.1118603575832, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 496.1118603575832, + "y": 335.41120027240953 + }, + { + "x": 520.3124036683107, + "y": 335.41120027240953 + }, + { + "x": 520.3124036683107, + "y": 370.1480423776727 + }, + { + "x": 496.1118603575832, + "y": 370.1480423776727 + } + ] + }, + { + "id": "qN5YRha-q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 23.14840860049322, + "left": 570.8179523736128, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 342.7796052631579 + }, + { + "x": 593.966360974106, + "y": 342.7796052631579 + }, + { + "x": 593.966360974106, + "y": 391.2006900185033 + }, + { + "x": 570.8179523736128, + "y": 391.2006900185033 + } + ] + }, + { + "id": "Z0CD7Mfcf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 19.99181180641184, + "left": 659.2026626078915, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 659.2026626078915, + "y": 370.1480423776727 + }, + { + "x": 679.1944744143034, + "y": 370.1480423776727 + }, + { + "x": 679.1944744143034, + "y": 408.04277921977797 + }, + { + "x": 659.2026626078915, + "y": 408.04277921977797 + } + ] + }, + { + "id": "GGBH87jMu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 43.14012407521578, + "left": 753.9005664303329, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 753.9005664303329, + "y": 375.41121633429276 + }, + { + "x": 797.0406905055487, + "y": 375.41121633429276 + }, + { + "x": 797.0406905055487, + "y": 421.7269736842105 + }, + { + "x": 753.9005664303329, + "y": 421.7269736842105 + } + ] + }, + { + "id": "HBZjMKB3g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 33.67033369297164, + "left": 890.6864596177559, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 890.6864596177559, + "y": 392.25330553556745 + }, + { + "x": 924.3567933107275, + "y": 392.25330553556745 + }, + { + "x": 924.3567933107275, + "y": 436.46383185135693 + }, + { + "x": 890.6864596177559, + "y": 436.46383185135693 + } + ] + }, + { + "id": "2nr2czLML", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 31.56596794081381, + "left": 985.3843634401973, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 985.3843634401973, + "y": 401.72698974609375 + }, + { + "x": 1016.9503313810111, + "y": 401.72698974609375 + }, + { + "x": 1016.9503313810111, + "y": 451.2006900185033 + }, + { + "x": 985.3843634401973, + "y": 451.2006900185033 + } + ] + } + ], + "version": "2.2.0" + }, + "17b4b238e863c733f521719ea5a296be": { + "asset": { + "id": "17b4b238e863c733f521719ea5a296be", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.5 + }, + "regions": [ + { + "id": "leT8Hxnwc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 33.67038185881628, + "left": 380.3699136868064, + "top": 319.621726588199 + }, + "points": [ + { + "x": 380.3699136868064, + "y": 319.621726588199 + }, + { + "x": 414.0402955456227, + "y": 319.621726588199 + }, + { + "x": 414.0402955456227, + "y": 358.56907894736844 + }, + { + "x": 380.3699136868064, + "y": 358.56907894736844 + } + ] + }, + { + "id": "OxLk8aOgP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 22.096177558569668, + "left": 494.00739827373616, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 329.0954107987253 + }, + { + "x": 516.1035758323058, + "y": 329.0954107987253 + }, + { + "x": 516.1035758323058, + "y": 375.41121633429276 + }, + { + "x": 494.00739827373616, + "y": 375.41121633429276 + } + ] + }, + { + "id": "d2z_XPdlx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 46.29672086929717, + "left": 556.0871994451295, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 339.6217105263158 + }, + { + "x": 602.3839203144266, + "y": 339.6217105263158 + }, + { + "x": 602.3839203144266, + "y": 399.6217105263158 + }, + { + "x": 556.0871994451295, + "y": 399.6217105263158 + } + ] + }, + { + "id": "64PGwC-o8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 22.096177558569668, + "left": 647.6285064734896, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 647.6285064734896, + "y": 358.56907894736844 + }, + { + "x": 669.7246840320591, + "y": 358.56907894736844 + }, + { + "x": 669.7246840320591, + "y": 393.30592105263156 + }, + { + "x": 647.6285064734896, + "y": 393.30592105263156 + } + ] + }, + { + "id": "BInsT_lUq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 19.99181180641184, + "left": 757.0571632244144, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 757.0571632244144, + "y": 374.35855263157896 + }, + { + "x": 777.0489750308261, + "y": 374.35855263157896 + }, + { + "x": 777.0489750308261, + "y": 421.7269736842105 + }, + { + "x": 757.0571632244144, + "y": 421.7269736842105 + } + ] + }, + { + "id": "1J9kClSsv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 45.244586159062884, + "left": 877.0078413995068, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 877.0078413995068, + "y": 386.9901315789474 + }, + { + "x": 922.2524275585697, + "y": 386.9901315789474 + }, + { + "x": 922.2524275585697, + "y": 434.35855263157896 + }, + { + "x": 877.0078413995068, + "y": 434.35855263157896 + } + ] + }, + { + "id": "mAAWy98PC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 29.46150585696671, + "left": 975.9145730579531, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 975.9145730579531, + "y": 402.7796052631579 + }, + { + "x": 1005.3760789149198, + "y": 402.7796052631579 + }, + { + "x": 1005.3760789149198, + "y": 450.1480263157895 + }, + { + "x": 975.9145730579531, + "y": 450.1480263157895 + } + ] + } + ], + "version": "2.2.0" + }, + "52a52ece9ff8c26638f9277a75c7c49c": { + "asset": { + "id": "52a52ece9ff8c26638f9277a75c7c49c", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.35 + }, + "regions": [ + { + "id": "KLn32reRl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 35.77479577681874, + "left": 361.43033292231814, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 361.43033292231814, + "y": 309.09542686060854 + }, + { + "x": 397.2051286991369, + "y": 309.09542686060854 + }, + { + "x": 397.2051286991369, + "y": 356.46384791324016 + }, + { + "x": 361.43033292231814, + "y": 356.46384791324016 + } + ] + }, + { + "id": "JlytSQ52u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 31.56596794081381, + "left": 483.4854731812577, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 483.4854731812577, + "y": 333.30592105263156 + }, + { + "x": 515.0514411220715, + "y": 333.30592105263156 + }, + { + "x": 515.0514411220715, + "y": 374.35855263157896 + }, + { + "x": 483.4854731812577, + "y": 374.35855263157896 + } + ] + }, + { + "id": "XK3ewwjPm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 31.56596794081381, + "left": 553.9827373612824, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 553.9827373612824, + "y": 338.56909500925167 + }, + { + "x": 585.5487053020962, + "y": 338.56909500925167 + }, + { + "x": 585.5487053020962, + "y": 378.5691110711349 + }, + { + "x": 553.9827373612824, + "y": 378.5691110711349 + } + ] + }, + { + "id": "qS91bgocE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 35.77479577681874, + "left": 741.2741792540074, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 366.99014764083057 + }, + { + "x": 777.0489750308261, + "y": 366.99014764083057 + }, + { + "x": 777.0489750308261, + "y": 423.8322529039885 + }, + { + "x": 741.2741792540074, + "y": 423.8322529039885 + } + ] + }, + { + "id": "48v-c79w8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 29.46160218865598, + "left": 642.3674475955611, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 351.20067395662005 + }, + { + "x": 671.829049784217, + "y": 351.20067395662005 + }, + { + "x": 671.829049784217, + "y": 389.0954107987253 + }, + { + "x": 642.3674475955611, + "y": 389.0954107987253 + } + ] + }, + { + "id": "4jx6vki4z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 34.722564734895194, + "left": 866.4858199753392, + "top": 379.621726588199 + }, + "points": [ + { + "x": 866.4858199753392, + "y": 379.621726588199 + }, + { + "x": 901.2083847102343, + "y": 379.621726588199 + }, + { + "x": 901.2083847102343, + "y": 431.2006578947368 + }, + { + "x": 866.4858199753392, + "y": 431.2006578947368 + } + ] + }, + { + "id": "EpQKLhT8F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 29.46150585696671, + "left": 963.2881858816277, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 963.2881858816277, + "y": 395.41120027240953 + }, + { + "x": 992.7496917385944, + "y": 395.41120027240953 + }, + { + "x": 992.7496917385944, + "y": 448.0427952816612 + }, + { + "x": 963.2881858816277, + "y": 448.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "f9256d9abaa43d0423f7fb4d10381175": { + "asset": { + "id": "f9256d9abaa43d0423f7fb4d10381175", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.2 + }, + "regions": [ + { + "id": "thde9-HyO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 26.304957228729965, + "left": 249.8972622533909, + "top": 301.7269736842105 + }, + "points": [ + { + "x": 249.8972622533909, + "y": 301.7269736842105 + }, + { + "x": 276.2022194821208, + "y": 301.7269736842105 + }, + { + "x": 276.2022194821208, + "y": 341.72698974609375 + }, + { + "x": 249.8972622533909, + "y": 341.72698974609375 + } + ] + }, + { + "id": "Z29XbmPR9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 16.83516684648582, + "left": 365.63916075832304, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 365.63916075832304, + "y": 305.93753212376646 + }, + { + "x": 382.4743276048089, + "y": 305.93753212376646 + }, + { + "x": 382.4743276048089, + "y": 354.3585686934622 + }, + { + "x": 365.63916075832304, + "y": 354.3585686934622 + } + ] + }, + { + "id": "jrZ1ZRs66", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 46.29672086929717, + "left": 950.6617987053021, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 950.6617987053021, + "y": 393.30592105263156 + }, + { + "x": 996.9585195745992, + "y": 393.30592105263156 + }, + { + "x": 996.9585195745992, + "y": 440.6743421052632 + }, + { + "x": 950.6617987053021, + "y": 440.6743421052632 + } + ] + }, + { + "id": "sNGT4iJAE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 36.82693048705302, + "left": 864.3814542231813, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 864.3814542231813, + "y": 378.5691110711349 + }, + { + "x": 901.2083847102343, + "y": 378.5691110711349 + }, + { + "x": 901.2083847102343, + "y": 435.41121633429276 + }, + { + "x": 864.3814542231813, + "y": 435.41121633429276 + } + ] + }, + { + "id": "FLnfVMy8d", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 34.722564734895194, + "left": 741.2741792540074, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 364.88486842105266 + }, + { + "x": 775.9967439889026, + "y": 364.88486842105266 + }, + { + "x": 775.9967439889026, + "y": 404.8848844829359 + }, + { + "x": 741.2741792540074, + "y": 404.8848844829359 + } + ] + }, + { + "id": "B6_4tmc8P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 19.99181180641184, + "left": 643.4196786374846, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 358.56907894736844 + }, + { + "x": 663.4114904438965, + "y": 358.56907894736844 + }, + { + "x": 663.4114904438965, + "y": 396.4638157894737 + }, + { + "x": 643.4196786374846, + "y": 396.4638157894737 + } + ] + }, + { + "id": "bMuQdFhOB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 22.096177558569668, + "left": 556.0871994451295, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 350.14805843955594 + }, + { + "x": 578.1833770036991, + "y": 350.14805843955594 + }, + { + "x": 578.1833770036991, + "y": 385.93751606188323 + }, + { + "x": 556.0871994451295, + "y": 385.93751606188323 + } + ] + }, + { + "id": "yWvV2LK1_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 34.722564734895194, + "left": 476.1200485511714, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 326.9901315789474 + }, + { + "x": 510.8426132860666, + "y": 326.9901315789474 + }, + { + "x": 510.8426132860666, + "y": 370.1480423776727 + }, + { + "x": 476.1200485511714, + "y": 370.1480423776727 + } + ] + } + ], + "version": "2.2.0" + }, + "d91f962ff7b033c03c9ab4e61968d190": { + "asset": { + "id": "d91f962ff7b033c03c9ab4e61968d190", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=27.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=27.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 27.05 + }, + "regions": [ + { + "id": "sGHCFBodN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 34.722564734895194, + "left": 959.0793580456227, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 959.0793580456227, + "y": 395.41120027240953 + }, + { + "x": 993.8019227805179, + "y": 395.41120027240953 + }, + { + "x": 993.8019227805179, + "y": 431.2006578947368 + }, + { + "x": 959.0793580456227, + "y": 431.2006578947368 + } + ] + }, + { + "id": "uwdTAUpyk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 27.357140104808877, + "left": 862.2770884710235, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 378.5691110711349 + }, + { + "x": 889.6342285758324, + "y": 378.5691110711349 + }, + { + "x": 889.6342285758324, + "y": 429.09542686060854 + }, + { + "x": 862.2770884710235, + "y": 429.09542686060854 + } + ] + }, + { + "id": "Zaz7H-n05", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 23.14840860049322, + "left": 746.5351418002466, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 355.4111842105263 + }, + { + "x": 769.6835504007398, + "y": 355.4111842105263 + }, + { + "x": 769.6835504007398, + "y": 403.8322689658717 + }, + { + "x": 746.5351418002466, + "y": 403.8322689658717 + } + ] + }, + { + "id": "BurZFBRwu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 21.043946516646116, + "left": 641.3153128853268, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 641.3153128853268, + "y": 337.5164794921875 + }, + { + "x": 662.3592594019728, + "y": 337.5164794921875 + }, + { + "x": 662.3592594019728, + "y": 384.88490054481906 + }, + { + "x": 641.3153128853268, + "y": 384.88490054481906 + } + ] + }, + { + "id": "r7RVDtG-x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 35.77479577681874, + "left": 548.7217748150432, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 548.7217748150432, + "y": 335.41120027240953 + }, + { + "x": 584.4965705918619, + "y": 335.41120027240953 + }, + { + "x": 584.4965705918619, + "y": 383.83223684210526 + }, + { + "x": 548.7217748150432, + "y": 383.83223684210526 + } + ] + }, + { + "id": "YPRm4ROQB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 26.3050053945746, + "left": 479.2766453452528, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 311.2006578947368 + }, + { + "x": 505.58165073982735, + "y": 311.2006578947368 + }, + { + "x": 505.58165073982735, + "y": 353.305953176398 + }, + { + "x": 479.2766453452528, + "y": 353.305953176398 + } + ] + }, + { + "id": "Wg-bmo8Zl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 49.45336582922318, + "left": 357.22155325215783, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 357.22155325215783, + "y": 313.3059371145148 + }, + { + "x": 406.674919081381, + "y": 313.3059371145148 + }, + { + "x": 406.674919081381, + "y": 358.56907894736844 + }, + { + "x": 357.22155325215783, + "y": 358.56907894736844 + } + ] + }, + { + "id": "88-gpLIZc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 29.46160218865598, + "left": 254.10604192355117, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 254.10604192355117, + "y": 304.88486842105266 + }, + { + "x": 283.5676441122072, + "y": 304.88486842105266 + }, + { + "x": 283.5676441122072, + "y": 340.67437422902964 + }, + { + "x": 254.10604192355117, + "y": 340.67437422902964 + } + ] + } + ], + "version": "2.2.0" + }, + "3fba35b68a622945764b709613ad1131": { + "asset": { + "id": "3fba35b68a622945764b709613ad1131", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26.9 + }, + "regions": [ + { + "id": "COkcxjpRK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 35.77479577681874, + "left": 254.10604192355117, + "top": 291.20067395662005 + }, + "points": [ + { + "x": 254.10604192355117, + "y": 291.20067395662005 + }, + { + "x": 289.8808377003699, + "y": 291.20067395662005 + }, + { + "x": 289.8808377003699, + "y": 333.30592105263156 + }, + { + "x": 254.10604192355117, + "y": 333.30592105263156 + } + ] + }, + { + "id": "65WyXOlUc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 19.99181180641184, + "left": 374.05672009864367, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 374.05672009864367, + "y": 309.09542686060854 + }, + { + "x": 394.0485319050555, + "y": 309.09542686060854 + }, + { + "x": 394.0485319050555, + "y": 343.8322689658717 + }, + { + "x": 374.05672009864367, + "y": 343.8322689658717 + } + ] + }, + { + "id": "pGwq9A_3A", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 30.513833230579532, + "left": 478.22441430332924, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 478.22441430332924, + "y": 310.1480423776727 + }, + { + "x": 508.73824753390875, + "y": 310.1480423776727 + }, + { + "x": 508.73824753390875, + "y": 359.62174265008224 + }, + { + "x": 478.22441430332924, + "y": 359.62174265008224 + } + ] + }, + { + "id": "N4JhhA2sJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 26.3050053945746, + "left": 958.0271270036991, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 958.0271270036991, + "y": 380.6743421052632 + }, + { + "x": 984.3321323982738, + "y": 380.6743421052632 + }, + { + "x": 984.3321323982738, + "y": 437.51644736842104 + }, + { + "x": 958.0271270036991, + "y": 437.51644736842104 + } + ] + }, + { + "id": "7QisXm7sQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 33.67033369297164, + "left": 862.2770884710235, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 375.41121633429276 + }, + { + "x": 895.947422163995, + "y": 375.41121633429276 + }, + { + "x": 895.947422163995, + "y": 428.04276315789474 + }, + { + "x": 862.2770884710235, + "y": 428.04276315789474 + } + ] + }, + { + "id": "zdhyWjIz_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 38.93139257090012, + "left": 741.2741792540074, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 357.51646343030427 + }, + { + "x": 780.2055718249076, + "y": 357.51646343030427 + }, + { + "x": 780.2055718249076, + "y": 404.8848844829359 + }, + { + "x": 741.2741792540074, + "y": 404.8848844829359 + } + ] + }, + { + "id": "2QtBIPYkA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 29.46160218865598, + "left": 632.8976572133168, + "top": 341.72698974609375 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 341.72698974609375 + }, + { + "x": 662.3592594019728, + "y": 341.72698974609375 + }, + { + "x": 662.3592594019728, + "y": 377.51644736842104 + }, + { + "x": 632.8976572133168, + "y": 377.51644736842104 + } + ] + }, + { + "id": "Io8jR8p4Z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 25.25277435265105, + "left": 549.7740058569667, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 342.7796052631579 + }, + { + "x": 575.0267802096178, + "y": 342.7796052631579 + }, + { + "x": 575.0267802096178, + "y": 374.35855263157896 + }, + { + "x": 549.7740058569667, + "y": 374.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "7fee7d15ae1bf9b615a682d3d106238a": { + "asset": { + "id": "7fee7d15ae1bf9b615a682d3d106238a", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26.75 + }, + "regions": [ + { + "id": "pQNi66hdP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 25.25277435265105, + "left": 371.95235434648583, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 371.95235434648583, + "y": 310.1480423776727 + }, + { + "x": 397.2051286991369, + "y": 310.1480423776727 + }, + { + "x": 397.2051286991369, + "y": 353.305953176398 + }, + { + "x": 371.95235434648583, + "y": 353.305953176398 + } + ] + }, + { + "id": "jDmZaPSc9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 64.18416692355117, + "left": 954.8705302096178, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 954.8705302096178, + "y": 385.93751606188323 + }, + { + "x": 1019.0546971331689, + "y": 385.93751606188323 + }, + { + "x": 1019.0546971331689, + "y": 430.1480423776727 + }, + { + "x": 954.8705302096178, + "y": 430.1480423776727 + } + ] + }, + { + "id": "7pQyDRIgH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 38.93139257090012, + "left": 867.5380510172627, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 867.5380510172627, + "y": 375.41121633429276 + }, + { + "x": 906.4694435881628, + "y": 375.41121633429276 + }, + { + "x": 906.4694435881628, + "y": 413.305953176398 + }, + { + "x": 867.5380510172627, + "y": 413.305953176398 + } + ] + }, + { + "id": "Adc8lYlxh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 24.200543310727497, + "left": 747.5873728421702, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 747.5873728421702, + "y": 354.3585686934622 + }, + { + "x": 771.7879161528977, + "y": 354.3585686934622 + }, + { + "x": 771.7879161528977, + "y": 402.7796052631579 + }, + { + "x": 747.5873728421702, + "y": 402.7796052631579 + } + ] + }, + { + "id": "QqiHatLg-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 56.81874229346486, + "left": 627.6366946670777, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 627.6366946670777, + "y": 352.2532894736842 + }, + { + "x": 684.4554369605426, + "y": 352.2532894736842 + }, + { + "x": 684.4554369605426, + "y": 390.1480263157895 + }, + { + "x": 627.6366946670777, + "y": 390.1480263157895 + } + ] + }, + { + "id": "JV1LXhomN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 24.200543310727497, + "left": 556.0871994451295, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 340.67437422902964 + }, + { + "x": 580.2877427558569, + "y": 340.67437422902964 + }, + { + "x": 580.2877427558569, + "y": 372.2533215974507 + }, + { + "x": 556.0871994451295, + "y": 372.2533215974507 + } + ] + }, + { + "id": "m9OyfPuex", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 23.14840860049322, + "left": 481.38101109741064, + "top": 321.727005807977 + }, + "points": [ + { + "x": 481.38101109741064, + "y": 321.727005807977 + }, + { + "x": 504.52941969790385, + "y": 321.727005807977 + }, + { + "x": 504.52941969790385, + "y": 370.1480423776727 + }, + { + "x": 481.38101109741064, + "y": 370.1480423776727 + } + ] + } + ], + "version": "2.2.0" + }, + "ad06ddbfefab214fe42e598541ca4862": { + "asset": { + "id": "ad06ddbfefab214fe42e598541ca4862", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26.6 + }, + "regions": [ + { + "id": "fFDQvAvox", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 18.939580764488287, + "left": 266.7324290998767, + "top": 301.7269736842105 + }, + "points": [ + { + "x": 266.7324290998767, + "y": 301.7269736842105 + }, + { + "x": 285.672009864365, + "y": 301.7269736842105 + }, + { + "x": 285.672009864365, + "y": 334.3585847553454 + }, + { + "x": 266.7324290998767, + "y": 334.3585847553454 + } + ] + }, + { + "id": "WOIxMFjnN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 22.096177558569668, + "left": 377.21331689272506, + "top": 301.7269736842105 + }, + "points": [ + { + "x": 377.21331689272506, + "y": 301.7269736842105 + }, + { + "x": 399.3094944512947, + "y": 301.7269736842105 + }, + { + "x": 399.3094944512947, + "y": 343.8322689658717 + }, + { + "x": 377.21331689272506, + "y": 343.8322689658717 + } + ] + }, + { + "id": "a-vB8PbLp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 19.999983938116777, + "width": 15.782983970406905, + "left": 486.6420699753391, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 329.0954107987253 + }, + { + "x": 502.425053945746, + "y": 329.0954107987253 + }, + { + "x": 502.425053945746, + "y": 349.09539473684214 + }, + { + "x": 486.6420699753391, + "y": 349.09539473684214 + } + ] + }, + { + "id": "LNHyY6U_C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 42.08789303329223, + "left": 549.7740058569667, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 334.3585847553454 + }, + { + "x": 591.861898890259, + "y": 334.3585847553454 + }, + { + "x": 591.861898890259, + "y": 370.1480423776727 + }, + { + "x": 549.7740058569667, + "y": 370.1480423776727 + } + ] + }, + { + "id": "pMe4WI5FM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 33.67043002466091, + "left": 743.3785450061653, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 743.3785450061653, + "y": 356.46384791324016 + }, + { + "x": 777.0489750308261, + "y": 356.46384791324016 + }, + { + "x": 777.0489750308261, + "y": 399.6217105263158 + }, + { + "x": 743.3785450061653, + "y": 399.6217105263158 + } + ] + }, + { + "id": "uCiVOFgHZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 30.513736898890258, + "left": 861.2248574290999, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 861.2248574290999, + "y": 371.2006578947368 + }, + { + "x": 891.7385943279902, + "y": 371.2006578947368 + }, + { + "x": 891.7385943279902, + "y": 417.51646343030427 + }, + { + "x": 861.2248574290999, + "y": 417.51646343030427 + } + ] + }, + { + "id": "9Wp9SUvin", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 21.044042848335387, + "left": 964.3403205918619, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 964.3403205918619, + "y": 388.0427952816612 + }, + { + "x": 985.3843634401973, + "y": 388.0427952816612 + }, + { + "x": 985.3843634401973, + "y": 426.99014764083057 + }, + { + "x": 964.3403205918619, + "y": 426.99014764083057 + } + ] + } + ], + "version": "2.2.0" + }, + "18b9645d9066ee7fccd0f164efc92677": { + "asset": { + "id": "18b9645d9066ee7fccd0f164efc92677", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26.45 + }, + "regions": [ + { + "id": "dxWHJ6ZIr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 32.61810265104809, + "left": 963.2881858816277, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 963.2881858816277, + "y": 388.0427952816612 + }, + { + "x": 995.9062885326757, + "y": 388.0427952816612 + }, + { + "x": 995.9062885326757, + "y": 425.93753212376646 + }, + { + "x": 963.2881858816277, + "y": 425.93753212376646 + } + ] + }, + { + "id": "tBDDAKce_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 50.5055487053021, + "left": 863.3292231812577, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 863.3292231812577, + "y": 364.88486842105266 + }, + { + "x": 913.8347718865598, + "y": 364.88486842105266 + }, + { + "x": 913.8347718865598, + "y": 417.51646343030427 + }, + { + "x": 863.3292231812577, + "y": 417.51646343030427 + } + ] + }, + { + "id": "yoRKNu-N5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 32.61819898273736, + "left": 747.5873728421702, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 747.5873728421702, + "y": 355.4111842105263 + }, + { + "x": 780.2055718249076, + "y": 355.4111842105263 + }, + { + "x": 780.2055718249076, + "y": 401.72698974609375 + }, + { + "x": 747.5873728421702, + "y": 401.72698974609375 + } + ] + }, + { + "id": "H8S4VxxeY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 17.887349722564736, + "left": 649.7328722256474, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 649.7328722256474, + "y": 355.4111842105263 + }, + { + "x": 667.6202219482121, + "y": 355.4111842105263 + }, + { + "x": 667.6202219482121, + "y": 379.621726588199 + }, + { + "x": 649.7328722256474, + "y": 379.621726588199 + } + ] + }, + { + "id": "LmxxcPIVa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 25.25277435265105, + "left": 558.1915651972873, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 339.6217105263158 + }, + { + "x": 583.4443395499384, + "y": 339.6217105263158 + }, + { + "x": 583.4443395499384, + "y": 373.3059371145148 + }, + { + "x": 558.1915651972873, + "y": 373.3059371145148 + } + ] + }, + { + "id": "0euk65ebm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 26.304909062885326, + "left": 483.4854731812577, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 483.4854731812577, + "y": 323.83223684210526 + }, + { + "x": 509.790382244143, + "y": 323.83223684210526 + }, + { + "x": 509.790382244143, + "y": 354.3585686934622 + }, + { + "x": 483.4854731812577, + "y": 354.3585686934622 + } + ] + } + ], + "version": "2.2.0" + }, + "bd81fec61d4d69b447463ede86a0ad0b": { + "asset": { + "id": "bd81fec61d4d69b447463ede86a0ad0b", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26.3 + }, + "regions": [ + { + "id": "l8A3wdPnd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 32.61819898273736, + "left": 964.3403205918619, + "top": 386.9901315789474 + }, + "points": [ + { + "x": 964.3403205918619, + "y": 386.9901315789474 + }, + { + "x": 996.9585195745992, + "y": 386.9901315789474 + }, + { + "x": 996.9585195745992, + "y": 429.09542686060854 + }, + { + "x": 964.3403205918619, + "y": 429.09542686060854 + } + ] + }, + { + "id": "1q3oY3qiF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 30.513833230579532, + "left": 866.4858199753392, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 866.4858199753392, + "y": 373.3059371145148 + }, + { + "x": 896.9996532059187, + "y": 373.3059371145148 + }, + { + "x": 896.9996532059187, + "y": 414.3585686934622 + }, + { + "x": 866.4858199753392, + "y": 414.3585686934622 + } + ] + }, + { + "id": "ppH71tMW5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 25.25277435265105, + "left": 752.8483353884094, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 752.8483353884094, + "y": 358.56907894736844 + }, + { + "x": 778.1011097410604, + "y": 358.56907894736844 + }, + { + "x": 778.1011097410604, + "y": 399.6217105263158 + }, + { + "x": 752.8483353884094, + "y": 399.6217105263158 + } + ] + }, + { + "id": "ezINJHGNV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 21.044042848335387, + "left": 648.6806411837238, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 648.6806411837238, + "y": 352.2532894736842 + }, + { + "x": 669.7246840320591, + "y": 352.2532894736842 + }, + { + "x": 669.7246840320591, + "y": 391.2006900185033 + }, + { + "x": 648.6806411837238, + "y": 391.2006900185033 + } + ] + }, + { + "id": "iK-M4PJeZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 27.357140104808877, + "left": 561.3481619913687, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 561.3481619913687, + "y": 329.0954107987253 + }, + { + "x": 588.7053020961775, + "y": 329.0954107987253 + }, + { + "x": 588.7053020961775, + "y": 368.04276315789474 + }, + { + "x": 561.3481619913687, + "y": 368.04276315789474 + } + ] + }, + { + "id": "i6LYtjhtK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 19.99181180641184, + "left": 488.74643572749693, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 488.74643572749693, + "y": 323.83223684210526 + }, + { + "x": 508.73824753390875, + "y": 323.83223684210526 + }, + { + "x": 508.73824753390875, + "y": 360.6743581671464 + }, + { + "x": 488.74643572749693, + "y": 360.6743581671464 + } + ] + }, + { + "id": "FE6oBJNH0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 15.782983970406905, + "left": 388.78752119297167, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 388.78752119297167, + "y": 315.41121633429276 + }, + { + "x": 404.5705051633785, + "y": 315.41121633429276 + }, + { + "x": 404.5705051633785, + "y": 342.7796052631579 + }, + { + "x": 388.78752119297167, + "y": 342.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "ef9b8a16c40eea495151bcbf980b0b53": { + "asset": { + "id": "ef9b8a16c40eea495151bcbf980b0b53", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26.15 + }, + "regions": [ + { + "id": "aWg7YImD9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 32.61819898273736, + "left": 482.43324213933414, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 482.43324213933414, + "y": 314.35855263157896 + }, + { + "x": 515.0514411220715, + "y": 314.35855263157896 + }, + { + "x": 515.0514411220715, + "y": 366.99014764083057 + }, + { + "x": 482.43324213933414, + "y": 366.99014764083057 + } + ] + }, + { + "id": "OqP2RUAiT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 23.14840860049322, + "left": 557.1393341553637, + "top": 331.2006900185033 + }, + "points": [ + { + "x": 557.1393341553637, + "y": 331.2006900185033 + }, + { + "x": 580.2877427558569, + "y": 331.2006900185033 + }, + { + "x": 580.2877427558569, + "y": 373.3059371145148 + }, + { + "x": 557.1393341553637, + "y": 373.3059371145148 + } + ] + }, + { + "id": "04IhPaw5c", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 17.887349722564736, + "left": 643.4196786374846, + "top": 353.305953176398 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 353.305953176398 + }, + { + "x": 661.3070283600493, + "y": 353.305953176398 + }, + { + "x": 661.3070283600493, + "y": 382.77962132504115 + }, + { + "x": 643.4196786374846, + "y": 382.77962132504115 + } + ] + }, + { + "id": "Pwdo503XP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 36.82693048705302, + "left": 744.4307760480888, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 354.3585686934622 + }, + { + "x": 781.2577065351418, + "y": 354.3585686934622 + }, + { + "x": 781.2577065351418, + "y": 399.6217105263158 + }, + { + "x": 744.4307760480888, + "y": 399.6217105263158 + } + ] + }, + { + "id": "aYfah_-Eb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 33.67033369297164, + "left": 858.0682606350185, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 858.0682606350185, + "y": 364.88486842105266 + }, + { + "x": 891.7385943279902, + "y": 364.88486842105266 + }, + { + "x": 891.7385943279902, + "y": 416.46384791324016 + }, + { + "x": 858.0682606350185, + "y": 416.46384791324016 + } + ] + }, + { + "id": "CRb_XE63V", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 29.46160218865598, + "left": 959.0793580456227, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 959.0793580456227, + "y": 392.25330553556745 + }, + { + "x": 988.5409602342787, + "y": 392.25330553556745 + }, + { + "x": 988.5409602342787, + "y": 431.2006578947368 + }, + { + "x": 959.0793580456227, + "y": 431.2006578947368 + } + ] + } + ], + "version": "2.2.0" + }, + "2f8b6dde46403d17d0292b280a1f801b": { + "asset": { + "id": "2f8b6dde46403d17d0292b280a1f801b", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=26.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=26", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 26 + }, + "regions": [ + { + "id": "TMMTQjX8m", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 22.096177558569668, + "left": 480.3288763871763, + "top": 319.621726588199 + }, + "points": [ + { + "x": 480.3288763871763, + "y": 319.621726588199 + }, + { + "x": 502.425053945746, + "y": 319.621726588199 + }, + { + "x": 502.425053945746, + "y": 355.4111842105263 + }, + { + "x": 480.3288763871763, + "y": 355.4111842105263 + } + ] + }, + { + "id": "gdFfwbV1A", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 14.730752928483355, + "left": 558.1915651972873, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 325.93751606188323 + }, + { + "x": 572.9223181257706, + "y": 325.93751606188323 + }, + { + "x": 572.9223181257706, + "y": 374.35855263157896 + }, + { + "x": 558.1915651972873, + "y": 374.35855263157896 + } + ] + }, + { + "id": "mhVCquPmB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 13.678618218249076, + "left": 643.4196786374846, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 343.8322689658717 + }, + { + "x": 657.0982968557337, + "y": 343.8322689658717 + }, + { + "x": 657.0982968557337, + "y": 373.3059371145148 + }, + { + "x": 643.4196786374846, + "y": 373.3059371145148 + } + ] + }, + { + "id": "P8apJSxt4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 22.096177558569668, + "left": 749.691738594328, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 749.691738594328, + "y": 358.56907894736844 + }, + { + "x": 771.7879161528977, + "y": 358.56907894736844 + }, + { + "x": 771.7879161528977, + "y": 400.67437422902964 + }, + { + "x": 749.691738594328, + "y": 400.67437422902964 + } + ] + }, + { + "id": "O_zINBLSq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 42.08789303329223, + "left": 855.9638948828607, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 375.41121633429276 + }, + { + "x": 898.0517879161529, + "y": 375.41121633429276 + }, + { + "x": 898.0517879161529, + "y": 414.3585686934622 + }, + { + "x": 855.9638948828607, + "y": 414.3585686934622 + } + ] + }, + { + "id": "Pdc4ceVhh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 35.77469944512947, + "left": 953.8183954993835, + "top": 393.30592105263156 + }, + "points": [ + { + "x": 953.8183954993835, + "y": 393.30592105263156 + }, + { + "x": 989.5930949445129, + "y": 393.30592105263156 + }, + { + "x": 989.5930949445129, + "y": 431.2006578947368 + }, + { + "x": 953.8183954993835, + "y": 431.2006578947368 + } + ] + } + ], + "version": "2.2.0" + }, + "a9dfeee1f223599138d64d03afd037ee": { + "asset": { + "id": "a9dfeee1f223599138d64d03afd037ee", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=25.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=25.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 25.85 + }, + "regions": [ + { + "id": "4fCmcVZKC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 35.77479577681874, + "left": 952.7661644574599, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 952.7661644574599, + "y": 398.56909500925167 + }, + { + "x": 988.5409602342787, + "y": 398.56909500925167 + }, + { + "x": 988.5409602342787, + "y": 434.35855263157896 + }, + { + "x": 952.7661644574599, + "y": 434.35855263157896 + } + ] + }, + { + "id": "Bn1xN9IA_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 29.46160218865598, + "left": 857.0160295930949, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 857.0160295930949, + "y": 373.3059371145148 + }, + { + "x": 886.4776317817509, + "y": 373.3059371145148 + }, + { + "x": 886.4776317817509, + "y": 419.62174265008224 + }, + { + "x": 857.0160295930949, + "y": 419.62174265008224 + } + ] + }, + { + "id": "k0atklfcO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 44.192355117139336, + "left": 739.1698135018496, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 739.1698135018496, + "y": 361.7269736842105 + }, + { + "x": 783.3621686189889, + "y": 361.7269736842105 + }, + { + "x": 783.3621686189889, + "y": 395.41120027240953 + }, + { + "x": 739.1698135018496, + "y": 395.41120027240953 + } + ] + }, + { + "id": "qfeFjBojg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 19.99181180641184, + "left": 636.0542540073983, + "top": 345.9375 + }, + "points": [ + { + "x": 636.0542540073983, + "y": 345.9375 + }, + { + "x": 656.0460658138102, + "y": 345.9375 + }, + { + "x": 656.0460658138102, + "y": 376.46383185135693 + }, + { + "x": 636.0542540073983, + "y": 376.46383185135693 + } + ] + }, + { + "id": "KWHuJAYsp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473716334292764, + "width": 52.60991445745993, + "left": 539.2519844327991, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 339.6217105263158 + }, + { + "x": 591.861898890259, + "y": 339.6217105263158 + }, + { + "x": 591.861898890259, + "y": 369.09542686060854 + }, + { + "x": 539.2519844327991, + "y": 369.09542686060854 + } + ] + }, + { + "id": "ZwoSwkUyt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 42.0879893649815, + "left": 471.91122071516645, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 320.6743421052632 + }, + { + "x": 513.9992100801479, + "y": 320.6743421052632 + }, + { + "x": 513.9992100801479, + "y": 361.7269736842105 + }, + { + "x": 471.91122071516645, + "y": 361.7269736842105 + } + ] + } + ], + "version": "2.2.0" + }, + "44fe6b85ddfef8bada57fb70bdf29963": { + "asset": { + "id": "44fe6b85ddfef8bada57fb70bdf29963", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=25.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=25.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 25.7 + }, + "regions": [ + { + "id": "l0VSQFyZf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 34.722564734895194, + "left": 361.43033292231814, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 361.43033292231814, + "y": 304.88486842105266 + }, + { + "x": 396.1528976572133, + "y": 304.88486842105266 + }, + { + "x": 396.1528976572133, + "y": 350.14805843955594 + }, + { + "x": 361.43033292231814, + "y": 350.14805843955594 + } + ] + }, + { + "id": "PQUUAAAf-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315821597450658, + "width": 39.9835272811344, + "left": 460.3370645807645, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 460.3370645807645, + "y": 330.1480263157895 + }, + { + "x": 500.3205918618989, + "y": 330.1480263157895 + }, + { + "x": 500.3205918618989, + "y": 356.46384791324016 + }, + { + "x": 460.3370645807645, + "y": 356.46384791324016 + } + ] + }, + { + "id": "jLiYJBajm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526283665707236, + "width": 28.40937114673243, + "left": 546.6174090628854, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 546.6174090628854, + "y": 337.5164794921875 + }, + { + "x": 575.0267802096178, + "y": 337.5164794921875 + }, + { + "x": 575.0267802096178, + "y": 368.04276315789474 + }, + { + "x": 546.6174090628854, + "y": 368.04276315789474 + } + ] + }, + { + "id": "2q-2ibqZy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 30.513833230579532, + "left": 629.7410604192355, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 358.56907894736844 + }, + { + "x": 660.254893649815, + "y": 358.56907894736844 + }, + { + "x": 660.254893649815, + "y": 385.93751606188323 + }, + { + "x": 629.7410604192355, + "y": 385.93751606188323 + } + ] + }, + { + "id": "mEwzZvTrY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 34.722564734895194, + "left": 734.9609856658446, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 734.9609856658446, + "y": 357.51646343030427 + }, + { + "x": 769.6835504007398, + "y": 357.51646343030427 + }, + { + "x": 769.6835504007398, + "y": 386.9901315789474 + }, + { + "x": 734.9609856658446, + "y": 386.9901315789474 + } + ] + }, + { + "id": "MYU0q8H6e", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 51.557779747225645, + "left": 845.441873458693, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 845.441873458693, + "y": 378.5691110711349 + }, + { + "x": 896.9996532059187, + "y": 378.5691110711349 + }, + { + "x": 896.9996532059187, + "y": 422.7796373869243 + }, + { + "x": 845.441873458693, + "y": 422.7796373869243 + } + ] + }, + { + "id": "AKsloelyQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 28.40937114673243, + "left": 950.6617987053021, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 950.6617987053021, + "y": 397.5164794921875 + }, + { + "x": 979.0711698520346, + "y": 397.5164794921875 + }, + { + "x": 979.0711698520346, + "y": 437.51644736842104 + }, + { + "x": 950.6617987053021, + "y": 437.51644736842104 + } + ] + } + ], + "version": "2.2.0" + }, + "fc9d3a89fec2734ec74952959cda9a86": { + "asset": { + "id": "fc9d3a89fec2734ec74952959cda9a86", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=25.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=25.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 25.55 + }, + "regions": [ + { + "id": "sfQElkSMT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 24.200543310727497, + "left": 368.79575755240444, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 368.79575755240444, + "y": 306.99014764083057 + }, + { + "x": 392.9963008631319, + "y": 306.99014764083057 + }, + { + "x": 392.9963008631319, + "y": 364.88486842105266 + }, + { + "x": 368.79575755240444, + "y": 364.88486842105266 + } + ] + }, + { + "id": "9Xd1vtdto", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 27.357140104808877, + "left": 472.96345175709, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 472.96345175709, + "y": 324.88490054481906 + }, + { + "x": 500.3205918618989, + "y": 324.88490054481906 + }, + { + "x": 500.3205918618989, + "y": 364.88486842105266 + }, + { + "x": 472.96345175709, + "y": 364.88486842105266 + } + ] + }, + { + "id": "p30YnPUWN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 25.25277435265105, + "left": 551.8783716091245, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 551.8783716091245, + "y": 338.56909500925167 + }, + { + "x": 577.1311459617756, + "y": 338.56909500925167 + }, + { + "x": 577.1311459617756, + "y": 377.51644736842104 + }, + { + "x": 551.8783716091245, + "y": 377.51644736842104 + } + ] + }, + { + "id": "oPGq5QwMf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 26.3050053945746, + "left": 633.9498882552405, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 633.9498882552405, + "y": 344.8848844829359 + }, + { + "x": 660.254893649815, + "y": 344.8848844829359 + }, + { + "x": 660.254893649815, + "y": 384.88490054481906 + }, + { + "x": 633.9498882552405, + "y": 384.88490054481906 + } + ] + }, + { + "id": "pFuw3irrB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 31.56596794081381, + "left": 733.9087546239211, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 358.56907894736844 + }, + { + "x": 765.4747225647349, + "y": 358.56907894736844 + }, + { + "x": 765.4747225647349, + "y": 403.8322689658717 + }, + { + "x": 733.9087546239211, + "y": 403.8322689658717 + } + ] + }, + { + "id": "tt4Hv5143", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 36.82693048705302, + "left": 848.5984702527744, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 848.5984702527744, + "y": 375.41121633429276 + }, + { + "x": 885.4254007398274, + "y": 375.41121633429276 + }, + { + "x": 885.4254007398274, + "y": 424.88486842105266 + }, + { + "x": 848.5984702527744, + "y": 424.88486842105266 + } + ] + }, + { + "id": "STWwIszSk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 38.93129623921085, + "left": 947.5052019112208, + "top": 392.25330553556745 + }, + "points": [ + { + "x": 947.5052019112208, + "y": 392.25330553556745 + }, + { + "x": 986.4364981504316, + "y": 392.25330553556745 + }, + { + "x": 986.4364981504316, + "y": 434.35855263157896 + }, + { + "x": 947.5052019112208, + "y": 434.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "0cd22f57b5054b19356e7a26cc825e1e": { + "asset": { + "id": "0cd22f57b5054b19356e7a26cc825e1e", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=25.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=25.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 25.4 + }, + "regions": [ + { + "id": "7U1RdJFKE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 31.56596794081381, + "left": 953.8183954993835, + "top": 405.9375 + }, + "points": [ + { + "x": 953.8183954993835, + "y": 405.9375 + }, + { + "x": 985.3843634401973, + "y": 405.9375 + }, + { + "x": 985.3843634401973, + "y": 440.6743421052632 + }, + { + "x": 953.8183954993835, + "y": 440.6743421052632 + } + ] + }, + { + "id": "jjdO_zff5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 43.14012407521578, + "left": 855.9638948828607, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 377.51644736842104 + }, + { + "x": 899.1040189580765, + "y": 377.51644736842104 + }, + { + "x": 899.1040189580765, + "y": 421.7269736842105 + }, + { + "x": 855.9638948828607, + "y": 421.7269736842105 + } + ] + }, + { + "id": "u1dMPJKRR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 36.82693048705302, + "left": 747.5873728421702, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 747.5873728421702, + "y": 366.99014764083057 + }, + { + "x": 784.4143033292232, + "y": 366.99014764083057 + }, + { + "x": 784.4143033292232, + "y": 411.20067395662005 + }, + { + "x": 747.5873728421702, + "y": 411.20067395662005 + } + ] + }, + { + "id": "mBauWzb_W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 34.722564734895194, + "left": 638.1587160912454, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 355.4111842105263 + }, + { + "x": 672.8812808261406, + "y": 355.4111842105263 + }, + { + "x": 672.8812808261406, + "y": 390.1480263157895 + }, + { + "x": 638.1587160912454, + "y": 390.1480263157895 + } + ] + }, + { + "id": "8jjIJJTrr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 46.29672086929717, + "left": 551.8783716091245, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 551.8783716091245, + "y": 332.25330553556745 + }, + { + "x": 598.1750924784217, + "y": 332.25330553556745 + }, + { + "x": 598.1750924784217, + "y": 372.2533215974507 + }, + { + "x": 551.8783716091245, + "y": 372.2533215974507 + } + ] + }, + { + "id": "2IirFi4EM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 27.357140104808877, + "left": 483.4854731812577, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 483.4854731812577, + "y": 326.9901315789474 + }, + { + "x": 510.8426132860666, + "y": 326.9901315789474 + }, + { + "x": 510.8426132860666, + "y": 358.56907894736844 + }, + { + "x": 483.4854731812577, + "y": 358.56907894736844 + } + ] + } + ], + "version": "2.2.0" + }, + "d169c722d003504ac67d04df856d6afa": { + "asset": { + "id": "d169c722d003504ac67d04df856d6afa", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=25.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=25.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 25.25 + }, + "regions": [ + { + "id": "9Brw-3R9X", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 19.991715474722564, + "left": 963.2881858816277, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 963.2881858816277, + "y": 399.6217105263158 + }, + { + "x": 983.2799013563503, + "y": 399.6217105263158 + }, + { + "x": 983.2799013563503, + "y": 450.1480263157895 + }, + { + "x": 963.2881858816277, + "y": 450.1480263157895 + } + ] + }, + { + "id": "SN7-XJwS5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526283665707236, + "width": 22.096177558569668, + "left": 858.0682606350185, + "top": 388.0427952816612 + }, + "points": [ + { + "x": 858.0682606350185, + "y": 388.0427952816612 + }, + { + "x": 880.1644381935881, + "y": 388.0427952816612 + }, + { + "x": 880.1644381935881, + "y": 418.56907894736844 + }, + { + "x": 858.0682606350185, + "y": 418.56907894736844 + } + ] + }, + { + "id": "NPBm5xnOP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 28.40937114673243, + "left": 748.6396038840937, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 748.6396038840937, + "y": 356.46384791324016 + }, + { + "x": 777.0489750308261, + "y": 356.46384791324016 + }, + { + "x": 777.0489750308261, + "y": 398.56909500925167 + }, + { + "x": 748.6396038840937, + "y": 398.56909500925167 + } + ] + }, + { + "id": "4Tw6NRQRe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 29.46160218865598, + "left": 633.9498882552405, + "top": 348.04277921977797 + }, + "points": [ + { + "x": 633.9498882552405, + "y": 348.04277921977797 + }, + { + "x": 663.4114904438965, + "y": 348.04277921977797 + }, + { + "x": 663.4114904438965, + "y": 381.727005807977 + }, + { + "x": 633.9498882552405, + "y": 381.727005807977 + } + ] + }, + { + "id": "p1YXcPGwu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 30.513833230579532, + "left": 557.1393341553637, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 557.1393341553637, + "y": 330.1480263157895 + }, + { + "x": 587.6531673859433, + "y": 330.1480263157895 + }, + { + "x": 587.6531673859433, + "y": 379.621726588199 + }, + { + "x": 557.1393341553637, + "y": 379.621726588199 + } + ] + }, + { + "id": "yN5yQFlUl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 25.25277435265105, + "left": 481.38101109741064, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 481.38101109741064, + "y": 326.9901315789474 + }, + { + "x": 506.6337854500617, + "y": 326.9901315789474 + }, + { + "x": 506.6337854500617, + "y": 360.6743581671464 + }, + { + "x": 481.38101109741064, + "y": 360.6743581671464 + } + ] + }, + { + "id": "qD7JpwrL-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 26.3050053945746, + "left": 377.21331689272506, + "top": 299.62174265008224 + }, + "points": [ + { + "x": 377.21331689272506, + "y": 299.62174265008224 + }, + { + "x": 403.5183222872996, + "y": 299.62174265008224 + }, + { + "x": 403.5183222872996, + "y": 342.7796052631579 + }, + { + "x": 377.21331689272506, + "y": 342.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "992aa631d6d2660bf36141bea554f292": { + "asset": { + "id": "992aa631d6d2660bf36141bea554f292", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=25.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=25.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 25.1 + }, + "regions": [ + { + "id": "cBf62XPzC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 52.60991445745993, + "left": 959.0793580456227, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 959.0793580456227, + "y": 409.09539473684214 + }, + { + "x": 1011.6892725030826, + "y": 409.09539473684214 + }, + { + "x": 1011.6892725030826, + "y": 449.0954107987253 + }, + { + "x": 959.0793580456227, + "y": 449.0954107987253 + } + ] + }, + { + "id": "oLXjn4ABd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 26.3050053945746, + "left": 860.1726263871764, + "top": 383.83223684210526 + }, + "points": [ + { + "x": 860.1726263871764, + "y": 383.83223684210526 + }, + { + "x": 886.4776317817509, + "y": 383.83223684210526 + }, + { + "x": 886.4776317817509, + "y": 424.88486842105266 + }, + { + "x": 860.1726263871764, + "y": 424.88486842105266 + } + ] + }, + { + "id": "Mvm2LhhfB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 39.9835272811344, + "left": 744.4307760480888, + "top": 359.62174265008224 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 359.62174265008224 + }, + { + "x": 784.4143033292232, + "y": 359.62174265008224 + }, + { + "x": 784.4143033292232, + "y": 405.9375 + }, + { + "x": 744.4307760480888, + "y": 405.9375 + } + ] + }, + { + "id": "TeKk40MAD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 38.93139257090012, + "left": 632.8976572133168, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 351.20067395662005 + }, + { + "x": 671.829049784217, + "y": 351.20067395662005 + }, + { + "x": 671.829049784217, + "y": 378.5691110711349 + }, + { + "x": 632.8976572133168, + "y": 378.5691110711349 + } + ] + }, + { + "id": "Ga94oy_Vt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 39.9835272811344, + "left": 549.7740058569667, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 335.41120027240953 + }, + { + "x": 589.7575331381012, + "y": 335.41120027240953 + }, + { + "x": 589.7575331381012, + "y": 376.46383185135693 + }, + { + "x": 549.7740058569667, + "y": 376.46383185135693 + } + ] + }, + { + "id": "wpEYj-E9g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 28.40937114673243, + "left": 481.38101109741064, + "top": 319.621726588199 + }, + "points": [ + { + "x": 481.38101109741064, + "y": 319.621726588199 + }, + { + "x": 509.790382244143, + "y": 319.621726588199 + }, + { + "x": 509.790382244143, + "y": 358.56907894736844 + }, + { + "x": 481.38101109741064, + "y": 358.56907894736844 + } + ] + }, + { + "id": "hOrEnUR6G", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 17.894752903988486, + "width": 33.67038185881628, + "left": 373.00453722256475, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 373.00453722256475, + "y": 333.30592105263156 + }, + { + "x": 406.674919081381, + "y": 333.30592105263156 + }, + { + "x": 406.674919081381, + "y": 351.20067395662005 + }, + { + "x": 373.00453722256475, + "y": 351.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "e5c889bdd0cc4cb2111bb5ac29cae3a9": { + "asset": { + "id": "e5c889bdd0cc4cb2111bb5ac29cae3a9", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24.95 + }, + "regions": [ + { + "id": "TuyfsT3dS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.157878674958884, + "width": 21.043946516646116, + "left": 378.26554793464857, + "top": 313.3059371145148 + }, + "points": [ + { + "x": 378.26554793464857, + "y": 313.3059371145148 + }, + { + "x": 399.3094944512947, + "y": 313.3059371145148 + }, + { + "x": 399.3094944512947, + "y": 336.4638157894737 + }, + { + "x": 378.26554793464857, + "y": 336.4638157894737 + } + ] + }, + { + "id": "prb1ZzqT-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 25.25277435265105, + "left": 476.1200485511714, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 309.09542686060854 + }, + { + "x": 501.37282290382245, + "y": 309.09542686060854 + }, + { + "x": 501.37282290382245, + "y": 357.51646343030427 + }, + { + "x": 476.1200485511714, + "y": 357.51646343030427 + } + ] + }, + { + "id": "JxA-mDswL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 49.45341399506782, + "left": 544.5129469790382, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 544.5129469790382, + "y": 329.0954107987253 + }, + { + "x": 593.966360974106, + "y": 329.0954107987253 + }, + { + "x": 593.966360974106, + "y": 370.1480423776727 + }, + { + "x": 544.5129469790382, + "y": 370.1480423776727 + } + ] + }, + { + "id": "p4i11OzWg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 17.894752903988486, + "width": 25.25277435265105, + "left": 640.2630818434033, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 640.2630818434033, + "y": 355.4111842105263 + }, + { + "x": 665.5158561960543, + "y": 355.4111842105263 + }, + { + "x": 665.5158561960543, + "y": 373.3059371145148 + }, + { + "x": 640.2630818434033, + "y": 373.3059371145148 + } + ] + }, + { + "id": "OLz8CfoL7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 39.9835272811344, + "left": 745.4830070900124, + "top": 355.4111842105263 + }, + "points": [ + { + "x": 745.4830070900124, + "y": 355.4111842105263 + }, + { + "x": 785.4665343711467, + "y": 355.4111842105263 + }, + { + "x": 785.4665343711467, + "y": 394.3585847553454 + }, + { + "x": 745.4830070900124, + "y": 394.3585847553454 + } + ] + }, + { + "id": "oz8eUa6X-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 22.096177558569668, + "left": 852.8072980887792, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 852.8072980887792, + "y": 380.6743421052632 + }, + { + "x": 874.903475647349, + "y": 380.6743421052632 + }, + { + "x": 874.903475647349, + "y": 417.51646343030427 + }, + { + "x": 852.8072980887792, + "y": 417.51646343030427 + } + ] + }, + { + "id": "Kv6pd458f", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 32.61819898273736, + "left": 954.8705302096178, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 954.8705302096178, + "y": 412.2532894736842 + }, + { + "x": 987.4887291923551, + "y": 412.2532894736842 + }, + { + "x": 987.4887291923551, + "y": 449.0954107987253 + }, + { + "x": 954.8705302096178, + "y": 449.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "2c22d256860585a4194cb40157e51330": { + "asset": { + "id": "2c22d256860585a4194cb40157e51330", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24.8 + }, + "regions": [ + { + "id": "E-zoD1F1P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 30.513833230579532, + "left": 951.7139334155364, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 951.7139334155364, + "y": 403.8322689658717 + }, + { + "x": 982.2277666461159, + "y": 403.8322689658717 + }, + { + "x": 982.2277666461159, + "y": 448.0427952816612 + }, + { + "x": 951.7139334155364, + "y": 448.0427952816612 + } + ] + }, + { + "id": "9fOe1xjVh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 32.61819898273736, + "left": 847.5462392108508, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 847.5462392108508, + "y": 380.6743421052632 + }, + { + "x": 880.1644381935881, + "y": 380.6743421052632 + }, + { + "x": 880.1644381935881, + "y": 433.3059371145148 + }, + { + "x": 847.5462392108508, + "y": 433.3059371145148 + } + ] + }, + { + "id": "mHlr7X5E0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 21.044042848335387, + "left": 746.5351418002466, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 358.56907894736844 + }, + { + "x": 767.579184648582, + "y": 358.56907894736844 + }, + { + "x": 767.579184648582, + "y": 396.4638157894737 + }, + { + "x": 746.5351418002466, + "y": 396.4638157894737 + } + ] + }, + { + "id": "zaS24KpLh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526283665707236, + "width": 24.200543310727497, + "left": 631.8455225030826, + "top": 343.8322689658717 + }, + "points": [ + { + "x": 631.8455225030826, + "y": 343.8322689658717 + }, + { + "x": 656.0460658138102, + "y": 343.8322689658717 + }, + { + "x": 656.0460658138102, + "y": 374.35855263157896 + }, + { + "x": 631.8455225030826, + "y": 374.35855263157896 + } + ] + }, + { + "id": "xU6hor9Et", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 28.40937114673243, + "left": 551.8783716091245, + "top": 332.25330553556745 + }, + "points": [ + { + "x": 551.8783716091245, + "y": 332.25330553556745 + }, + { + "x": 580.2877427558569, + "y": 332.25330553556745 + }, + { + "x": 580.2877427558569, + "y": 369.09542686060854 + }, + { + "x": 551.8783716091245, + "y": 369.09542686060854 + } + ] + }, + { + "id": "tjEFIfaYK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 26.3050053945746, + "left": 476.1200485511714, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 476.1200485511714, + "y": 326.9901315789474 + }, + { + "x": 502.425053945746, + "y": 326.9901315789474 + }, + { + "x": 502.425053945746, + "y": 349.09539473684214 + }, + { + "x": 476.1200485511714, + "y": 349.09539473684214 + } + ] + } + ], + "version": "2.2.0" + }, + "075202e78c5b999c3f1fbe24bf096a1c": { + "asset": { + "id": "075202e78c5b999c3f1fbe24bf096a1c", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24.65 + }, + "regions": [ + { + "id": "WQF1pD8qQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 41.035758323057955, + "left": 944.3486051171393, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 944.3486051171393, + "y": 408.04277921977797 + }, + { + "x": 985.3843634401973, + "y": 408.04277921977797 + }, + { + "x": 985.3843634401973, + "y": 448.0427952816612 + }, + { + "x": 944.3486051171393, + "y": 448.0427952816612 + } + ] + }, + { + "id": "nik8Idwtt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 37.879161528976574, + "left": 849.6507012946979, + "top": 380.6743421052632 + }, + "points": [ + { + "x": 849.6507012946979, + "y": 380.6743421052632 + }, + { + "x": 887.5298628236745, + "y": 380.6743421052632 + }, + { + "x": 887.5298628236745, + "y": 426.99014764083057 + }, + { + "x": 849.6507012946979, + "y": 426.99014764083057 + } + ] + }, + { + "id": "MyeNonYru", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 38.93129623921085, + "left": 739.1698135018496, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 739.1698135018496, + "y": 357.51646343030427 + }, + { + "x": 778.1011097410604, + "y": 357.51646343030427 + }, + { + "x": 778.1011097410604, + "y": 403.8322689658717 + }, + { + "x": 739.1698135018496, + "y": 403.8322689658717 + } + ] + }, + { + "id": "WKwjLIQdI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 34.722564734895194, + "left": 625.5323289149198, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 625.5323289149198, + "y": 352.2532894736842 + }, + { + "x": 660.254893649815, + "y": 352.2532894736842 + }, + { + "x": 660.254893649815, + "y": 376.46383185135693 + }, + { + "x": 625.5323289149198, + "y": 376.46383185135693 + } + ] + }, + { + "id": "VSP18Kbdx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 42.08789303329223, + "left": 543.4608122688039, + "top": 326.9901315789474 + }, + "points": [ + { + "x": 543.4608122688039, + "y": 326.9901315789474 + }, + { + "x": 585.5487053020962, + "y": 326.9901315789474 + }, + { + "x": 585.5487053020962, + "y": 366.99014764083057 + }, + { + "x": 543.4608122688039, + "y": 366.99014764083057 + } + ] + }, + { + "id": "1JEVnA-YQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 26.304909062885326, + "left": 470.8590860049322, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 470.8590860049322, + "y": 316.46383185135693 + }, + { + "x": 497.1639950678175, + "y": 316.46383185135693 + }, + { + "x": 497.1639950678175, + "y": 346.9901637027138 + }, + { + "x": 470.8590860049322, + "y": 346.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "505993265ac8ef721e9f36dc51913913": { + "asset": { + "id": "505993265ac8ef721e9f36dc51913913", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24.5 + }, + "regions": [ + { + "id": "IrKVsslBI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 27.357140104808877, + "left": 365.63916075832304, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 365.63916075832304, + "y": 310.1480423776727 + }, + { + "x": 392.9963008631319, + "y": 310.1480423776727 + }, + { + "x": 392.9963008631319, + "y": 344.8848844829359 + }, + { + "x": 365.63916075832304, + "y": 344.8848844829359 + } + ] + }, + { + "id": "2L7cbz6nP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 38.93139257090012, + "left": 539.2519844327991, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 318.5691110711349 + }, + { + "x": 578.1833770036991, + "y": 318.5691110711349 + }, + { + "x": 578.1833770036991, + "y": 356.46384791324016 + }, + { + "x": 539.2519844327991, + "y": 356.46384791324016 + } + ] + }, + { + "id": "jhmxwnLCh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 38.93134440505549, + "left": 458.232650662762, + "top": 319.621726588199 + }, + "points": [ + { + "x": 458.232650662762, + "y": 319.621726588199 + }, + { + "x": 497.1639950678175, + "y": 319.621726588199 + }, + { + "x": 497.1639950678175, + "y": 340.67437422902964 + }, + { + "x": 458.232650662762, + "y": 340.67437422902964 + } + ] + }, + { + "id": "LLOwfaaEB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 41.035758323057955, + "left": 613.9580764488286, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 613.9580764488286, + "y": 334.3585847553454 + }, + { + "x": 654.9938347718866, + "y": 334.3585847553454 + }, + { + "x": 654.9938347718866, + "y": 373.3059371145148 + }, + { + "x": 613.9580764488286, + "y": 373.3059371145148 + } + ] + }, + { + "id": "hzKJ96p9D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 31.56596794081381, + "left": 737.0653514180025, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 737.0653514180025, + "y": 364.88486842105266 + }, + { + "x": 768.6313193588163, + "y": 364.88486842105266 + }, + { + "x": 768.6313193588163, + "y": 396.4638157894737 + }, + { + "x": 737.0653514180025, + "y": 396.4638157894737 + } + ] + }, + { + "id": "7Fqg2bexO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 34.722564734895194, + "left": 839.1286798705303, + "top": 381.727005807977 + }, + "points": [ + { + "x": 839.1286798705303, + "y": 381.727005807977 + }, + { + "x": 873.8512446054254, + "y": 381.727005807977 + }, + { + "x": 873.8512446054254, + "y": 423.8322529039885 + }, + { + "x": 839.1286798705303, + "y": 423.8322529039885 + } + ] + }, + { + "id": "1b6bsO9AM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 25.25277435265105, + "left": 946.4529708692971, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 946.4529708692971, + "y": 404.8848844829359 + }, + { + "x": 971.7057452219482, + "y": 404.8848844829359 + }, + { + "x": 971.7057452219482, + "y": 454.3585847553454 + }, + { + "x": 946.4529708692971, + "y": 454.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "a767d2c38ac214123b369d3f10e3c6da": { + "asset": { + "id": "a767d2c38ac214123b369d3f10e3c6da", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24.35 + }, + "regions": [ + { + "id": "7xXkruntU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 35.77479577681874, + "left": 355.11713933415535, + "top": 286.9901637027138 + }, + "points": [ + { + "x": 355.11713933415535, + "y": 286.9901637027138 + }, + { + "x": 390.8919351109741, + "y": 286.9901637027138 + }, + { + "x": 390.8919351109741, + "y": 336.4638157894737 + }, + { + "x": 355.11713933415535, + "y": 336.4638157894737 + } + ] + }, + { + "id": "1j9VVyItz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 31.56596794081381, + "left": 459.2848335388409, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 459.2848335388409, + "y": 303.8322529039885 + }, + { + "x": 490.85080147965476, + "y": 303.8322529039885 + }, + { + "x": 490.85080147965476, + "y": 345.9375 + }, + { + "x": 459.2848335388409, + "y": 345.9375 + } + ] + }, + { + "id": "Zs9wS15zC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 25.25277435265105, + "left": 536.0953876387176, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 536.0953876387176, + "y": 318.5691110711349 + }, + { + "x": 561.3481619913687, + "y": 318.5691110711349 + }, + { + "x": 561.3481619913687, + "y": 354.3585686934622 + }, + { + "x": 536.0953876387176, + "y": 354.3585686934622 + } + ] + }, + { + "id": "Xblc9tg5p", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 14.736858167146382, + "width": 30.513736898890258, + "left": 615.0103074907522, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 615.0103074907522, + "y": 351.20067395662005 + }, + { + "x": 645.5240443896424, + "y": 351.20067395662005 + }, + { + "x": 645.5240443896424, + "y": 365.93753212376646 + }, + { + "x": 615.0103074907522, + "y": 365.93753212376646 + } + ] + }, + { + "id": "wjjOkhmnM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 28.40937114673243, + "left": 730.7521578298397, + "top": 357.51646343030427 + }, + "points": [ + { + "x": 730.7521578298397, + "y": 357.51646343030427 + }, + { + "x": 759.1615289765722, + "y": 357.51646343030427 + }, + { + "x": 759.1615289765722, + "y": 391.2006900185033 + }, + { + "x": 730.7521578298397, + "y": 391.2006900185033 + } + ] + }, + { + "id": "czSP-KHBU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 29.46150585696671, + "left": 837.0243141183724, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 837.0243141183724, + "y": 375.41121633429276 + }, + { + "x": 866.4858199753392, + "y": 375.41121633429276 + }, + { + "x": 866.4858199753392, + "y": 429.09542686060854 + }, + { + "x": 837.0243141183724, + "y": 429.09542686060854 + } + ] + }, + { + "id": "asFUFAtNG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 41.035758323057955, + "left": 932.774352651048, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 932.774352651048, + "y": 408.04277921977797 + }, + { + "x": 973.810110974106, + "y": 408.04277921977797 + }, + { + "x": 973.810110974106, + "y": 448.0427952816612 + }, + { + "x": 932.774352651048, + "y": 448.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "8973f68b7ffb58363e52a0de0110f261": { + "asset": { + "id": "8973f68b7ffb58363e52a0de0110f261", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24.15 + }, + "regions": [ + { + "id": "75359SCO4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 19.99181180641184, + "left": 355.11713933415535, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 355.11713933415535, + "y": 292.2532894736842 + }, + { + "x": 375.1089511405672, + "y": 292.2532894736842 + }, + { + "x": 375.1089511405672, + "y": 324.88490054481906 + }, + { + "x": 355.11713933415535, + "y": 324.88490054481906 + } + ] + }, + { + "id": "7zrPy1nTY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 30.513833230579532, + "left": 449.8150431565968, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 449.8150431565968, + "y": 305.93753212376646 + }, + { + "x": 480.3288763871763, + "y": 305.93753212376646 + }, + { + "x": 480.3288763871763, + "y": 345.9375 + }, + { + "x": 449.8150431565968, + "y": 345.9375 + } + ] + }, + { + "id": "q30Bmky6J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 27.35723643649815, + "left": 535.0431565967941, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 323.83223684210526 + }, + { + "x": 562.4003930332923, + "y": 323.83223684210526 + }, + { + "x": 562.4003930332923, + "y": 358.56907894736844 + }, + { + "x": 535.0431565967941, + "y": 358.56907894736844 + } + ] + }, + { + "id": "02lDmwzhn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 37.879161528976574, + "left": 605.540517108508, + "top": 335.41120027240953 + }, + "points": [ + { + "x": 605.540517108508, + "y": 335.41120027240953 + }, + { + "x": 643.4196786374846, + "y": 335.41120027240953 + }, + { + "x": 643.4196786374846, + "y": 362.7796373869243 + }, + { + "x": 605.540517108508, + "y": 362.7796373869243 + } + ] + }, + { + "id": "vlLRjx0ju", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 39.9835272811344, + "left": 712.8648081072749, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 712.8648081072749, + "y": 356.46384791324016 + }, + { + "x": 752.8483353884094, + "y": 356.46384791324016 + }, + { + "x": 752.8483353884094, + "y": 395.41120027240953 + }, + { + "x": 712.8648081072749, + "y": 395.41120027240953 + } + ] + }, + { + "id": "hlH0YKfOJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 44.192355117139336, + "left": 820.1890991060419, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 820.1890991060419, + "y": 376.46383185135693 + }, + { + "x": 864.3814542231813, + "y": 376.46383185135693 + }, + { + "x": 864.3814542231813, + "y": 424.88486842105266 + }, + { + "x": 820.1890991060419, + "y": 424.88486842105266 + } + ] + }, + { + "id": "NGOcFIRA6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 39.9835272811344, + "left": 928.5656211467325, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 928.5656211467325, + "y": 412.2532894736842 + }, + { + "x": 968.5491484278668, + "y": 412.2532894736842 + }, + { + "x": 968.5491484278668, + "y": 454.3585847553454 + }, + { + "x": 928.5656211467325, + "y": 454.3585847553454 + } + ] + } + ], + "version": "2.2.0" + }, + "ab666d1b2c63fbec2c5a9ba15d78a3b6": { + "asset": { + "id": "ab666d1b2c63fbec2c5a9ba15d78a3b6", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=24.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=24", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 24 + }, + "regions": [ + { + "id": "hfXaghcfu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 23.148360434648584, + "left": 359.3259671701603, + "top": 284.88488448293583 + }, + "points": [ + { + "x": 359.3259671701603, + "y": 284.88488448293583 + }, + { + "x": 382.4743276048089, + "y": 284.88488448293583 + }, + { + "x": 382.4743276048089, + "y": 325.93751606188323 + }, + { + "x": 359.3259671701603, + "y": 325.93751606188323 + } + ] + }, + { + "id": "Caa-n5UJl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 23.14840860049322, + "left": 459.2848335388409, + "top": 298.56907894736844 + }, + "points": [ + { + "x": 459.2848335388409, + "y": 298.56907894736844 + }, + { + "x": 482.43324213933414, + "y": 298.56907894736844 + }, + { + "x": 482.43324213933414, + "y": 341.72698974609375 + }, + { + "x": 459.2848335388409, + "y": 341.72698974609375 + } + ] + }, + { + "id": "IZf8xnW9D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 22.096177558569668, + "left": 541.3563501849568, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 541.3563501849568, + "y": 315.41121633429276 + }, + { + "x": 563.4525277435265, + "y": 315.41121633429276 + }, + { + "x": 563.4525277435265, + "y": 353.305953176398 + }, + { + "x": 541.3563501849568, + "y": 353.305953176398 + } + ] + }, + { + "id": "EJklscjmE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 35.77479577681874, + "left": 926.4611590628854, + "top": 405.9375 + }, + "points": [ + { + "x": 926.4611590628854, + "y": 405.9375 + }, + { + "x": 962.235954839704, + "y": 405.9375 + }, + { + "x": 962.235954839704, + "y": 458.56909500925167 + }, + { + "x": 926.4611590628854, + "y": 458.56909500925167 + } + ] + }, + { + "id": "oftCc_THi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 32.61810265104809, + "left": 824.3979269420469, + "top": 372.2533215974507 + }, + "points": [ + { + "x": 824.3979269420469, + "y": 372.2533215974507 + }, + { + "x": 857.0160295930949, + "y": 372.2533215974507 + }, + { + "x": 857.0160295930949, + "y": 415.4111842105263 + }, + { + "x": 824.3979269420469, + "y": 415.4111842105263 + } + ] + }, + { + "id": "uFYJxVuNt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 28.40937114673243, + "left": 726.543426325524, + "top": 353.305953176398 + }, + "points": [ + { + "x": 726.543426325524, + "y": 353.305953176398 + }, + { + "x": 754.9527974722565, + "y": 353.305953176398 + }, + { + "x": 754.9527974722565, + "y": 392.25330553556745 + }, + { + "x": 726.543426325524, + "y": 392.25330553556745 + } + ] + }, + { + "id": "W-Wixcsw_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 30.513833230579532, + "left": 613.9580764488286, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 613.9580764488286, + "y": 336.4638157894737 + }, + { + "x": 644.4719096794081, + "y": 336.4638157894737 + }, + { + "x": 644.4719096794081, + "y": 375.41121633429276 + }, + { + "x": 613.9580764488286, + "y": 375.41121633429276 + } + ] + } + ], + "version": "2.2.0" + }, + "a8516f5c9bc1ca36cb976a6dbbb76734": { + "asset": { + "id": "a8516f5c9bc1ca36cb976a6dbbb76734", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=23.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=23.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 23.85 + }, + "regions": [ + { + "id": "rrZlbmyXN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 19.9917636405672, + "left": 369.84794042848335, + "top": 290.14805843955594 + }, + "points": [ + { + "x": 369.84794042848335, + "y": 290.14805843955594 + }, + { + "x": 389.8397040690506, + "y": 290.14805843955594 + }, + { + "x": 389.8397040690506, + "y": 328.0427952816612 + }, + { + "x": 369.84794042848335, + "y": 328.0427952816612 + } + ] + }, + { + "id": "o1F--XRYa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 39.98357544697904, + "left": 451.9194570745993, + "top": 297.51646343030427 + }, + "points": [ + { + "x": 451.9194570745993, + "y": 297.51646343030427 + }, + { + "x": 491.9030325215783, + "y": 297.51646343030427 + }, + { + "x": 491.9030325215783, + "y": 331.2006900185033 + }, + { + "x": 451.9194570745993, + "y": 331.2006900185033 + } + ] + }, + { + "id": "hHC2MqzLK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 30.513736898890258, + "left": 934.8788147348952, + "top": 405.9375 + }, + "points": [ + { + "x": 934.8788147348952, + "y": 405.9375 + }, + { + "x": 965.3925516337855, + "y": 405.9375 + }, + { + "x": 965.3925516337855, + "y": 453.30592105263156 + }, + { + "x": 934.8788147348952, + "y": 453.30592105263156 + } + ] + }, + { + "id": "LeSZKA79l", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 38.93139257090012, + "left": 829.658889488286, + "top": 379.621726588199 + }, + "points": [ + { + "x": 829.658889488286, + "y": 379.621726588199 + }, + { + "x": 868.5902820591862, + "y": 379.621726588199 + }, + { + "x": 868.5902820591862, + "y": 430.1480423776727 + }, + { + "x": 829.658889488286, + "y": 430.1480423776727 + } + ] + }, + { + "id": "xWdXlpUf4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 23.14840860049322, + "left": 728.6477920776819, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 728.6477920776819, + "y": 354.3585686934622 + }, + { + "x": 751.7962006781751, + "y": 354.3585686934622 + }, + { + "x": 751.7962006781751, + "y": 399.6217105263158 + }, + { + "x": 728.6477920776819, + "y": 399.6217105263158 + } + ] + }, + { + "id": "oUSVhtt4t", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526283665707236, + "width": 30.513833230579532, + "left": 617.11467324291, + "top": 337.5164794921875 + }, + "points": [ + { + "x": 617.11467324291, + "y": 337.5164794921875 + }, + { + "x": 647.6285064734896, + "y": 337.5164794921875 + }, + { + "x": 647.6285064734896, + "y": 368.04276315789474 + }, + { + "x": 617.11467324291, + "y": 368.04276315789474 + } + ] + }, + { + "id": "3aZkqFUGC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 26.3050053945746, + "left": 541.3563501849568, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 541.3563501849568, + "y": 314.35855263157896 + }, + { + "x": 567.6613555795315, + "y": 314.35855263157896 + }, + { + "x": 567.6613555795315, + "y": 356.46384791324016 + }, + { + "x": 541.3563501849568, + "y": 356.46384791324016 + } + ] + } + ], + "version": "2.2.0" + }, + "677209c608fda9a5cbe8f721420319d1": { + "asset": { + "id": "677209c608fda9a5cbe8f721420319d1", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=23.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=23.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 23.7 + }, + "regions": [ + { + "id": "7XwE7x7dZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 22.096177558569668, + "left": 367.7435265104809, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 367.7435265104809, + "y": 288.04277921977797 + }, + { + "x": 389.8397040690506, + "y": 288.04277921977797 + }, + { + "x": 389.8397040690506, + "y": 321.727005807977 + }, + { + "x": 367.7435265104809, + "y": 321.727005807977 + } + ] + }, + { + "id": "wnZlj4oqE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 25.25277435265105, + "left": 465.5980271270037, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 465.5980271270037, + "y": 295.4111842105263 + }, + { + "x": 490.85080147965476, + "y": 295.4111842105263 + }, + { + "x": 490.85080147965476, + "y": 328.0427952816612 + }, + { + "x": 465.5980271270037, + "y": 328.0427952816612 + } + ] + }, + { + "id": "dZWTHFjjU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 33.67033369297164, + "left": 941.192008323058, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 941.192008323058, + "y": 412.2532894736842 + }, + { + "x": 974.8623420160296, + "y": 412.2532894736842 + }, + { + "x": 974.8623420160296, + "y": 459.6217105263158 + }, + { + "x": 941.192008323058, + "y": 459.6217105263158 + } + ] + }, + { + "id": "a0VWw0BAN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 56.81874229346486, + "left": 827.5545237361282, + "top": 381.727005807977 + }, + "points": [ + { + "x": 827.5545237361282, + "y": 381.727005807977 + }, + { + "x": 884.3732660295931, + "y": 381.727005807977 + }, + { + "x": 884.3732660295931, + "y": 419.62174265008224 + }, + { + "x": 827.5545237361282, + "y": 419.62174265008224 + } + ] + }, + { + "id": "L6GwYr3k9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 31.56596794081381, + "left": 729.7000231196055, + "top": 354.3585686934622 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 354.3585686934622 + }, + { + "x": 761.2659910604192, + "y": 354.3585686934622 + }, + { + "x": 761.2659910604192, + "y": 398.56909500925167 + }, + { + "x": 729.7000231196055, + "y": 398.56909500925167 + } + ] + }, + { + "id": "k5cxTPG_4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 17.887446054254006, + "left": 626.5844636251542, + "top": 329.0954107987253 + }, + "points": [ + { + "x": 626.5844636251542, + "y": 329.0954107987253 + }, + { + "x": 644.4719096794081, + "y": 329.0954107987253 + }, + { + "x": 644.4719096794081, + "y": 364.88486842105266 + }, + { + "x": 626.5844636251542, + "y": 364.88486842105266 + } + ] + }, + { + "id": "HKpXKo_Bo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 29.46160218865598, + "left": 545.5651780209618, + "top": 321.727005807977 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 321.727005807977 + }, + { + "x": 575.0267802096178, + "y": 321.727005807977 + }, + { + "x": 575.0267802096178, + "y": 358.56907894736844 + }, + { + "x": 545.5651780209618, + "y": 358.56907894736844 + } + ] + } + ], + "version": "2.2.0" + }, + "1f33ba8ccfdcb406a8d3d1704bd486ec": { + "asset": { + "id": "1f33ba8ccfdcb406a8d3d1704bd486ec", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=23.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=23.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 23.55 + }, + "regions": [ + { + "id": "keJ03V7rw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 22.096177558569668, + "left": 941.192008323058, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 941.192008323058, + "y": 404.8848844829359 + }, + { + "x": 963.2881858816277, + "y": 404.8848844829359 + }, + { + "x": 963.2881858816277, + "y": 451.2006900185033 + }, + { + "x": 941.192008323058, + "y": 451.2006900185033 + } + ] + }, + { + "id": "kH4mMwYuH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 26.3050053945746, + "left": 834.9198520345253, + "top": 379.621726588199 + }, + "points": [ + { + "x": 834.9198520345253, + "y": 379.621726588199 + }, + { + "x": 861.2248574290999, + "y": 379.621726588199 + }, + { + "x": 861.2248574290999, + "y": 416.46384791324016 + }, + { + "x": 834.9198520345253, + "y": 416.46384791324016 + } + ] + }, + { + "id": "LKcNnhIlP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 24.200543310727497, + "left": 732.8566199136868, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 732.8566199136868, + "y": 352.2532894736842 + }, + { + "x": 757.0571632244144, + "y": 352.2532894736842 + }, + { + "x": 757.0571632244144, + "y": 388.0427952816612 + }, + { + "x": 732.8566199136868, + "y": 388.0427952816612 + } + ] + }, + { + "id": "wxAqjHc0a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 15.782983970406905, + "left": 629.7410604192355, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 333.30592105263156 + }, + { + "x": 645.5240443896424, + "y": 333.30592105263156 + }, + { + "x": 645.5240443896424, + "y": 368.04276315789474 + }, + { + "x": 629.7410604192355, + "y": 368.04276315789474 + } + ] + }, + { + "id": "Ql_6W0LfY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 35.77479577681874, + "left": 542.4085812268804, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 542.4085812268804, + "y": 305.93753212376646 + }, + { + "x": 578.1833770036991, + "y": 305.93753212376646 + }, + { + "x": 578.1833770036991, + "y": 350.14805843955594 + }, + { + "x": 542.4085812268804, + "y": 350.14805843955594 + } + ] + }, + { + "id": "OtWyy0xVn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 27.357140104808877, + "left": 460.3370645807645, + "top": 297.51646343030427 + }, + "points": [ + { + "x": 460.3370645807645, + "y": 297.51646343030427 + }, + { + "x": 487.69420468557337, + "y": 297.51646343030427 + }, + { + "x": 487.69420468557337, + "y": 328.0427952816612 + }, + { + "x": 460.3370645807645, + "y": 328.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "cf2c73443387ad9624d04ec6fe936c1a": { + "asset": { + "id": "cf2c73443387ad9624d04ec6fe936c1a", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=23.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=23.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 23.4 + }, + "regions": [ + { + "id": "LhPwTFr9x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 26.304909062885326, + "left": 931.7222179408138, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 931.7222179408138, + "y": 408.04277921977797 + }, + { + "x": 958.0271270036991, + "y": 408.04277921977797 + }, + { + "x": 958.0271270036991, + "y": 466.9901637027138 + }, + { + "x": 931.7222179408138, + "y": 466.9901637027138 + } + ] + }, + { + "id": "UXzwf5xWp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 34.722564734895194, + "left": 823.3456959001234, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 823.3456959001234, + "y": 370.1480423776727 + }, + { + "x": 858.0682606350185, + "y": 370.1480423776727 + }, + { + "x": 858.0682606350185, + "y": 419.62174265008224 + }, + { + "x": 823.3456959001234, + "y": 419.62174265008224 + } + ] + }, + { + "id": "q3iKQ_W7s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 25.25277435265105, + "left": 727.5955610357584, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 727.5955610357584, + "y": 352.2532894736842 + }, + { + "x": 752.8483353884094, + "y": 352.2532894736842 + }, + { + "x": 752.8483353884094, + "y": 385.93751606188323 + }, + { + "x": 727.5955610357584, + "y": 385.93751606188323 + } + ] + }, + { + "id": "DXrw8jndj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 24.200543310727497, + "left": 621.3235010789149, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 621.3235010789149, + "y": 325.93751606188323 + }, + { + "x": 645.5240443896424, + "y": 325.93751606188323 + }, + { + "x": 645.5240443896424, + "y": 362.7796373869243 + }, + { + "x": 621.3235010789149, + "y": 362.7796373869243 + } + ] + }, + { + "id": "ffndh_tqU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 26.304909062885326, + "left": 540.3042154747226, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 540.3042154747226, + "y": 309.09542686060854 + }, + { + "x": 566.609124537608, + "y": 309.09542686060854 + }, + { + "x": 566.609124537608, + "y": 342.7796052631579 + }, + { + "x": 540.3042154747226, + "y": 342.7796052631579 + } + ] + }, + { + "id": "skhLamdFt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 24.200543310727497, + "left": 466.6502581689273, + "top": 297.51646343030427 + }, + "points": [ + { + "x": 466.6502581689273, + "y": 297.51646343030427 + }, + { + "x": 490.85080147965476, + "y": 297.51646343030427 + }, + { + "x": 490.85080147965476, + "y": 326.9901315789474 + }, + { + "x": 466.6502581689273, + "y": 326.9901315789474 + } + ] + } + ], + "version": "2.2.0" + }, + "95d8664c977e53e880aa3804a4e0dd8c": { + "asset": { + "id": "95d8664c977e53e880aa3804a4e0dd8c", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=23.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=23.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 23.25 + }, + "regions": [ + { + "id": "l4GkvF-EX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 18.939580764488287, + "left": 462.4414303329223, + "top": 279.6217105263158 + }, + "points": [ + { + "x": 462.4414303329223, + "y": 279.6217105263158 + }, + { + "x": 481.38101109741064, + "y": 279.6217105263158 + }, + { + "x": 481.38101109741064, + "y": 331.2006900185033 + }, + { + "x": 462.4414303329223, + "y": 331.2006900185033 + } + ] + }, + { + "id": "xK6wsjreO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 29.46160218865598, + "left": 545.5651780209618, + "top": 301.7269736842105 + }, + "points": [ + { + "x": 545.5651780209618, + "y": 301.7269736842105 + }, + { + "x": 575.0267802096178, + "y": 301.7269736842105 + }, + { + "x": 575.0267802096178, + "y": 346.9901637027138 + }, + { + "x": 545.5651780209618, + "y": 346.9901637027138 + } + ] + }, + { + "id": "Ng9qsq6x0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 22.096177558569668, + "left": 623.4278668310727, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 623.4278668310727, + "y": 325.93751606188323 + }, + { + "x": 645.5240443896424, + "y": 325.93751606188323 + }, + { + "x": 645.5240443896424, + "y": 346.9901637027138 + }, + { + "x": 623.4278668310727, + "y": 346.9901637027138 + } + ] + }, + { + "id": "0Hb5JUn2W", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 24.20063964241677, + "left": 727.5955610357584, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 727.5955610357584, + "y": 339.6217105263158 + }, + { + "x": 751.7962006781751, + "y": 339.6217105263158 + }, + { + "x": 751.7962006781751, + "y": 374.35855263157896 + }, + { + "x": 727.5955610357584, + "y": 374.35855263157896 + } + ] + }, + { + "id": "ycnFmcl3C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 33.67033369297164, + "left": 824.3979269420469, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 824.3979269420469, + "y": 370.1480423776727 + }, + { + "x": 858.0682606350185, + "y": 370.1480423776727 + }, + { + "x": 858.0682606350185, + "y": 420.6743581671464 + }, + { + "x": 824.3979269420469, + "y": 420.6743581671464 + } + ] + }, + { + "id": "AmZnqtX_-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 30.513736898890258, + "left": 921.2001965166461, + "top": 405.9375 + }, + "points": [ + { + "x": 921.2001965166461, + "y": 405.9375 + }, + { + "x": 951.7139334155364, + "y": 405.9375 + }, + { + "x": 951.7139334155364, + "y": 456.4638157894737 + }, + { + "x": 921.2001965166461, + "y": 456.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "c213c17de1ce7134af31c983a0a0b12f": { + "asset": { + "id": "c213c17de1ce7134af31c983a0a0b12f", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=23.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=23.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 23.1 + }, + "regions": [ + { + "id": "C7_BFGQ5q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.157878674958884, + "width": 17.88739788840937, + "left": 374.05672009864367, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 374.05672009864367, + "y": 275.41120027240953 + }, + { + "x": 391.944117987053, + "y": 275.41120027240953 + }, + { + "x": 391.944117987053, + "y": 298.56907894736844 + }, + { + "x": 374.05672009864367, + "y": 298.56907894736844 + } + ] + }, + { + "id": "DV1_7OT5g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 22.096177558569668, + "left": 464.54589241676945, + "top": 284.88488448293583 + }, + "points": [ + { + "x": 464.54589241676945, + "y": 284.88488448293583 + }, + { + "x": 486.6420699753391, + "y": 284.88488448293583 + }, + { + "x": 486.6420699753391, + "y": 321.727005807977 + }, + { + "x": 464.54589241676945, + "y": 321.727005807977 + } + ] + }, + { + "id": "SzUERHJK5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 22.096177558569668, + "left": 547.6695437731196, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 547.6695437731196, + "y": 295.4111842105263 + }, + { + "x": 569.7657213316893, + "y": 295.4111842105263 + }, + { + "x": 569.7657213316893, + "y": 332.25330553556745 + }, + { + "x": 547.6695437731196, + "y": 332.25330553556745 + } + ] + }, + { + "id": "dnF659J1o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 14.730849260172626, + "left": 629.7410604192355, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 310.1480423776727 + }, + { + "x": 644.4719096794081, + "y": 310.1480423776727 + }, + { + "x": 644.4719096794081, + "y": 348.04277921977797 + }, + { + "x": 629.7410604192355, + "y": 348.04277921977797 + } + ] + }, + { + "id": "Xw4ot7xDY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 21.043946516646116, + "left": 732.8566199136868, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 732.8566199136868, + "y": 346.9901637027138 + }, + { + "x": 753.9005664303329, + "y": 346.9901637027138 + }, + { + "x": 753.9005664303329, + "y": 382.77962132504115 + }, + { + "x": 732.8566199136868, + "y": 382.77962132504115 + } + ] + }, + { + "id": "CWd53-SH5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 19.99181180641184, + "left": 826.5022926942047, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 826.5022926942047, + "y": 376.46383185135693 + }, + { + "x": 846.4941045006166, + "y": 376.46383185135693 + }, + { + "x": 846.4941045006166, + "y": 418.56907894736844 + }, + { + "x": 826.5022926942047, + "y": 418.56907894736844 + } + ] + }, + { + "id": "LjUzo27Sa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 33.67043002466091, + "left": 923.3045622688039, + "top": 415.4111842105263 + }, + "points": [ + { + "x": 923.3045622688039, + "y": 415.4111842105263 + }, + { + "x": 956.9749922934649, + "y": 415.4111842105263 + }, + { + "x": 956.9749922934649, + "y": 452.25330553556745 + }, + { + "x": 923.3045622688039, + "y": 452.25330553556745 + } + ] + } + ], + "version": "2.2.0" + }, + "d83f637703d3c09eb3c830551ab7dc54": { + "asset": { + "id": "d83f637703d3c09eb3c830551ab7dc54", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.95 + }, + "regions": [ + { + "id": "GwKRX7tJg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 19.991715474722564, + "left": 938.0354115289766, + "top": 405.9375 + }, + "points": [ + { + "x": 938.0354115289766, + "y": 405.9375 + }, + { + "x": 958.0271270036991, + "y": 405.9375 + }, + { + "x": 958.0271270036991, + "y": 451.2006900185033 + }, + { + "x": 938.0354115289766, + "y": 451.2006900185033 + } + ] + }, + { + "id": "rdt5tosUd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 32.61819898273736, + "left": 834.9198520345253, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 834.9198520345253, + "y": 373.3059371145148 + }, + { + "x": 867.5380510172627, + "y": 373.3059371145148 + }, + { + "x": 867.5380510172627, + "y": 420.6743581671464 + }, + { + "x": 834.9198520345253, + "y": 420.6743581671464 + } + ] + }, + { + "id": "voErStFcS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 25.25277435265105, + "left": 739.1698135018496, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 739.1698135018496, + "y": 340.67437422902964 + }, + { + "x": 764.4225878545006, + "y": 340.67437422902964 + }, + { + "x": 764.4225878545006, + "y": 372.2533215974507 + }, + { + "x": 739.1698135018496, + "y": 372.2533215974507 + } + ] + }, + { + "id": "OcuM6px9x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 22.096177558569668, + "left": 637.1064850493218, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 311.2006578947368 + }, + { + "x": 659.2026626078915, + "y": 311.2006578947368 + }, + { + "x": 659.2026626078915, + "y": 344.8848844829359 + }, + { + "x": 637.1064850493218, + "y": 344.8848844829359 + } + ] + }, + { + "id": "V6NZq0ilg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 32.61819898273736, + "left": 557.1393341553637, + "top": 297.51646343030427 + }, + "points": [ + { + "x": 557.1393341553637, + "y": 297.51646343030427 + }, + { + "x": 589.7575331381012, + "y": 297.51646343030427 + }, + { + "x": 589.7575331381012, + "y": 338.56909500925167 + }, + { + "x": 557.1393341553637, + "y": 338.56909500925167 + } + ] + }, + { + "id": "aRt_rfg9R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 26.3050053945746, + "left": 481.38101109741064, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 481.38101109741064, + "y": 288.04277921977797 + }, + { + "x": 507.6860164919852, + "y": 288.04277921977797 + }, + { + "x": 507.6860164919852, + "y": 309.09542686060854 + }, + { + "x": 481.38101109741064, + "y": 309.09542686060854 + } + ] + }, + { + "id": "E6OGRHa7a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 33.67033369297164, + "left": 378.26554793464857, + "top": 262.77962132504115 + }, + "points": [ + { + "x": 378.26554793464857, + "y": 262.77962132504115 + }, + { + "x": 411.93588162762023, + "y": 262.77962132504115 + }, + { + "x": 411.93588162762023, + "y": 299.62174265008224 + }, + { + "x": 378.26554793464857, + "y": 299.62174265008224 + } + ] + } + ], + "version": "2.2.0" + }, + "a73fc5ea0268637804a2dadc16e50bda": { + "asset": { + "id": "a73fc5ea0268637804a2dadc16e50bda", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.8 + }, + "regions": [ + { + "id": "rfyPOR1jA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 27.35723643649815, + "left": 942.2441430332923, + "top": 399.6217105263158 + }, + "points": [ + { + "x": 942.2441430332923, + "y": 399.6217105263158 + }, + { + "x": 969.6013794697903, + "y": 399.6217105263158 + }, + { + "x": 969.6013794697903, + "y": 451.2006900185033 + }, + { + "x": 942.2441430332923, + "y": 451.2006900185033 + } + ] + }, + { + "id": "D2TMvoYde", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 32.61819898273736, + "left": 839.1286798705303, + "top": 370.1480423776727 + }, + "points": [ + { + "x": 839.1286798705303, + "y": 370.1480423776727 + }, + { + "x": 871.7468788532676, + "y": 370.1480423776727 + }, + { + "x": 871.7468788532676, + "y": 424.88486842105266 + }, + { + "x": 839.1286798705303, + "y": 424.88486842105266 + } + ] + }, + { + "id": "VMtD2LZIH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 34.722564734895194, + "left": 745.4830070900124, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 745.4830070900124, + "y": 336.4638157894737 + }, + { + "x": 780.2055718249076, + "y": 336.4638157894737 + }, + { + "x": 780.2055718249076, + "y": 383.83223684210526 + }, + { + "x": 745.4830070900124, + "y": 383.83223684210526 + } + ] + }, + { + "id": "7txt8Lz_s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 18.939580764488287, + "left": 649.7328722256474, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 649.7328722256474, + "y": 318.5691110711349 + }, + { + "x": 668.6724529901356, + "y": 318.5691110711349 + }, + { + "x": 668.6724529901356, + "y": 345.9375 + }, + { + "x": 649.7328722256474, + "y": 345.9375 + } + ] + }, + { + "id": "96T39A2i4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 29.46160218865598, + "left": 573.9745491676942, + "top": 291.20067395662005 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 291.20067395662005 + }, + { + "x": 603.4361513563501, + "y": 291.20067395662005 + }, + { + "x": 603.4361513563501, + "y": 332.25330553556745 + }, + { + "x": 573.9745491676942, + "y": 332.25330553556745 + } + ] + }, + { + "id": "droKZ3q_E", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 19.99181180641184, + "left": 490.85080147965476, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 490.85080147965476, + "y": 277.5164794921875 + }, + { + "x": 510.8426132860666, + "y": 277.5164794921875 + }, + { + "x": 510.8426132860666, + "y": 313.3059371145148 + }, + { + "x": 490.85080147965476, + "y": 313.3059371145148 + } + ] + }, + { + "id": "I0N5ydkxu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 22.096177558569668, + "left": 401.4139083692972, + "top": 258.5691110711349 + }, + "points": [ + { + "x": 401.4139083692972, + "y": 258.5691110711349 + }, + { + "x": 423.51008592786684, + "y": 258.5691110711349 + }, + { + "x": 423.51008592786684, + "y": 294.3585686934622 + }, + { + "x": 401.4139083692972, + "y": 294.3585686934622 + } + ] + } + ], + "version": "2.2.0" + }, + "2649d7ffd6dc17deb4223a2fe0517091": { + "asset": { + "id": "2649d7ffd6dc17deb4223a2fe0517091", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.65 + }, + "regions": [ + { + "id": "pqqONNrVw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 24.20063964241677, + "left": 948.557336621455, + "top": 414.3585686934622 + }, + "points": [ + { + "x": 948.557336621455, + "y": 414.3585686934622 + }, + { + "x": 972.7579762638718, + "y": 414.3585686934622 + }, + { + "x": 972.7579762638718, + "y": 449.0954107987253 + }, + { + "x": 948.557336621455, + "y": 449.0954107987253 + } + ] + }, + { + "id": "_1Zxqgz8K", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 31.56596794081381, + "left": 846.4941045006166, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 846.4941045006166, + "y": 366.99014764083057 + }, + { + "x": 878.0600724414303, + "y": 366.99014764083057 + }, + { + "x": 878.0600724414303, + "y": 409.09539473684214 + }, + { + "x": 846.4941045006166, + "y": 409.09539473684214 + } + ] + }, + { + "id": "60sDfg3VG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 24.20063964241677, + "left": 765.4747225647349, + "top": 340.67437422902964 + }, + "points": [ + { + "x": 765.4747225647349, + "y": 340.67437422902964 + }, + { + "x": 789.6753622071517, + "y": 340.67437422902964 + }, + { + "x": 789.6753622071517, + "y": 384.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 384.88490054481906 + } + ] + }, + { + "id": "-dYp2BQnv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 25.25277435265105, + "left": 651.8372379778052, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 651.8372379778052, + "y": 312.2533215974507 + }, + { + "x": 677.0900123304563, + "y": 312.2533215974507 + }, + { + "x": 677.0900123304563, + "y": 343.8322689658717 + }, + { + "x": 651.8372379778052, + "y": 343.8322689658717 + } + ] + }, + { + "id": "Z3OfNbr62", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 28.40937114673243, + "left": 573.9745491676942, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 573.9745491676942, + "y": 288.04277921977797 + }, + { + "x": 602.3839203144266, + "y": 288.04277921977797 + }, + { + "x": 602.3839203144266, + "y": 322.77962132504115 + }, + { + "x": 573.9745491676942, + "y": 322.77962132504115 + } + ] + }, + { + "id": "uI6Lw2zKW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 21.044042848335387, + "left": 500.3205918618989, + "top": 274.3585847553454 + }, + "points": [ + { + "x": 500.3205918618989, + "y": 274.3585847553454 + }, + { + "x": 521.3646347102343, + "y": 274.3585847553454 + }, + { + "x": 521.3646347102343, + "y": 303.8322529039885 + }, + { + "x": 500.3205918618989, + "y": 303.8322529039885 + } + ] + }, + { + "id": "nk00giF4D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 17.887349722564736, + "left": 409.8315158754624, + "top": 260.6743421052632 + }, + "points": [ + { + "x": 409.8315158754624, + "y": 260.6743421052632 + }, + { + "x": 427.71886559802715, + "y": 260.6743421052632 + }, + { + "x": 427.71886559802715, + "y": 288.04277921977797 + }, + { + "x": 409.8315158754624, + "y": 288.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "e3fe2b6dadf033908078b8f35f8d0481": { + "asset": { + "id": "e3fe2b6dadf033908078b8f35f8d0481", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.5 + }, + "regions": [ + { + "id": "c_rRIRwlc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 26.304909062885326, + "left": 947.5052019112208, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 947.5052019112208, + "y": 412.2532894736842 + }, + { + "x": 973.810110974106, + "y": 412.2532894736842 + }, + { + "x": 973.810110974106, + "y": 444.88490054481906 + }, + { + "x": 947.5052019112208, + "y": 444.88490054481906 + } + ] + }, + { + "id": "rJ_jAzs9h", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 38.93139257090012, + "left": 845.441873458693, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 845.441873458693, + "y": 377.51644736842104 + }, + { + "x": 884.3732660295931, + "y": 377.51644736842104 + }, + { + "x": 884.3732660295931, + "y": 409.09539473684214 + }, + { + "x": 845.441873458693, + "y": 409.09539473684214 + } + ] + }, + { + "id": "fCU99SQBD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 30.513736898890258, + "left": 763.370356812577, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 763.370356812577, + "y": 334.3585847553454 + }, + { + "x": 793.8840937114674, + "y": 334.3585847553454 + }, + { + "x": 793.8840937114674, + "y": 374.35855263157896 + }, + { + "x": 763.370356812577, + "y": 374.35855263157896 + } + ] + }, + { + "id": "2STR5sXFv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.15792686060855, + "width": 29.46160218865598, + "left": 659.2026626078915, + "top": 323.83223684210526 + }, + "points": [ + { + "x": 659.2026626078915, + "y": 323.83223684210526 + }, + { + "x": 688.6642647965475, + "y": 323.83223684210526 + }, + { + "x": 688.6642647965475, + "y": 346.9901637027138 + }, + { + "x": 659.2026626078915, + "y": 346.9901637027138 + } + ] + }, + { + "id": "sFkwQvNsC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 39.9835272811344, + "left": 586.6009363440197, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 282.7796052631579 + }, + { + "x": 626.5844636251542, + "y": 282.7796052631579 + }, + { + "x": 626.5844636251542, + "y": 330.1480263157895 + }, + { + "x": 586.6009363440197, + "y": 330.1480263157895 + } + ] + }, + { + "id": "dq0A2KVMY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 25.25277435265105, + "left": 515.0514411220715, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 515.0514411220715, + "y": 268.0427952816612 + }, + { + "x": 540.3042154747226, + "y": 268.0427952816612 + }, + { + "x": 540.3042154747226, + "y": 308.04276315789474 + }, + { + "x": 515.0514411220715, + "y": 308.04276315789474 + } + ] + }, + { + "id": "v5ROXFOGX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.157878674958884, + "width": 25.25277435265105, + "left": 421.40567200986436, + "top": 264.88490054481906 + }, + "points": [ + { + "x": 421.40567200986436, + "y": 264.88490054481906 + }, + { + "x": 446.6584463625154, + "y": 264.88490054481906 + }, + { + "x": 446.6584463625154, + "y": 288.04277921977797 + }, + { + "x": 421.40567200986436, + "y": 288.04277921977797 + } + ] + } + ], + "version": "2.2.0" + }, + "078fde3c52d3a85bf453b0d8a9942595": { + "asset": { + "id": "078fde3c52d3a85bf453b0d8a9942595", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.35 + }, + "regions": [ + { + "id": "4nJTAtSCt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 24.200543310727497, + "left": 963.2881858816277, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 963.2881858816277, + "y": 416.46384791324016 + }, + { + "x": 987.4887291923551, + "y": 416.46384791324016 + }, + { + "x": 987.4887291923551, + "y": 464.8848844829359 + }, + { + "x": 963.2881858816277, + "y": 464.8848844829359 + } + ] + }, + { + "id": "bmvGBUGUG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 30.513736898890258, + "left": 862.2770884710235, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 375.41121633429276 + }, + { + "x": 892.7908253699137, + "y": 375.41121633429276 + }, + { + "x": 892.7908253699137, + "y": 434.35855263157896 + }, + { + "x": 862.2770884710235, + "y": 434.35855263157896 + } + ] + }, + { + "id": "diozPQys3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 38.93139257090012, + "left": 592.9141299321825, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 592.9141299321825, + "y": 282.7796052631579 + }, + { + "x": 631.8455225030826, + "y": 282.7796052631579 + }, + { + "x": 631.8455225030826, + "y": 324.88490054481906 + }, + { + "x": 592.9141299321825, + "y": 324.88490054481906 + } + ] + }, + { + "id": "BTSZ7jurs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 16.835118680641184, + "left": 777.0489750308261, + "top": 336.4638157894737 + }, + "points": [ + { + "x": 777.0489750308261, + "y": 336.4638157894737 + }, + { + "x": 793.8840937114674, + "y": 336.4638157894737 + }, + { + "x": 793.8840937114674, + "y": 377.51644736842104 + }, + { + "x": 777.0489750308261, + "y": 377.51644736842104 + } + ] + }, + { + "id": "yChTF2btS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 24.20063964241677, + "left": 509.790382244143, + "top": 270.1480263157895 + }, + "points": [ + { + "x": 509.790382244143, + "y": 270.1480263157895 + }, + { + "x": 533.9910218865598, + "y": 270.1480263157895 + }, + { + "x": 533.9910218865598, + "y": 304.88486842105266 + }, + { + "x": 509.790382244143, + "y": 304.88486842105266 + } + ] + }, + { + "id": "HXo1fIR5c", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 30.513785064734897, + "left": 420.35348913378544, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 420.35348913378544, + "y": 246.9901476408306 + }, + { + "x": 450.86727419852036, + "y": 246.9901476408306 + }, + { + "x": 450.86727419852036, + "y": 284.88488448293583 + }, + { + "x": 420.35348913378544, + "y": 284.88488448293583 + } + ] + } + ], + "version": "2.2.0" + }, + "37f1b5d75fdc96e7c53488b92dedd454": { + "asset": { + "id": "37f1b5d75fdc96e7c53488b92dedd454", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.2 + }, + "regions": [ + { + "id": "I4hn4_j-A", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 25.25277435265105, + "left": 961.1837237977805, + "top": 420.6743581671464 + }, + "points": [ + { + "x": 961.1837237977805, + "y": 420.6743581671464 + }, + { + "x": 986.4364981504316, + "y": 420.6743581671464 + }, + { + "x": 986.4364981504316, + "y": 464.8848844829359 + }, + { + "x": 961.1837237977805, + "y": 464.8848844829359 + } + ] + }, + { + "id": "iZuE7kfqA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 27.35723643649815, + "left": 860.1726263871764, + "top": 379.621726588199 + }, + "points": [ + { + "x": 860.1726263871764, + "y": 379.621726588199 + }, + { + "x": 887.5298628236745, + "y": 379.621726588199 + }, + { + "x": 887.5298628236745, + "y": 419.62174265008224 + }, + { + "x": 860.1726263871764, + "y": 419.62174265008224 + } + ] + }, + { + "id": "S-cIz1meR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 28.40937114673243, + "left": 779.153340782984, + "top": 345.9375 + }, + "points": [ + { + "x": 779.153340782984, + "y": 345.9375 + }, + { + "x": 807.5627119297164, + "y": 345.9375 + }, + { + "x": 807.5627119297164, + "y": 381.727005807977 + }, + { + "x": 779.153340782984, + "y": 381.727005807977 + } + ] + }, + { + "id": "uHF5ShPVX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 17.894704718338815, + "width": 23.14840860049322, + "left": 667.6202219482121, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 667.6202219482121, + "y": 318.5691110711349 + }, + { + "x": 690.7686305487053, + "y": 318.5691110711349 + }, + { + "x": 690.7686305487053, + "y": 336.4638157894737 + }, + { + "x": 667.6202219482121, + "y": 336.4638157894737 + } + ] + }, + { + "id": "mMUuf0Fq9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 31.56596794081381, + "left": 593.966360974106, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 593.966360974106, + "y": 283.8322689658717 + }, + { + "x": 625.5323289149198, + "y": 283.8322689658717 + }, + { + "x": 625.5323289149198, + "y": 329.0954107987253 + }, + { + "x": 593.966360974106, + "y": 329.0954107987253 + } + ] + }, + { + "id": "3b3GGrauV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 25.25277435265105, + "left": 519.2601726263872, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 519.2601726263872, + "y": 268.0427952816612 + }, + { + "x": 544.5129469790382, + "y": 268.0427952816612 + }, + { + "x": 544.5129469790382, + "y": 303.8322529039885 + }, + { + "x": 519.2601726263872, + "y": 303.8322529039885 + } + ] + } + ], + "version": "2.2.0" + }, + "ce7f4b3a632e40f4934befe50d9fbe7a": { + "asset": { + "id": "ce7f4b3a632e40f4934befe50d9fbe7a", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=22.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=22.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 22.05 + }, + "regions": [ + { + "id": "-KcHYQHIe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 25.25277435265105, + "left": 513.9992100801479, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 513.9992100801479, + "y": 265.93751606188323 + }, + { + "x": 539.2519844327991, + "y": 265.93751606188323 + }, + { + "x": 539.2519844327991, + "y": 304.88486842105266 + }, + { + "x": 513.9992100801479, + "y": 304.88486842105266 + } + ] + }, + { + "id": "8M2lQBDW3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 25.25277435265105, + "left": 954.8705302096178, + "top": 425.93753212376646 + }, + "points": [ + { + "x": 954.8705302096178, + "y": 425.93753212376646 + }, + { + "x": 980.1233045622688, + "y": 425.93753212376646 + }, + { + "x": 980.1233045622688, + "y": 473.305953176398 + }, + { + "x": 954.8705302096178, + "y": 473.305953176398 + } + ] + }, + { + "id": "sAoltrg82", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 25.25277435265105, + "left": 854.9116638409371, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 854.9116638409371, + "y": 374.35855263157896 + }, + { + "x": 880.1644381935881, + "y": 374.35855263157896 + }, + { + "x": 880.1644381935881, + "y": 415.4111842105263 + }, + { + "x": 854.9116638409371, + "y": 415.4111842105263 + } + ] + }, + { + "id": "d1gaDP4m-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 35.77479577681874, + "left": 768.6313193588163, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 768.6313193588163, + "y": 338.56909500925167 + }, + { + "x": 804.406115135635, + "y": 338.56909500925167 + }, + { + "x": 804.406115135635, + "y": 381.727005807977 + }, + { + "x": 768.6313193588163, + "y": 381.727005807977 + } + ] + }, + { + "id": "XCgv_Nnwc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 12.626387176325524, + "left": 671.829049784217, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 671.829049784217, + "y": 309.09542686060854 + }, + { + "x": 684.4554369605426, + "y": 309.09542686060854 + }, + { + "x": 684.4554369605426, + "y": 341.72698974609375 + }, + { + "x": 671.829049784217, + "y": 341.72698974609375 + } + ] + }, + { + "id": "nLxCC_lnV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 23.14840860049322, + "left": 599.2273235203453, + "top": 291.20067395662005 + }, + "points": [ + { + "x": 599.2273235203453, + "y": 291.20067395662005 + }, + { + "x": 622.3757321208385, + "y": 291.20067395662005 + }, + { + "x": 622.3757321208385, + "y": 320.6743421052632 + }, + { + "x": 599.2273235203453, + "y": 320.6743421052632 + } + ] + } + ], + "version": "2.2.0" + }, + "06d175d8f043b4367c135ee06d299170": { + "asset": { + "id": "06d175d8f043b4367c135ee06d299170", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21.9 + }, + "regions": [ + { + "id": "ruxqIEwKO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 29.46150585696671, + "left": 938.0354115289766, + "top": 429.09542686060854 + }, + "points": [ + { + "x": 938.0354115289766, + "y": 429.09542686060854 + }, + { + "x": 967.4969173859433, + "y": 429.09542686060854 + }, + { + "x": 967.4969173859433, + "y": 488.04276315789474 + }, + { + "x": 938.0354115289766, + "y": 488.04276315789474 + } + ] + }, + { + "id": "xQtHXqfuE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 44.192355117139336, + "left": 842.2852766646116, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 842.2852766646116, + "y": 378.5691110711349 + }, + { + "x": 886.4776317817509, + "y": 378.5691110711349 + }, + { + "x": 886.4776317817509, + "y": 437.51644736842104 + }, + { + "x": 842.2852766646116, + "y": 437.51644736842104 + } + ] + }, + { + "id": "nDVyiXIif", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 17.887349722564736, + "left": 769.6835504007398, + "top": 342.7796052631579 + }, + "points": [ + { + "x": 769.6835504007398, + "y": 342.7796052631579 + }, + { + "x": 787.5709001233046, + "y": 342.7796052631579 + }, + { + "x": 787.5709001233046, + "y": 378.5691110711349 + }, + { + "x": 769.6835504007398, + "y": 378.5691110711349 + } + ] + }, + { + "id": "t1RE_d9RL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 24.200543310727497, + "left": 662.3592594019728, + "top": 316.46383185135693 + }, + "points": [ + { + "x": 662.3592594019728, + "y": 316.46383185135693 + }, + { + "x": 686.5598027127004, + "y": 316.46383185135693 + }, + { + "x": 686.5598027127004, + "y": 348.04277921977797 + }, + { + "x": 662.3592594019728, + "y": 348.04277921977797 + } + ] + }, + { + "id": "YgtfkXnX1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 29.46160218865598, + "left": 586.6009363440197, + "top": 282.7796052631579 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 282.7796052631579 + }, + { + "x": 616.0625385326757, + "y": 282.7796052631579 + }, + { + "x": 616.0625385326757, + "y": 319.621726588199 + }, + { + "x": 586.6009363440197, + "y": 319.621726588199 + } + ] + }, + { + "id": "ep73atsQL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 21.044042848335387, + "left": 516.1035758323058, + "top": 261.727005807977 + }, + "points": [ + { + "x": 516.1035758323058, + "y": 261.727005807977 + }, + { + "x": 537.1476186806412, + "y": 261.727005807977 + }, + { + "x": 537.1476186806412, + "y": 294.3585686934622 + }, + { + "x": 516.1035758323058, + "y": 294.3585686934622 + } + ] + } + ], + "version": "2.2.0" + }, + "28e5e1be305e2c1ee6a2a2c2f48076a6": { + "asset": { + "id": "28e5e1be305e2c1ee6a2a2c2f48076a6", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21.75 + }, + "regions": [ + { + "id": "jHjJBjzyB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 12.626387176325524, + "left": 423.51008592786684, + "top": 257.51644736842104 + }, + "points": [ + { + "x": 423.51008592786684, + "y": 257.51644736842104 + }, + { + "x": 436.13647310419236, + "y": 257.51644736842104 + }, + { + "x": 436.13647310419236, + "y": 278.56909500925167 + }, + { + "x": 423.51008592786684, + "y": 278.56909500925167 + } + ] + }, + { + "id": "VqNmVBykY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 19.99181180641184, + "left": 506.6337854500617, + "top": 255.41121633429276 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 255.41121633429276 + }, + { + "x": 526.6255972564735, + "y": 255.41121633429276 + }, + { + "x": 526.6255972564735, + "y": 293.305953176398 + }, + { + "x": 506.6337854500617, + "y": 293.305953176398 + } + ] + }, + { + "id": "M9DQqbNC0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 12.626387176325524, + "left": 590.8097641800247, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 590.8097641800247, + "y": 283.8322689658717 + }, + { + "x": 603.4361513563501, + "y": 283.8322689658717 + }, + { + "x": 603.4361513563501, + "y": 313.3059371145148 + }, + { + "x": 590.8097641800247, + "y": 313.3059371145148 + } + ] + }, + { + "id": "r4Lqbxrd6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 30.513736898890258, + "left": 933.8265836929717, + "top": 430.1480423776727 + }, + "points": [ + { + "x": 933.8265836929717, + "y": 430.1480423776727 + }, + { + "x": 964.3403205918619, + "y": 430.1480423776727 + }, + { + "x": 964.3403205918619, + "y": 482.7796373869243 + }, + { + "x": 933.8265836929717, + "y": 482.7796373869243 + } + ] + }, + { + "id": "Xs1s0kabq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 35.77479577681874, + "left": 834.9198520345253, + "top": 379.621726588199 + }, + "points": [ + { + "x": 834.9198520345253, + "y": 379.621726588199 + }, + { + "x": 870.694647811344, + "y": 379.621726588199 + }, + { + "x": 870.694647811344, + "y": 431.2006578947368 + }, + { + "x": 834.9198520345253, + "y": 431.2006578947368 + } + ] + }, + { + "id": "z0f0Wo05I", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 26.304909062885326, + "left": 761.2659910604192, + "top": 338.56909500925167 + }, + "points": [ + { + "x": 761.2659910604192, + "y": 338.56909500925167 + }, + { + "x": 787.5709001233046, + "y": 338.56909500925167 + }, + { + "x": 787.5709001233046, + "y": 388.0427952816612 + }, + { + "x": 761.2659910604192, + "y": 388.0427952816612 + } + ] + }, + { + "id": "rfGMpGjwk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 16.835215012330455, + "left": 658.150431565968, + "top": 308.04276315789474 + }, + "points": [ + { + "x": 658.150431565968, + "y": 308.04276315789474 + }, + { + "x": 674.9856465782984, + "y": 308.04276315789474 + }, + { + "x": 674.9856465782984, + "y": 338.56909500925167 + }, + { + "x": 658.150431565968, + "y": 338.56909500925167 + } + ] + } + ], + "version": "2.2.0" + }, + "606a3758ff00a7cd9e34fda7c078fa94": { + "asset": { + "id": "606a3758ff00a7cd9e34fda7c078fa94", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21.6 + }, + "regions": [ + { + "id": "5TY5_aEVN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315821597450658, + "width": 15.782983970406905, + "left": 932.774352651048, + "top": 443.83223684210526 + }, + "points": [ + { + "x": 932.774352651048, + "y": 443.83223684210526 + }, + { + "x": 948.557336621455, + "y": 443.83223684210526 + }, + { + "x": 948.557336621455, + "y": 470.14805843955594 + }, + { + "x": 932.774352651048, + "y": 470.14805843955594 + } + ] + }, + { + "id": "5mnCbl1de", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 21.043946516646116, + "left": 837.0243141183724, + "top": 378.5691110711349 + }, + "points": [ + { + "x": 837.0243141183724, + "y": 378.5691110711349 + }, + { + "x": 858.0682606350185, + "y": 378.5691110711349 + }, + { + "x": 858.0682606350185, + "y": 437.51644736842104 + }, + { + "x": 837.0243141183724, + "y": 437.51644736842104 + } + ] + }, + { + "id": "BGetgksUF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 26.304909062885326, + "left": 758.1093942663379, + "top": 345.9375 + }, + "points": [ + { + "x": 758.1093942663379, + "y": 345.9375 + }, + { + "x": 784.4143033292232, + "y": 345.9375 + }, + { + "x": 784.4143033292232, + "y": 381.727005807977 + }, + { + "x": 758.1093942663379, + "y": 381.727005807977 + } + ] + }, + { + "id": "PToHbdmNK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 20.00003212376645, + "width": 18.939580764488287, + "left": 657.0982968557337, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 657.0982968557337, + "y": 311.2006578947368 + }, + { + "x": 676.0378776202219, + "y": 311.2006578947368 + }, + { + "x": 676.0378776202219, + "y": 331.2006900185033 + }, + { + "x": 657.0982968557337, + "y": 331.2006900185033 + } + ] + }, + { + "id": "LBzAKrxVi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 29.46160218865598, + "left": 577.1311459617756, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 275.41120027240953 + }, + { + "x": 606.5927481504316, + "y": 275.41120027240953 + }, + { + "x": 606.5927481504316, + "y": 314.35855263157896 + }, + { + "x": 577.1311459617756, + "y": 314.35855263157896 + } + ] + }, + { + "id": "2QJob9UvM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 22.096177558569668, + "left": 505.58165073982735, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 505.58165073982735, + "y": 265.93751606188323 + }, + { + "x": 527.677828298397, + "y": 265.93751606188323 + }, + { + "x": 527.677828298397, + "y": 293.305953176398 + }, + { + "x": 505.58165073982735, + "y": 293.305953176398 + } + ] + } + ], + "version": "2.2.0" + }, + "13e17ca6a5df37a64a423f75ba32a5b1": { + "asset": { + "id": "13e17ca6a5df37a64a423f75ba32a5b1", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21.45 + }, + "regions": [ + { + "id": "fQaS_TM6X", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 22.096177558569668, + "left": 930.6699868988902, + "top": 443.83223684210526 + }, + "points": [ + { + "x": 930.6699868988902, + "y": 443.83223684210526 + }, + { + "x": 952.7661644574599, + "y": 443.83223684210526 + }, + { + "x": 952.7661644574599, + "y": 480.6743581671464 + }, + { + "x": 930.6699868988902, + "y": 480.6743581671464 + } + ] + }, + { + "id": "_s2030jd3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 28.40937114673243, + "left": 830.7111205302097, + "top": 385.93751606188323 + }, + "points": [ + { + "x": 830.7111205302097, + "y": 385.93751606188323 + }, + { + "x": 859.120491676942, + "y": 385.93751606188323 + }, + { + "x": 859.120491676942, + "y": 425.93753212376646 + }, + { + "x": 830.7111205302097, + "y": 425.93753212376646 + } + ] + }, + { + "id": "iPJUAlHF8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 19.99181180641184, + "left": 762.3181257706535, + "top": 333.30592105263156 + }, + "points": [ + { + "x": 762.3181257706535, + "y": 333.30592105263156 + }, + { + "x": 782.3099375770654, + "y": 333.30592105263156 + }, + { + "x": 782.3099375770654, + "y": 385.93751606188323 + }, + { + "x": 762.3181257706535, + "y": 385.93751606188323 + } + ] + }, + { + "id": "rnIWWFpsH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 16.835215012330455, + "left": 651.8372379778052, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 651.8372379778052, + "y": 310.1480423776727 + }, + { + "x": 668.6724529901356, + "y": 310.1480423776727 + }, + { + "x": 668.6724529901356, + "y": 336.4638157894737 + }, + { + "x": 651.8372379778052, + "y": 336.4638157894737 + } + ] + }, + { + "id": "Bf1Pbwt3s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 28.40937114673243, + "left": 579.2355117139334, + "top": 279.6217105263158 + }, + "points": [ + { + "x": 579.2355117139334, + "y": 279.6217105263158 + }, + { + "x": 607.6448828606658, + "y": 279.6217105263158 + }, + { + "x": 607.6448828606658, + "y": 319.621726588199 + }, + { + "x": 579.2355117139334, + "y": 319.621726588199 + } + ] + }, + { + "id": "aIM-50ZE7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 17.887446054254006, + "left": 506.6337854500617, + "top": 260.6743421052632 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 260.6743421052632 + }, + { + "x": 524.5212315043157, + "y": 260.6743421052632 + }, + { + "x": 524.5212315043157, + "y": 285.9375 + }, + { + "x": 506.6337854500617, + "y": 285.9375 + } + ] + }, + { + "id": "9KpahSBgK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 16.84208920127467, + "width": 17.88739788840937, + "left": 421.40567200986436, + "top": 256.46383185135693 + }, + "points": [ + { + "x": 421.40567200986436, + "y": 256.46383185135693 + }, + { + "x": 439.29306989827376, + "y": 256.46383185135693 + }, + { + "x": 439.29306989827376, + "y": 273.30592105263156 + }, + { + "x": 421.40567200986436, + "y": 273.30592105263156 + } + ] + } + ], + "version": "2.2.0" + }, + "c48fa340ea198e0eb1213f9e2e77e3ca": { + "asset": { + "id": "c48fa340ea198e0eb1213f9e2e77e3ca", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21.3 + }, + "regions": [ + { + "id": "UqHwGBBcS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 28.40937114673243, + "left": 831.7632552404439, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 831.7632552404439, + "y": 376.46383185135693 + }, + { + "x": 860.1726263871764, + "y": 376.46383185135693 + }, + { + "x": 860.1726263871764, + "y": 430.1480423776727 + }, + { + "x": 831.7632552404439, + "y": 430.1480423776727 + } + ] + }, + { + "id": "8nvhOxSem", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 21.043946516646116, + "left": 764.4225878545006, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 764.4225878545006, + "y": 339.6217105263158 + }, + { + "x": 785.4665343711467, + "y": 339.6217105263158 + }, + { + "x": 785.4665343711467, + "y": 379.621726588199 + }, + { + "x": 764.4225878545006, + "y": 379.621726588199 + } + ] + }, + { + "id": "vrr_4Hx4r", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 16.835215012330455, + "left": 654.9938347718866, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 654.9938347718866, + "y": 312.2533215974507 + }, + { + "x": 671.829049784217, + "y": 312.2533215974507 + }, + { + "x": 671.829049784217, + "y": 339.6217105263158 + }, + { + "x": 654.9938347718866, + "y": 339.6217105263158 + } + ] + }, + { + "id": "7zRZ8yHLC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 26.3050053945746, + "left": 582.3921085080148, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 582.3921085080148, + "y": 278.56909500925167 + }, + { + "x": 608.6971139025894, + "y": 278.56909500925167 + }, + { + "x": 608.6971139025894, + "y": 314.35855263157896 + }, + { + "x": 582.3921085080148, + "y": 314.35855263157896 + } + ] + }, + { + "id": "noQBt_eOv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 21.043946516646116, + "left": 504.52941969790385, + "top": 261.727005807977 + }, + "points": [ + { + "x": 504.52941969790385, + "y": 261.727005807977 + }, + { + "x": 525.57336621455, + "y": 261.727005807977 + }, + { + "x": 525.57336621455, + "y": 294.3585686934622 + }, + { + "x": 504.52941969790385, + "y": 294.3585686934622 + } + ] + } + ], + "version": "2.2.0" + }, + "46e3f28bb8bccaf595d255e30d88db30": { + "asset": { + "id": "46e3f28bb8bccaf595d255e30d88db30", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21.15 + }, + "regions": [ + { + "id": "bXA8kE2Sq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 21.043946516646116, + "left": 927.5133901048089, + "top": 446.9901315789474 + }, + "points": [ + { + "x": 927.5133901048089, + "y": 446.9901315789474 + }, + { + "x": 948.557336621455, + "y": 446.9901315789474 + }, + { + "x": 948.557336621455, + "y": 488.04276315789474 + }, + { + "x": 927.5133901048089, + "y": 488.04276315789474 + } + ] + }, + { + "id": "W35G_Lt2q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 18.939580764488287, + "left": 832.8154862823675, + "top": 391.2006900185033 + }, + "points": [ + { + "x": 832.8154862823675, + "y": 391.2006900185033 + }, + { + "x": 851.7550670468557, + "y": 391.2006900185033 + }, + { + "x": 851.7550670468557, + "y": 430.1480423776727 + }, + { + "x": 832.8154862823675, + "y": 430.1480423776727 + } + ] + }, + { + "id": "HgTsjJ_lR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 19.99181180641184, + "left": 763.370356812577, + "top": 350.14805843955594 + }, + "points": [ + { + "x": 763.370356812577, + "y": 350.14805843955594 + }, + { + "x": 783.3621686189889, + "y": 350.14805843955594 + }, + { + "x": 783.3621686189889, + "y": 391.2006900185033 + }, + { + "x": 763.370356812577, + "y": 391.2006900185033 + } + ] + }, + { + "id": "I-v_xfLjF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 19.991715474722564, + "left": 650.7851032675709, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 650.7851032675709, + "y": 304.88486842105266 + }, + { + "x": 670.7768187422935, + "y": 304.88486842105266 + }, + { + "x": 670.7768187422935, + "y": 337.5164794921875 + }, + { + "x": 650.7851032675709, + "y": 337.5164794921875 + } + ] + }, + { + "id": "EVD3MnKw4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 29.46160218865598, + "left": 580.2877427558569, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 580.2877427558569, + "y": 276.4638157894737 + }, + { + "x": 609.7493449445129, + "y": 276.4638157894737 + }, + { + "x": 609.7493449445129, + "y": 310.1480423776727 + }, + { + "x": 580.2877427558569, + "y": 310.1480423776727 + } + ] + }, + { + "id": "YIzVEN3cC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.210494192023027, + "width": 19.99181180641184, + "left": 506.6337854500617, + "top": 261.727005807977 + }, + "points": [ + { + "x": 506.6337854500617, + "y": 261.727005807977 + }, + { + "x": 526.6255972564735, + "y": 261.727005807977 + }, + { + "x": 526.6255972564735, + "y": 285.9375 + }, + { + "x": 506.6337854500617, + "y": 285.9375 + } + ] + } + ], + "version": "2.2.0" + }, + "7d945b505c97a9a27727cdf5622afa5e": { + "asset": { + "id": "7d945b505c97a9a27727cdf5622afa5e", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=21.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=21", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 21 + }, + "regions": [ + { + "id": "vwuGOi4Q9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 18.939580764488287, + "left": 500.3205918618989, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 500.3205918618989, + "y": 251.20065789473685 + }, + { + "x": 519.2601726263872, + "y": 251.20065789473685 + }, + { + "x": 519.2601726263872, + "y": 285.9375 + }, + { + "x": 500.3205918618989, + "y": 285.9375 + } + ] + }, + { + "id": "2aeN4SHPA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 30.513736898890258, + "left": 914.8870029284834, + "top": 456.4638157894737 + }, + "points": [ + { + "x": 914.8870029284834, + "y": 456.4638157894737 + }, + { + "x": 945.4007398273736, + "y": 456.4638157894737 + }, + { + "x": 945.4007398273736, + "y": 502.77962132504115 + }, + { + "x": 914.8870029284834, + "y": 502.77962132504115 + } + ] + }, + { + "id": "HYUU0MqcD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 27.35723643649815, + "left": 828.6066584463625, + "top": 396.4638157894737 + }, + "points": [ + { + "x": 828.6066584463625, + "y": 396.4638157894737 + }, + { + "x": 855.9638948828607, + "y": 396.4638157894737 + }, + { + "x": 855.9638948828607, + "y": 450.1480263157895 + }, + { + "x": 828.6066584463625, + "y": 450.1480263157895 + } + ] + }, + { + "id": "2d0qlQylm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 16.835215012330455, + "left": 759.1615289765722, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 759.1615289765722, + "y": 352.2532894736842 + }, + { + "x": 775.9967439889026, + "y": 352.2532894736842 + }, + { + "x": 775.9967439889026, + "y": 392.25330553556745 + }, + { + "x": 759.1615289765722, + "y": 392.25330553556745 + } + ] + }, + { + "id": "RpQUD488q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 19.99181180641184, + "left": 648.6806411837238, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 648.6806411837238, + "y": 311.2006578947368 + }, + { + "x": 668.6724529901356, + "y": 311.2006578947368 + }, + { + "x": 668.6724529901356, + "y": 341.72698974609375 + }, + { + "x": 648.6806411837238, + "y": 341.72698974609375 + } + ] + }, + { + "id": "ubTTVHaFl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.842073139391445, + "width": 31.56596794081381, + "left": 577.1311459617756, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 277.5164794921875 + }, + { + "x": 608.6971139025894, + "y": 277.5164794921875 + }, + { + "x": 608.6971139025894, + "y": 314.35855263157896 + }, + { + "x": 577.1311459617756, + "y": 314.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "273c851ed5d9beb4e93a0a128fefae2c": { + "asset": { + "id": "273c851ed5d9beb4e93a0a128fefae2c", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=20.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=20.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 20.8 + }, + "regions": [ + { + "id": "CqD47AR_p", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 22.096177558569668, + "left": 494.00739827373616, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 251.20065789473685 + }, + { + "x": 516.1035758323058, + "y": 251.20065789473685 + }, + { + "x": 516.1035758323058, + "y": 285.9375 + }, + { + "x": 494.00739827373616, + "y": 285.9375 + } + ] + }, + { + "id": "gY_Qi0_Ha", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 22.096177558569668, + "left": 913.8347718865598, + "top": 465.9375 + }, + "points": [ + { + "x": 913.8347718865598, + "y": 465.9375 + }, + { + "x": 935.9309494451295, + "y": 465.9375 + }, + { + "x": 935.9309494451295, + "y": 505.93751606188323 + }, + { + "x": 913.8347718865598, + "y": 505.93751606188323 + } + ] + }, + { + "id": "VclQXbAME", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 18.939580764488287, + "left": 827.5545237361282, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 827.5545237361282, + "y": 397.5164794921875 + }, + { + "x": 846.4941045006166, + "y": 397.5164794921875 + }, + { + "x": 846.4941045006166, + "y": 436.46383185135693 + }, + { + "x": 827.5545237361282, + "y": 436.46383185135693 + } + ] + }, + { + "id": "VGBgkCyU-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 19.991715474722564, + "left": 754.9527974722565, + "top": 351.20067395662005 + }, + "points": [ + { + "x": 754.9527974722565, + "y": 351.20067395662005 + }, + { + "x": 774.9445129469791, + "y": 351.20067395662005 + }, + { + "x": 774.9445129469791, + "y": 385.93751606188323 + }, + { + "x": 754.9527974722565, + "y": 385.93751606188323 + } + ] + }, + { + "id": "UApx9eK7a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.15792686060855, + "width": 17.887349722564736, + "left": 646.5762754315659, + "top": 314.35855263157896 + }, + "points": [ + { + "x": 646.5762754315659, + "y": 314.35855263157896 + }, + { + "x": 664.4636251541307, + "y": 314.35855263157896 + }, + { + "x": 664.4636251541307, + "y": 337.5164794921875 + }, + { + "x": 646.5762754315659, + "y": 337.5164794921875 + } + ] + }, + { + "id": "nJrkZsYPm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 14.730752928483355, + "left": 578.1833770036991, + "top": 280.6743742290296 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 280.6743742290296 + }, + { + "x": 592.9141299321825, + "y": 280.6743742290296 + }, + { + "x": 592.9141299321825, + "y": 309.09542686060854 + }, + { + "x": 578.1833770036991, + "y": 309.09542686060854 + } + ] + }, + { + "id": "LgIt10C8Y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 16.84208920127467, + "width": 14.73080109432799, + "left": 414.0402955456227, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 414.0402955456227, + "y": 249.09542686060857 + }, + { + "x": 428.77109663995066, + "y": 249.09542686060857 + }, + { + "x": 428.77109663995066, + "y": 265.93751606188323 + }, + { + "x": 414.0402955456227, + "y": 265.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "5c615bb5e24a893d0a36dc49c0693986": { + "asset": { + "id": "5c615bb5e24a893d0a36dc49c0693986", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=20.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=20.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 20.65 + }, + "regions": [ + { + "id": "xEISXEFW6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 25.25277435265105, + "left": 915.9392339704069, + "top": 474.3585686934622 + }, + "points": [ + { + "x": 915.9392339704069, + "y": 474.3585686934622 + }, + { + "x": 941.192008323058, + "y": 474.3585686934622 + }, + { + "x": 941.192008323058, + "y": 521.7269897460938 + }, + { + "x": 915.9392339704069, + "y": 521.7269897460938 + } + ] + }, + { + "id": "97QqVwbLT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 28.40937114673243, + "left": 824.3979269420469, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 824.3979269420469, + "y": 404.8848844829359 + }, + { + "x": 852.8072980887792, + "y": 404.8848844829359 + }, + { + "x": 852.8072980887792, + "y": 451.2006900185033 + }, + { + "x": 824.3979269420469, + "y": 451.2006900185033 + } + ] + }, + { + "id": "QAsglNyTV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 28.40937114673243, + "left": 746.5351418002466, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 356.46384791324016 + }, + { + "x": 774.9445129469791, + "y": 356.46384791324016 + }, + { + "x": 774.9445129469791, + "y": 392.25330553556745 + }, + { + "x": 746.5351418002466, + "y": 392.25330553556745 + } + ] + }, + { + "id": "Nq7subb2w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 25.25277435265105, + "left": 642.3674475955611, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 312.2533215974507 + }, + { + "x": 667.6202219482121, + "y": 312.2533215974507 + }, + { + "x": 667.6202219482121, + "y": 334.3585847553454 + }, + { + "x": 642.3674475955611, + "y": 334.3585847553454 + } + ] + }, + { + "id": "Q0xHCWcon", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 21.043946516646116, + "left": 578.1833770036991, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 578.1833770036991, + "y": 281.72698974609375 + }, + { + "x": 599.2273235203453, + "y": 281.72698974609375 + }, + { + "x": 599.2273235203453, + "y": 322.77962132504115 + }, + { + "x": 578.1833770036991, + "y": 322.77962132504115 + } + ] + }, + { + "id": "bdUG-rqve", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 26.3050053945746, + "left": 490.85080147965476, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 490.85080147965476, + "y": 245.93753212376646 + }, + { + "x": 517.1558068742294, + "y": 245.93753212376646 + }, + { + "x": 517.1558068742294, + "y": 286.9901637027138 + }, + { + "x": 490.85080147965476, + "y": 286.9901637027138 + } + ] + } + ], + "version": "2.2.0" + }, + "df187c41fb6368dd0805608097078dd2": { + "asset": { + "id": "df187c41fb6368dd0805608097078dd2", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=20.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=20.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 20.5 + }, + "regions": [ + { + "id": "qdQ12jhe4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 26.3050053945746, + "left": 907.521578298397, + "top": 478.56907894736844 + }, + "points": [ + { + "x": 907.521578298397, + "y": 478.56907894736844 + }, + { + "x": 933.8265836929717, + "y": 478.56907894736844 + }, + { + "x": 933.8265836929717, + "y": 531.2006739566201 + }, + { + "x": 907.521578298397, + "y": 531.2006739566201 + } + ] + }, + { + "id": "bIm5Ke2pC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 21.043946516646116, + "left": 821.2413301479655, + "top": 404.8848844829359 + }, + "points": [ + { + "x": 821.2413301479655, + "y": 404.8848844829359 + }, + { + "x": 842.2852766646116, + "y": 404.8848844829359 + }, + { + "x": 842.2852766646116, + "y": 445.93751606188323 + }, + { + "x": 821.2413301479655, + "y": 445.93751606188323 + } + ] + }, + { + "id": "p3l4OTBuz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 21.043946516646116, + "left": 750.7439696362516, + "top": 358.56907894736844 + }, + "points": [ + { + "x": 750.7439696362516, + "y": 358.56907894736844 + }, + { + "x": 771.7879161528977, + "y": 358.56907894736844 + }, + { + "x": 771.7879161528977, + "y": 399.6217105263158 + }, + { + "x": 750.7439696362516, + "y": 399.6217105263158 + } + ] + }, + { + "id": "0m0v74BzU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 19.99181180641184, + "left": 646.5762754315659, + "top": 308.04276315789474 + }, + "points": [ + { + "x": 646.5762754315659, + "y": 308.04276315789474 + }, + { + "x": 666.5680872379778, + "y": 308.04276315789474 + }, + { + "x": 666.5680872379778, + "y": 340.67437422902964 + }, + { + "x": 646.5762754315659, + "y": 340.67437422902964 + } + ] + }, + { + "id": "_laQjItvu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 29.46160218865598, + "left": 570.8179523736128, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 570.8179523736128, + "y": 278.56909500925167 + }, + { + "x": 600.2795545622688, + "y": 278.56909500925167 + }, + { + "x": 600.2795545622688, + "y": 316.46383185135693 + }, + { + "x": 570.8179523736128, + "y": 316.46383185135693 + } + ] + }, + { + "id": "MccFFiC8J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 22.096177558569668, + "left": 495.05962931565966, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 495.05962931565966, + "y": 252.25332159745065 + }, + { + "x": 517.1558068742294, + "y": 252.25332159745065 + }, + { + "x": 517.1558068742294, + "y": 281.72698974609375 + }, + { + "x": 495.05962931565966, + "y": 281.72698974609375 + } + ] + }, + { + "id": "vOOXgM8wW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 15.782983970406905, + "left": 415.0924784217016, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 415.0924784217016, + "y": 238.5690789473684 + }, + { + "x": 430.8754623921085, + "y": 238.5690789473684 + }, + { + "x": 430.8754623921085, + "y": 266.9901315789474 + }, + { + "x": 415.0924784217016, + "y": 266.9901315789474 + } + ] + } + ], + "version": "2.2.0" + }, + "2808a75ef84a9dc7c3dc702144bcedc1": { + "asset": { + "id": "2808a75ef84a9dc7c3dc702144bcedc1", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=20.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=20.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 20.35 + }, + "regions": [ + { + "id": "EuBszPAO1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 18.939580764488287, + "left": 491.9030325215783, + "top": 244.88486842105263 + }, + "points": [ + { + "x": 491.9030325215783, + "y": 244.88486842105263 + }, + { + "x": 510.8426132860666, + "y": 244.88486842105263 + }, + { + "x": 510.8426132860666, + "y": 288.04277921977797 + }, + { + "x": 491.9030325215783, + "y": 288.04277921977797 + } + ] + }, + { + "id": "APXfsIW7P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 18.939580764488287, + "left": 575.0267802096178, + "top": 276.4638157894737 + }, + "points": [ + { + "x": 575.0267802096178, + "y": 276.4638157894737 + }, + { + "x": 593.966360974106, + "y": 276.4638157894737 + }, + { + "x": 593.966360974106, + "y": 306.99014764083057 + }, + { + "x": 575.0267802096178, + "y": 306.99014764083057 + } + ] + }, + { + "id": "uAvbPwJb3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 15.782983970406905, + "left": 646.5762754315659, + "top": 311.2006578947368 + }, + "points": [ + { + "x": 646.5762754315659, + "y": 311.2006578947368 + }, + { + "x": 662.3592594019728, + "y": 311.2006578947368 + }, + { + "x": 662.3592594019728, + "y": 333.30592105263156 + }, + { + "x": 646.5762754315659, + "y": 333.30592105263156 + } + ] + }, + { + "id": "MYujma712", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 29.46150585696671, + "left": 748.6396038840937, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 748.6396038840937, + "y": 361.7269736842105 + }, + { + "x": 778.1011097410604, + "y": 361.7269736842105 + }, + { + "x": 778.1011097410604, + "y": 414.3585686934622 + }, + { + "x": 748.6396038840937, + "y": 414.3585686934622 + } + ] + }, + { + "id": "t_16LNNil", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 38.93129623921085, + "left": 811.7715397657213, + "top": 416.46384791324016 + }, + "points": [ + { + "x": 811.7715397657213, + "y": 416.46384791324016 + }, + { + "x": 850.7028360049322, + "y": 416.46384791324016 + }, + { + "x": 850.7028360049322, + "y": 455.41120027240953 + }, + { + "x": 811.7715397657213, + "y": 455.41120027240953 + } + ] + }, + { + "id": "tMzMf7G51", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 29.46160218865598, + "left": 905.4172125462392, + "top": 494.35855263157896 + }, + "points": [ + { + "x": 905.4172125462392, + "y": 494.35855263157896 + }, + { + "x": 934.8788147348952, + "y": 494.35855263157896 + }, + { + "x": 934.8788147348952, + "y": 529.0953947368421 + }, + { + "x": 905.4172125462392, + "y": 529.0953947368421 + } + ] + } + ], + "version": "2.2.0" + }, + "030ba5be2cce0024bc6eb24f39e9034a": { + "asset": { + "id": "030ba5be2cce0024bc6eb24f39e9034a", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=20.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=20.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 20.2 + }, + "regions": [ + { + "id": "hhWX80snf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 23.148312268803945, + "left": 486.6420699753391, + "top": 257.51644736842104 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 257.51644736842104 + }, + { + "x": 509.790382244143, + "y": 257.51644736842104 + }, + { + "x": 509.790382244143, + "y": 279.6217105263158 + }, + { + "x": 486.6420699753391, + "y": 279.6217105263158 + } + ] + }, + { + "id": "M8DkHfsNZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.57893130653783, + "width": 27.357140104808877, + "left": 814.9281365598027, + "top": 417.51646343030427 + }, + "points": [ + { + "x": 814.9281365598027, + "y": 417.51646343030427 + }, + { + "x": 842.2852766646116, + "y": 417.51646343030427 + }, + { + "x": 842.2852766646116, + "y": 469.09539473684214 + }, + { + "x": 814.9281365598027, + "y": 469.09539473684214 + } + ] + }, + { + "id": "N3uMH0yRL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 29.46160218865598, + "left": 744.4307760480888, + "top": 363.8322529039885 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 363.8322529039885 + }, + { + "x": 773.8923782367448, + "y": 363.8322529039885 + }, + { + "x": 773.8923782367448, + "y": 410.14805843955594 + }, + { + "x": 744.4307760480888, + "y": 410.14805843955594 + } + ] + }, + { + "id": "CEBJnuFQU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 22.096177558569668, + "left": 633.9498882552405, + "top": 305.93753212376646 + }, + "points": [ + { + "x": 633.9498882552405, + "y": 305.93753212376646 + }, + { + "x": 656.0460658138102, + "y": 305.93753212376646 + }, + { + "x": 656.0460658138102, + "y": 345.9375 + }, + { + "x": 633.9498882552405, + "y": 345.9375 + } + ] + }, + { + "id": "V4DNIjgiL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 29.46150585696671, + "left": 568.713586621455, + "top": 275.41120027240953 + }, + "points": [ + { + "x": 568.713586621455, + "y": 275.41120027240953 + }, + { + "x": 598.1750924784217, + "y": 275.41120027240953 + }, + { + "x": 598.1750924784217, + "y": 317.51644736842104 + }, + { + "x": 568.713586621455, + "y": 317.51644736842104 + } + ] + } + ], + "version": "2.2.0" + }, + "9fb8a20c0beba633e8b7fc12c1eaa924": { + "asset": { + "id": "9fb8a20c0beba633e8b7fc12c1eaa924", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=20.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=20.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 20.05 + }, + "regions": [ + { + "id": "G0M02d4qR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 19.99181180641184, + "left": 809.6670776818743, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 809.6670776818743, + "y": 418.56907894736844 + }, + { + "x": 829.658889488286, + "y": 418.56907894736844 + }, + { + "x": 829.658889488286, + "y": 465.9375 + }, + { + "x": 809.6670776818743, + "y": 465.9375 + } + ] + }, + { + "id": "-HXUIam4w", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 18.939580764488287, + "left": 741.2741792540074, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 368.04276315789474 + }, + { + "x": 760.2137600184957, + "y": 368.04276315789474 + }, + { + "x": 760.2137600184957, + "y": 403.8322689658717 + }, + { + "x": 741.2741792540074, + "y": 403.8322689658717 + } + ] + }, + { + "id": "rzjoSw7_u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 17.887446054254006, + "left": 632.8976572133168, + "top": 319.621726588199 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 319.621726588199 + }, + { + "x": 650.7851032675709, + "y": 319.621726588199 + }, + { + "x": 650.7851032675709, + "y": 343.8322689658717 + }, + { + "x": 632.8976572133168, + "y": 343.8322689658717 + } + ] + }, + { + "id": "toPhGt8JX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 25.25277435265105, + "left": 559.2437962392108, + "top": 270.1480263157895 + }, + "points": [ + { + "x": 559.2437962392108, + "y": 270.1480263157895 + }, + { + "x": 584.4965705918619, + "y": 270.1480263157895 + }, + { + "x": 584.4965705918619, + "y": 320.6743421052632 + }, + { + "x": 559.2437962392108, + "y": 320.6743421052632 + } + ] + }, + { + "id": "o1Zkisi8k", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 14.730752928483355, + "left": 483.4854731812577, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 483.4854731812577, + "y": 250.1480423776727 + }, + { + "x": 498.21622610974106, + "y": 250.1480423776727 + }, + { + "x": 498.21622610974106, + "y": 279.6217105263158 + }, + { + "x": 483.4854731812577, + "y": 279.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "8e6f2d984778561972bf05ef6d39263d": { + "asset": { + "id": "8e6f2d984778561972bf05ef6d39263d", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.95 + }, + "regions": [ + { + "id": "zNAaZ48iV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 34.722564734895194, + "left": 800.1972872996301, + "top": 418.56907894736844 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 418.56907894736844 + }, + { + "x": 834.9198520345253, + "y": 418.56907894736844 + }, + { + "x": 834.9198520345253, + "y": 481.7269736842105 + }, + { + "x": 800.1972872996301, + "y": 481.7269736842105 + } + ] + }, + { + "id": "4zRBYYWpS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 29.46150585696671, + "left": 736.0132167077682, + "top": 365.93753212376646 + }, + "points": [ + { + "x": 736.0132167077682, + "y": 365.93753212376646 + }, + { + "x": 765.4747225647349, + "y": 365.93753212376646 + }, + { + "x": 765.4747225647349, + "y": 415.4111842105263 + }, + { + "x": 736.0132167077682, + "y": 415.4111842105263 + } + ] + }, + { + "id": "EO4ljMNOW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 27.35723643649815, + "left": 626.5844636251542, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 626.5844636251542, + "y": 309.09542686060854 + }, + { + "x": 653.9417000616523, + "y": 309.09542686060854 + }, + { + "x": 653.9417000616523, + "y": 352.2532894736842 + }, + { + "x": 626.5844636251542, + "y": 352.2532894736842 + } + ] + }, + { + "id": "sLj8gsdiq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 24.200543310727497, + "left": 555.0349684032059, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 555.0349684032059, + "y": 278.56909500925167 + }, + { + "x": 579.2355117139334, + "y": 278.56909500925167 + }, + { + "x": 579.2355117139334, + "y": 318.5691110711349 + }, + { + "x": 555.0349684032059, + "y": 318.5691110711349 + } + ] + }, + { + "id": "s_OWf58bz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 30.513833230579532, + "left": 468.7546239210851, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 468.7546239210851, + "y": 243.8322529039885 + }, + { + "x": 499.2684571516646, + "y": 243.8322529039885 + }, + { + "x": 499.2684571516646, + "y": 281.72698974609375 + }, + { + "x": 468.7546239210851, + "y": 281.72698974609375 + } + ] + }, + { + "id": "-LxGDF7cs", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 13.678570052404439, + "left": 387.73533831689275, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 387.73533831689275, + "y": 231.20067395662008 + }, + { + "x": 401.4139083692972, + "y": 231.20067395662008 + }, + { + "x": 401.4139083692972, + "y": 264.88490054481906 + }, + { + "x": 387.73533831689275, + "y": 264.88490054481906 + } + ] + } + ], + "version": "2.2.0" + }, + "40dd94c9cdcbdae9ea0dd51ffdad6023": { + "asset": { + "id": "40dd94c9cdcbdae9ea0dd51ffdad6023", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.75 + }, + "regions": [ + { + "id": "wWu3Qnn50", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 28.40937114673243, + "left": 801.2495183415537, + "top": 425.93753212376646 + }, + "points": [ + { + "x": 801.2495183415537, + "y": 425.93753212376646 + }, + { + "x": 829.658889488286, + "y": 425.93753212376646 + }, + { + "x": 829.658889488286, + "y": 479.62174265008224 + }, + { + "x": 801.2495183415537, + "y": 479.62174265008224 + } + ] + }, + { + "id": "ZfPqOdIdj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 24.200543310727497, + "left": 739.1698135018496, + "top": 368.04276315789474 + }, + "points": [ + { + "x": 739.1698135018496, + "y": 368.04276315789474 + }, + { + "x": 763.370356812577, + "y": 368.04276315789474 + }, + { + "x": 763.370356812577, + "y": 418.56907894736844 + }, + { + "x": 739.1698135018496, + "y": 418.56907894736844 + } + ] + }, + { + "id": "5DE6z97EX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368388928865134, + "width": 14.730849260172626, + "left": 636.0542540073983, + "top": 315.41121633429276 + }, + "points": [ + { + "x": 636.0542540073983, + "y": 315.41121633429276 + }, + { + "x": 650.7851032675709, + "y": 315.41121633429276 + }, + { + "x": 650.7851032675709, + "y": 342.7796052631579 + }, + { + "x": 636.0542540073983, + "y": 342.7796052631579 + } + ] + }, + { + "id": "q9nXrdoEQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 33.67033369297164, + "left": 548.7217748150432, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 548.7217748150432, + "y": 278.56909500925167 + }, + { + "x": 582.3921085080148, + "y": 278.56909500925167 + }, + { + "x": 582.3921085080148, + "y": 323.83223684210526 + }, + { + "x": 548.7217748150432, + "y": 323.83223684210526 + } + ] + }, + { + "id": "_nHB_Ucfg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 17.894752903988486, + "width": 17.887446054254006, + "left": 475.06781750924785, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 475.06781750924785, + "y": 253.30593711451482 + }, + { + "x": 492.95526356350183, + "y": 253.30593711451482 + }, + { + "x": 492.95526356350183, + "y": 271.2006900185033 + }, + { + "x": 475.06781750924785, + "y": 271.2006900185033 + } + ] + }, + { + "id": "HEp8vSUew", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 16.83516684648582, + "left": 388.78752119297167, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 388.78752119297167, + "y": 236.46384791324013 + }, + { + "x": 405.62268803945744, + "y": 236.46384791324013 + }, + { + "x": 405.62268803945744, + "y": 265.93751606188323 + }, + { + "x": 388.78752119297167, + "y": 265.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "58a36a4d8ad3d2261391896529cf4c15": { + "asset": { + "id": "58a36a4d8ad3d2261391896529cf4c15", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.65 + }, + "regions": [ + { + "id": "TJmu9-oRk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 19.991715474722564, + "left": 474.0156827990136, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 474.0156827990136, + "y": 246.9901476408306 + }, + { + "x": 494.00739827373616, + "y": 246.9901476408306 + }, + { + "x": 494.00739827373616, + "y": 279.6217105263158 + }, + { + "x": 474.0156827990136, + "y": 279.6217105263158 + } + ] + }, + { + "id": "Bj61trN0f", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 34.722564734895194, + "left": 800.1972872996301, + "top": 434.35855263157896 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 434.35855263157896 + }, + { + "x": 834.9198520345253, + "y": 434.35855263157896 + }, + { + "x": 834.9198520345253, + "y": 489.09542686060854 + }, + { + "x": 800.1972872996301, + "y": 489.09542686060854 + } + ] + }, + { + "id": "aMkRi0a2i", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 26.304909062885326, + "left": 736.0132167077682, + "top": 374.35855263157896 + }, + "points": [ + { + "x": 736.0132167077682, + "y": 374.35855263157896 + }, + { + "x": 762.3181257706535, + "y": 374.35855263157896 + }, + { + "x": 762.3181257706535, + "y": 419.62174265008224 + }, + { + "x": 736.0132167077682, + "y": 419.62174265008224 + } + ] + }, + { + "id": "yj_vZTzSh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 16.835118680641184, + "left": 628.6889257090013, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 628.6889257090013, + "y": 320.6743421052632 + }, + { + "x": 645.5240443896424, + "y": 320.6743421052632 + }, + { + "x": 645.5240443896424, + "y": 355.4111842105263 + }, + { + "x": 628.6889257090013, + "y": 355.4111842105263 + } + ] + }, + { + "id": "GCNEfAURj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 18.939580764488287, + "left": 557.1393341553637, + "top": 279.6217105263158 + }, + "points": [ + { + "x": 557.1393341553637, + "y": 279.6217105263158 + }, + { + "x": 576.0789149198521, + "y": 279.6217105263158 + }, + { + "x": 576.0789149198521, + "y": 314.35855263157896 + }, + { + "x": 557.1393341553637, + "y": 314.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "52d264ab13f20a8d786c1151439feafd": { + "asset": { + "id": "52d264ab13f20a8d786c1151439feafd", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.5 + }, + "regions": [ + { + "id": "SL7f_NyFF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 31.56596794081381, + "left": 807.5627119297164, + "top": 436.46383185135693 + }, + "points": [ + { + "x": 807.5627119297164, + "y": 436.46383185135693 + }, + { + "x": 839.1286798705303, + "y": 436.46383185135693 + }, + { + "x": 839.1286798705303, + "y": 500.6743421052632 + }, + { + "x": 807.5627119297164, + "y": 500.6743421052632 + } + ] + }, + { + "id": "5N60LvPa9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 22.096177558569668, + "left": 744.4307760480888, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 744.4307760480888, + "y": 376.46383185135693 + }, + { + "x": 766.5269536066585, + "y": 376.46383185135693 + }, + { + "x": 766.5269536066585, + "y": 419.62174265008224 + }, + { + "x": 744.4307760480888, + "y": 419.62174265008224 + } + ] + }, + { + "id": "F4-ikl8YB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 19.99181180641184, + "left": 632.8976572133168, + "top": 317.51644736842104 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 317.51644736842104 + }, + { + "x": 652.8894690197287, + "y": 317.51644736842104 + }, + { + "x": 652.8894690197287, + "y": 350.14805843955594 + }, + { + "x": 632.8976572133168, + "y": 350.14805843955594 + } + ] + }, + { + "id": "2JrcxxC2g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 27.357140104808877, + "left": 552.930602651048, + "top": 280.6743742290296 + }, + "points": [ + { + "x": 552.930602651048, + "y": 280.6743742290296 + }, + { + "x": 580.2877427558569, + "y": 280.6743742290296 + }, + { + "x": 580.2877427558569, + "y": 323.83223684210526 + }, + { + "x": 552.930602651048, + "y": 323.83223684210526 + } + ] + }, + { + "id": "1Hi2xTlFm", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 22.096177558569668, + "left": 477.17227959309497, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 477.17227959309497, + "y": 251.20065789473685 + }, + { + "x": 499.2684571516646, + "y": 251.20065789473685 + }, + { + "x": 499.2684571516646, + "y": 276.4638157894737 + }, + { + "x": 477.17227959309497, + "y": 276.4638157894737 + } + ] + } + ], + "version": "2.2.0" + }, + "a85fcb8719b4a2badd02256f985a1098": { + "asset": { + "id": "a85fcb8719b4a2badd02256f985a1098", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.35 + }, + "regions": [ + { + "id": "BCmG5lnri", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 23.148312268803945, + "left": 742.3264102959309, + "top": 381.727005807977 + }, + "points": [ + { + "x": 742.3264102959309, + "y": 381.727005807977 + }, + { + "x": 765.4747225647349, + "y": 381.727005807977 + }, + { + "x": 765.4747225647349, + "y": 432.2533215974507 + }, + { + "x": 742.3264102959309, + "y": 432.2533215974507 + } + ] + }, + { + "id": "QsdUdlwPG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 25.25277435265105, + "left": 800.1972872996301, + "top": 440.6743421052632 + }, + "points": [ + { + "x": 800.1972872996301, + "y": 440.6743421052632 + }, + { + "x": 825.4500616522812, + "y": 440.6743421052632 + }, + { + "x": 825.4500616522812, + "y": 499.621726588199 + }, + { + "x": 800.1972872996301, + "y": 499.621726588199 + } + ] + }, + { + "id": "p1H5C_hw7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 17.887349722564736, + "left": 630.793291461159, + "top": 320.6743421052632 + }, + "points": [ + { + "x": 630.793291461159, + "y": 320.6743421052632 + }, + { + "x": 648.6806411837238, + "y": 320.6743421052632 + }, + { + "x": 648.6806411837238, + "y": 356.46384791324016 + }, + { + "x": 630.793291461159, + "y": 356.46384791324016 + } + ] + }, + { + "id": "MHRUcQ6BP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 23.14840860049322, + "left": 557.1393341553637, + "top": 283.8322689658717 + }, + "points": [ + { + "x": 557.1393341553637, + "y": 283.8322689658717 + }, + { + "x": 580.2877427558569, + "y": 283.8322689658717 + }, + { + "x": 580.2877427558569, + "y": 326.9901315789474 + }, + { + "x": 557.1393341553637, + "y": 326.9901315789474 + } + ] + }, + { + "id": "P-ekEgKXN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 17.887446054254006, + "left": 478.22441430332924, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 478.22441430332924, + "y": 250.1480423776727 + }, + { + "x": 496.1118603575832, + "y": 250.1480423776727 + }, + { + "x": 496.1118603575832, + "y": 281.72698974609375 + }, + { + "x": 478.22441430332924, + "y": 281.72698974609375 + } + ] + }, + { + "id": "IDipC6Ehd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 18.939580764488287, + "left": 882.268803945746, + "top": 540.6743581671464 + }, + "points": [ + { + "x": 882.268803945746, + "y": 540.6743581671464 + }, + { + "x": 901.2083847102343, + "y": 540.6743581671464 + }, + { + "x": 901.2083847102343, + "y": 575.4112002724096 + }, + { + "x": 882.268803945746, + "y": 575.4112002724096 + } + ] + } + ], + "version": "2.2.0" + }, + "b73b2270b8b4fb8fd8f99e93ef6d5f9d": { + "asset": { + "id": "b73b2270b8b4fb8fd8f99e93ef6d5f9d", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.2 + }, + "regions": [ + { + "id": "igwvnPLFg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 24.200543310727497, + "left": 801.2495183415537, + "top": 448.0427952816612 + }, + "points": [ + { + "x": 801.2495183415537, + "y": 448.0427952816612 + }, + { + "x": 825.4500616522812, + "y": 448.0427952816612 + }, + { + "x": 825.4500616522812, + "y": 500.6743421052632 + }, + { + "x": 801.2495183415537, + "y": 500.6743421052632 + } + ] + }, + { + "id": "2qczh4qSq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 26.3050053945746, + "left": 733.9087546239211, + "top": 377.51644736842104 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 377.51644736842104 + }, + { + "x": 760.2137600184957, + "y": 377.51644736842104 + }, + { + "x": 760.2137600184957, + "y": 417.51646343030427 + }, + { + "x": 733.9087546239211, + "y": 417.51646343030427 + } + ] + }, + { + "id": "QpFmnu3Nj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 19.99181180641184, + "left": 626.5844636251542, + "top": 319.621726588199 + }, + "points": [ + { + "x": 626.5844636251542, + "y": 319.621726588199 + }, + { + "x": 646.5762754315659, + "y": 319.621726588199 + }, + { + "x": 646.5762754315659, + "y": 351.20067395662005 + }, + { + "x": 626.5844636251542, + "y": 351.20067395662005 + } + ] + }, + { + "id": "XCxv7s8Xq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 27.35723643649815, + "left": 553.9827373612824, + "top": 278.56909500925167 + }, + "points": [ + { + "x": 553.9827373612824, + "y": 278.56909500925167 + }, + { + "x": 581.3399737977805, + "y": 278.56909500925167 + }, + { + "x": 581.3399737977805, + "y": 319.621726588199 + }, + { + "x": 553.9827373612824, + "y": 319.621726588199 + } + ] + }, + { + "id": "Ooke3mr5_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.210494192023027, + "width": 26.3050053945746, + "left": 468.7546239210851, + "top": 252.25332159745065 + }, + "points": [ + { + "x": 468.7546239210851, + "y": 252.25332159745065 + }, + { + "x": 495.05962931565966, + "y": 252.25332159745065 + }, + { + "x": 495.05962931565966, + "y": 276.4638157894737 + }, + { + "x": 468.7546239210851, + "y": 276.4638157894737 + } + ] + }, + { + "id": "epPL3q9yx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 23.148312268803945, + "left": 874.903475647349, + "top": 548.0427631578948 + }, + "points": [ + { + "x": 874.903475647349, + "y": 548.0427631578948 + }, + { + "x": 898.0517879161529, + "y": 548.0427631578948 + }, + { + "x": 898.0517879161529, + "y": 584.8848844829358 + }, + { + "x": 874.903475647349, + "y": 584.8848844829358 + } + ] + } + ], + "version": "2.2.0" + }, + "2e96d618120a8cd1ee12e44b68c61171": { + "asset": { + "id": "2e96d618120a8cd1ee12e44b68c61171", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=19.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=19.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 19.05 + }, + "regions": [ + { + "id": "X6VlNnpVS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.157878674958884, + "width": 16.83516684648582, + "left": 388.78752119297167, + "top": 237.51646343030427 + }, + "points": [ + { + "x": 388.78752119297167, + "y": 237.51646343030427 + }, + { + "x": 405.62268803945744, + "y": 237.51646343030427 + }, + { + "x": 405.62268803945744, + "y": 260.6743421052632 + }, + { + "x": 388.78752119297167, + "y": 260.6743421052632 + } + ] + }, + { + "id": "WJQC4Om6s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 28.40937114673243, + "left": 872.7990135635018, + "top": 544.8848684210526 + }, + "points": [ + { + "x": 872.7990135635018, + "y": 544.8848684210526 + }, + { + "x": 901.2083847102343, + "y": 544.8848684210526 + }, + { + "x": 901.2083847102343, + "y": 597.5164634303043 + }, + { + "x": 872.7990135635018, + "y": 597.5164634303043 + } + ] + }, + { + "id": "8b8wSFlpp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 43.14022040690506, + "left": 787.5709001233046, + "top": 437.51644736842104 + }, + "points": [ + { + "x": 787.5709001233046, + "y": 437.51644736842104 + }, + { + "x": 830.7111205302097, + "y": 437.51644736842104 + }, + { + "x": 830.7111205302097, + "y": 495.41121633429276 + }, + { + "x": 787.5709001233046, + "y": 495.41121633429276 + } + ] + }, + { + "id": "mEA7XxebF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 21.043946516646116, + "left": 738.117582459926, + "top": 376.46383185135693 + }, + "points": [ + { + "x": 738.117582459926, + "y": 376.46383185135693 + }, + { + "x": 759.1615289765722, + "y": 376.46383185135693 + }, + { + "x": 759.1615289765722, + "y": 422.7796373869243 + }, + { + "x": 738.117582459926, + "y": 422.7796373869243 + } + ] + }, + { + "id": "saiRyx4RN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 18.939580764488287, + "left": 629.7410604192355, + "top": 310.1480423776727 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 310.1480423776727 + }, + { + "x": 648.6806411837238, + "y": 310.1480423776727 + }, + { + "x": 648.6806411837238, + "y": 345.9375 + }, + { + "x": 629.7410604192355, + "y": 345.9375 + } + ] + }, + { + "id": "zKVFB-wbG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 23.14840860049322, + "left": 553.9827373612824, + "top": 285.9375 + }, + "points": [ + { + "x": 553.9827373612824, + "y": 285.9375 + }, + { + "x": 577.1311459617756, + "y": 285.9375 + }, + { + "x": 577.1311459617756, + "y": 313.3059371145148 + }, + { + "x": 553.9827373612824, + "y": 313.3059371145148 + } + ] + }, + { + "id": "T-oDM1TN6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 22.096177558569668, + "left": 470.8590860049322, + "top": 244.88486842105263 + }, + "points": [ + { + "x": 470.8590860049322, + "y": 244.88486842105263 + }, + { + "x": 492.95526356350183, + "y": 244.88486842105263 + }, + { + "x": 492.95526356350183, + "y": 269.0954107987253 + }, + { + "x": 470.8590860049322, + "y": 269.0954107987253 + } + ] + } + ], + "version": "2.2.0" + }, + "631080a7b5af5804a83d1550bcdd63cd": { + "asset": { + "id": "631080a7b5af5804a83d1550bcdd63cd", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18.9 + }, + "regions": [ + { + "id": "HjrK9wRxv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 24.20063964241677, + "left": 866.4858199753392, + "top": 544.8848684210526 + }, + "points": [ + { + "x": 866.4858199753392, + "y": 544.8848684210526 + }, + { + "x": 890.6864596177559, + "y": 544.8848684210526 + }, + { + "x": 890.6864596177559, + "y": 581.7269897460938 + }, + { + "x": 866.4858199753392, + "y": 581.7269897460938 + } + ] + }, + { + "id": "3_NbWkCyE", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 34.722564734895194, + "left": 790.7274969173859, + "top": 442.77962132504115 + }, + "points": [ + { + "x": 790.7274969173859, + "y": 442.77962132504115 + }, + { + "x": 825.4500616522812, + "y": 442.77962132504115 + }, + { + "x": 825.4500616522812, + "y": 499.621726588199 + }, + { + "x": 790.7274969173859, + "y": 499.621726588199 + } + ] + }, + { + "id": "We08B9zdg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 24.200543310727497, + "left": 736.0132167077682, + "top": 375.41121633429276 + }, + "points": [ + { + "x": 736.0132167077682, + "y": 375.41121633429276 + }, + { + "x": 760.2137600184957, + "y": 375.41121633429276 + }, + { + "x": 760.2137600184957, + "y": 424.88486842105266 + }, + { + "x": 736.0132167077682, + "y": 424.88486842105266 + } + ] + }, + { + "id": "baFgvRbWD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 24.20063964241677, + "left": 620.2712700369914, + "top": 309.09542686060854 + }, + "points": [ + { + "x": 620.2712700369914, + "y": 309.09542686060854 + }, + { + "x": 644.4719096794081, + "y": 309.09542686060854 + }, + { + "x": 644.4719096794081, + "y": 349.09539473684214 + }, + { + "x": 620.2712700369914, + "y": 349.09539473684214 + } + ] + }, + { + "id": "QzSexrP6v", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 26.304909062885326, + "left": 549.7740058569667, + "top": 268.0427952816612 + }, + "points": [ + { + "x": 549.7740058569667, + "y": 268.0427952816612 + }, + { + "x": 576.0789149198521, + "y": 268.0427952816612 + }, + { + "x": 576.0789149198521, + "y": 309.09542686060854 + }, + { + "x": 549.7740058569667, + "y": 309.09542686060854 + } + ] + }, + { + "id": "Ju-JXFuw3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 17.887349722564736, + "left": 472.96345175709, + "top": 236.46384791324013 + }, + "points": [ + { + "x": 472.96345175709, + "y": 236.46384791324013 + }, + { + "x": 490.85080147965476, + "y": 236.46384791324013 + }, + { + "x": 490.85080147965476, + "y": 268.0427952816612 + }, + { + "x": 472.96345175709, + "y": 268.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "fac3b81ae8df122319ab0749725b2e92": { + "asset": { + "id": "fac3b81ae8df122319ab0749725b2e92", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18.75 + }, + "regions": [ + { + "id": "AzZ86WOCL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 30.513736898890258, + "left": 548.7217748150432, + "top": 259.621726588199 + }, + "points": [ + { + "x": 548.7217748150432, + "y": 259.621726588199 + }, + { + "x": 579.2355117139334, + "y": 259.621726588199 + }, + { + "x": 579.2355117139334, + "y": 306.99014764083057 + }, + { + "x": 548.7217748150432, + "y": 306.99014764083057 + } + ] + }, + { + "id": "L5qfbMm_3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 17.887349722564736, + "left": 630.793291461159, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 630.793291461159, + "y": 312.2533215974507 + }, + { + "x": 648.6806411837238, + "y": 312.2533215974507 + }, + { + "x": 648.6806411837238, + "y": 340.67437422902964 + }, + { + "x": 630.793291461159, + "y": 340.67437422902964 + } + ] + }, + { + "id": "n2iMpX6ow", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 22.096177558569668, + "left": 738.117582459926, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 738.117582459926, + "y": 364.88486842105266 + }, + { + "x": 760.2137600184957, + "y": 364.88486842105266 + }, + { + "x": 760.2137600184957, + "y": 411.20067395662005 + }, + { + "x": 738.117582459926, + "y": 411.20067395662005 + } + ] + }, + { + "id": "L293LNkHv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 28.40937114673243, + "left": 797.0406905055487, + "top": 432.2533215974507 + }, + "points": [ + { + "x": 797.0406905055487, + "y": 432.2533215974507 + }, + { + "x": 825.4500616522812, + "y": 432.2533215974507 + }, + { + "x": 825.4500616522812, + "y": 492.2533215974507 + }, + { + "x": 797.0406905055487, + "y": 492.2533215974507 + } + ] + }, + { + "id": "daCiPELsX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 24.200543310727497, + "left": 864.3814542231813, + "top": 550.1480423776727 + }, + "points": [ + { + "x": 864.3814542231813, + "y": 550.1480423776727 + }, + { + "x": 888.5819975339087, + "y": 550.1480423776727 + }, + { + "x": 888.5819975339087, + "y": 580.6743742290296 + }, + { + "x": 864.3814542231813, + "y": 580.6743742290296 + } + ] + }, + { + "id": "z80nUtJtV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 25.25277435265105, + "left": 471.91122071516645, + "top": 229.0953947368421 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 229.0953947368421 + }, + { + "x": 497.1639950678175, + "y": 229.0953947368421 + }, + { + "x": 497.1639950678175, + "y": 263.83223684210526 + }, + { + "x": 471.91122071516645, + "y": 263.83223684210526 + } + ] + } + ], + "version": "2.2.0" + }, + "827ed0f7f43214bd67c582307c41a950": { + "asset": { + "id": "827ed0f7f43214bd67c582307c41a950", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18.6 + }, + "regions": [ + { + "id": "YYJHLZQig", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 27.357140104808877, + "left": 862.2770884710235, + "top": 540.6743581671464 + }, + "points": [ + { + "x": 862.2770884710235, + "y": 540.6743581671464 + }, + { + "x": 889.6342285758324, + "y": 540.6743581671464 + }, + { + "x": 889.6342285758324, + "y": 588.0427792197779 + }, + { + "x": 862.2770884710235, + "y": 588.0427792197779 + } + ] + }, + { + "id": "DoeTj9wnb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 30.513833230579532, + "left": 793.8840937114674, + "top": 435.41121633429276 + }, + "points": [ + { + "x": 793.8840937114674, + "y": 435.41121633429276 + }, + { + "x": 824.3979269420469, + "y": 435.41121633429276 + }, + { + "x": 824.3979269420469, + "y": 492.2533215974507 + }, + { + "x": 793.8840937114674, + "y": 492.2533215974507 + } + ] + }, + { + "id": "dHeKdsEUg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 34.722564734895194, + "left": 733.9087546239211, + "top": 366.99014764083057 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 366.99014764083057 + }, + { + "x": 768.6313193588163, + "y": 366.99014764083057 + }, + { + "x": 768.6313193588163, + "y": 421.7269736842105 + }, + { + "x": 733.9087546239211, + "y": 421.7269736842105 + } + ] + }, + { + "id": "7nA20VEfG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 21.043946516646116, + "left": 625.5323289149198, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 625.5323289149198, + "y": 303.8322529039885 + }, + { + "x": 646.5762754315659, + "y": 303.8322529039885 + }, + { + "x": 646.5762754315659, + "y": 328.0427952816612 + }, + { + "x": 625.5323289149198, + "y": 328.0427952816612 + } + ] + }, + { + "id": "zC9vETdIa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 24.200543310727497, + "left": 555.0349684032059, + "top": 258.5691110711349 + }, + "points": [ + { + "x": 555.0349684032059, + "y": 258.5691110711349 + }, + { + "x": 579.2355117139334, + "y": 258.5691110711349 + }, + { + "x": 579.2355117139334, + "y": 294.3585686934622 + }, + { + "x": 555.0349684032059, + "y": 294.3585686934622 + } + ] + }, + { + "id": "2kV6TWaYM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 23.14840860049322, + "left": 472.96345175709, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 472.96345175709, + "y": 230.1480584395559 + }, + { + "x": 496.1118603575832, + "y": 230.1480584395559 + }, + { + "x": 496.1118603575832, + "y": 256.46383185135693 + }, + { + "x": 472.96345175709, + "y": 256.46383185135693 + } + ] + } + ], + "version": "2.2.0" + }, + "445881dcdf0e3854abb9c3bc30ec5373": { + "asset": { + "id": "445881dcdf0e3854abb9c3bc30ec5373", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18.45 + }, + "regions": [ + { + "id": "5A-KId_ma", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 24.200543310727497, + "left": 472.96345175709, + "top": 221.72698974609375 + }, + "points": [ + { + "x": 472.96345175709, + "y": 221.72698974609375 + }, + { + "x": 497.1639950678175, + "y": 221.72698974609375 + }, + { + "x": 497.1639950678175, + "y": 253.30593711451482 + }, + { + "x": 472.96345175709, + "y": 253.30593711451482 + } + ] + }, + { + "id": "H76jx3mbj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 26.304909062885326, + "left": 865.4336852651048, + "top": 543.8322529039885 + }, + "points": [ + { + "x": 865.4336852651048, + "y": 543.8322529039885 + }, + { + "x": 891.7385943279902, + "y": 543.8322529039885 + }, + { + "x": 891.7385943279902, + "y": 582.7796052631579 + }, + { + "x": 865.4336852651048, + "y": 582.7796052631579 + } + ] + }, + { + "id": "bEzrk4xJO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 31.56596794081381, + "left": 790.7274969173859, + "top": 431.2006578947368 + }, + "points": [ + { + "x": 790.7274969173859, + "y": 431.2006578947368 + }, + { + "x": 822.2934648581997, + "y": 431.2006578947368 + }, + { + "x": 822.2934648581997, + "y": 488.04276315789474 + }, + { + "x": 790.7274969173859, + "y": 488.04276315789474 + } + ] + }, + { + "id": "tytfXoW1C", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 35.77479577681874, + "left": 733.9087546239211, + "top": 362.7796373869243 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 362.7796373869243 + }, + { + "x": 769.6835504007398, + "y": 362.7796373869243 + }, + { + "x": 769.6835504007398, + "y": 417.51646343030427 + }, + { + "x": 733.9087546239211, + "y": 417.51646343030427 + } + ] + }, + { + "id": "KHKyVogwT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 22.096177558569668, + "left": 629.7410604192355, + "top": 294.3585686934622 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 294.3585686934622 + }, + { + "x": 651.8372379778052, + "y": 294.3585686934622 + }, + { + "x": 651.8372379778052, + "y": 334.3585847553454 + }, + { + "x": 629.7410604192355, + "y": 334.3585847553454 + } + ] + }, + { + "id": "uyedr7eTy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 23.14840860049322, + "left": 553.9827373612824, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 553.9827373612824, + "y": 249.09542686060857 + }, + { + "x": 577.1311459617756, + "y": 249.09542686060857 + }, + { + "x": 577.1311459617756, + "y": 291.20067395662005 + }, + { + "x": 553.9827373612824, + "y": 291.20067395662005 + } + ] + } + ], + "version": "2.2.0" + }, + "abe0f77ae494624c3e1ac04402fe7288": { + "asset": { + "id": "abe0f77ae494624c3e1ac04402fe7288", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18.3 + }, + "regions": [ + { + "id": "bAJGLS6NF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 22.096177558569668, + "left": 394.0485319050555, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 394.0485319050555, + "y": 200.67434210526315 + }, + { + "x": 416.14470946362513, + "y": 200.67434210526315 + }, + { + "x": 416.14470946362513, + "y": 229.0953947368421 + }, + { + "x": 394.0485319050555, + "y": 229.0953947368421 + } + ] + }, + { + "id": "J7wwyUXsR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 30.513833230579532, + "left": 475.06781750924785, + "top": 219.62171052631578 + }, + "points": [ + { + "x": 475.06781750924785, + "y": 219.62171052631578 + }, + { + "x": 505.58165073982735, + "y": 219.62171052631578 + }, + { + "x": 505.58165073982735, + "y": 254.35855263157896 + }, + { + "x": 475.06781750924785, + "y": 254.35855263157896 + } + ] + }, + { + "id": "hL9EkrtWO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 28.40937114673243, + "left": 558.1915651972873, + "top": 250.1480423776727 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 250.1480423776727 + }, + { + "x": 586.6009363440197, + "y": 250.1480423776727 + }, + { + "x": 586.6009363440197, + "y": 292.2532894736842 + }, + { + "x": 558.1915651972873, + "y": 292.2532894736842 + } + ] + }, + { + "id": "-fR6O8x3R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473716334292764, + "width": 16.835215012330455, + "left": 637.1064850493218, + "top": 298.56907894736844 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 298.56907894736844 + }, + { + "x": 653.9417000616523, + "y": 298.56907894736844 + }, + { + "x": 653.9417000616523, + "y": 328.0427952816612 + }, + { + "x": 637.1064850493218, + "y": 328.0427952816612 + } + ] + }, + { + "id": "9opVUY_A8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 38.93139257090012, + "left": 734.9609856658446, + "top": 361.7269736842105 + }, + "points": [ + { + "x": 734.9609856658446, + "y": 361.7269736842105 + }, + { + "x": 773.8923782367448, + "y": 361.7269736842105 + }, + { + "x": 773.8923782367448, + "y": 401.72698974609375 + }, + { + "x": 734.9609856658446, + "y": 401.72698974609375 + } + ] + }, + { + "id": "ekkbQ19pQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 35.77479577681874, + "left": 790.7274969173859, + "top": 431.2006578947368 + }, + "points": [ + { + "x": 790.7274969173859, + "y": 431.2006578947368 + }, + { + "x": 826.5022926942047, + "y": 431.2006578947368 + }, + { + "x": 826.5022926942047, + "y": 490.1480423776727 + }, + { + "x": 790.7274969173859, + "y": 490.1480423776727 + } + ] + }, + { + "id": "09N_JRJrF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 25.25277435265105, + "left": 859.120491676942, + "top": 535.4111842105264 + }, + "points": [ + { + "x": 859.120491676942, + "y": 535.4111842105264 + }, + { + "x": 884.3732660295931, + "y": 535.4111842105264 + }, + { + "x": 884.3732660295931, + "y": 578.5690950092517 + }, + { + "x": 859.120491676942, + "y": 578.5690950092517 + } + ] + } + ], + "version": "2.2.0" + }, + "9996808453f25c8dc1848732de6433dd": { + "asset": { + "id": "9996808453f25c8dc1848732de6433dd", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18.15 + }, + "regions": [ + { + "id": "XYNdDmxBr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 18.939580764488287, + "left": 487.69420468557337, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 487.69420468557337, + "y": 205.93751606188323 + }, + { + "x": 506.6337854500617, + "y": 205.93751606188323 + }, + { + "x": 506.6337854500617, + "y": 244.88486842105263 + }, + { + "x": 487.69420468557337, + "y": 244.88486842105263 + } + ] + }, + { + "id": "K8EBtALwz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63161107113487, + "width": 15.782983970406905, + "left": 566.609124537608, + "top": 248.04276315789474 + }, + "points": [ + { + "x": 566.609124537608, + "y": 248.04276315789474 + }, + { + "x": 582.3921085080148, + "y": 248.04276315789474 + }, + { + "x": 582.3921085080148, + "y": 280.6743742290296 + }, + { + "x": 566.609124537608, + "y": 280.6743742290296 + } + ] + }, + { + "id": "nA7l7h1PI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 14.730849260172626, + "left": 639.2108508014796, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 292.2532894736842 + }, + { + "x": 653.9417000616523, + "y": 292.2532894736842 + }, + { + "x": 653.9417000616523, + "y": 329.0954107987253 + }, + { + "x": 639.2108508014796, + "y": 329.0954107987253 + } + ] + }, + { + "id": "47l6fiSJY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 26.3050053945746, + "left": 738.117582459926, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 738.117582459926, + "y": 356.46384791324016 + }, + { + "x": 764.4225878545006, + "y": 356.46384791324016 + }, + { + "x": 764.4225878545006, + "y": 395.41120027240953 + }, + { + "x": 738.117582459926, + "y": 395.41120027240953 + } + ] + }, + { + "id": "fmIxT70Tk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15786261307566, + "width": 22.096177558569668, + "left": 794.9363247533909, + "top": 432.2533215974507 + }, + "points": [ + { + "x": 794.9363247533909, + "y": 432.2533215974507 + }, + { + "x": 817.0325023119606, + "y": 432.2533215974507 + }, + { + "x": 817.0325023119606, + "y": 475.4111842105263 + }, + { + "x": 794.9363247533909, + "y": 475.4111842105263 + } + ] + }, + { + "id": "TgNbeW7Z7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 29.46150585696671, + "left": 855.9638948828607, + "top": 538.5690789473684 + }, + "points": [ + { + "x": 855.9638948828607, + "y": 538.5690789473684 + }, + { + "x": 885.4254007398274, + "y": 538.5690789473684 + }, + { + "x": 885.4254007398274, + "y": 585.9375 + }, + { + "x": 855.9638948828607, + "y": 585.9375 + } + ] + } + ], + "version": "2.2.0" + }, + "d4822ae0e9a9cf857800d4d0745e32bd": { + "asset": { + "id": "d4822ae0e9a9cf857800d4d0745e32bd", + "format": "mp4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=18.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=18", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 18 + }, + "regions": [ + { + "id": "IUxNExQWw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 30.513736898890258, + "left": 858.0682606350185, + "top": 544.8848684210526 + }, + "points": [ + { + "x": 858.0682606350185, + "y": 544.8848684210526 + }, + { + "x": 888.5819975339087, + "y": 544.8848684210526 + }, + { + "x": 888.5819975339087, + "y": 585.9375 + }, + { + "x": 858.0682606350185, + "y": 585.9375 + } + ] + }, + { + "id": "0tklc7Hnx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 32.61819898273736, + "left": 791.7797279593095, + "top": 428.04276315789474 + }, + "points": [ + { + "x": 791.7797279593095, + "y": 428.04276315789474 + }, + { + "x": 824.3979269420469, + "y": 428.04276315789474 + }, + { + "x": 824.3979269420469, + "y": 483.8322529039885 + }, + { + "x": 791.7797279593095, + "y": 483.8322529039885 + } + ] + }, + { + "id": "CKbHw3xrL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 22.096177558569668, + "left": 745.4830070900124, + "top": 356.46384791324016 + }, + "points": [ + { + "x": 745.4830070900124, + "y": 356.46384791324016 + }, + { + "x": 767.579184648582, + "y": 356.46384791324016 + }, + { + "x": 767.579184648582, + "y": 397.5164794921875 + }, + { + "x": 745.4830070900124, + "y": 397.5164794921875 + } + ] + }, + { + "id": "Nym47A5fI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 19.99181180641184, + "left": 640.2630818434033, + "top": 286.9901637027138 + }, + "points": [ + { + "x": 640.2630818434033, + "y": 286.9901637027138 + }, + { + "x": 660.254893649815, + "y": 286.9901637027138 + }, + { + "x": 660.254893649815, + "y": 322.77962132504115 + }, + { + "x": 640.2630818434033, + "y": 322.77962132504115 + } + ] + }, + { + "id": "88lQSAqpM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 24.200543310727497, + "left": 567.6613555795315, + "top": 240.67435816714638 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 240.67435816714638 + }, + { + "x": 591.861898890259, + "y": 240.67435816714638 + }, + { + "x": 591.861898890259, + "y": 282.7796052631579 + }, + { + "x": 567.6613555795315, + "y": 282.7796052631579 + } + ] + }, + { + "id": "RV67R3aPc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 26.3050053945746, + "left": 485.58983893341554, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 485.58983893341554, + "y": 210.14802631578948 + }, + { + "x": 511.89484432799014, + "y": 210.14802631578948 + }, + { + "x": 511.89484432799014, + "y": 244.88486842105263 + }, + { + "x": 485.58983893341554, + "y": 244.88486842105263 + } + ] + } + ], + "version": "2.2.0" + }, + "c896a86d7620179faba7eb1eaf91b678": { + "asset": { + "id": "c896a86d7620179faba7eb1eaf91b678", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=17.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=17.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 17.85 + }, + "regions": [ + { + "id": "JbeAM4l0o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 25.25277435265105, + "left": 852.8072980887792, + "top": 540.6743581671464 + }, + "points": [ + { + "x": 852.8072980887792, + "y": 540.6743581671464 + }, + { + "x": 878.0600724414303, + "y": 540.6743581671464 + }, + { + "x": 878.0600724414303, + "y": 581.7269897460938 + }, + { + "x": 852.8072980887792, + "y": 581.7269897460938 + } + ] + }, + { + "id": "Fu6_N9EGq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 28.40937114673243, + "left": 793.8840937114674, + "top": 421.7269736842105 + }, + "points": [ + { + "x": 793.8840937114674, + "y": 421.7269736842105 + }, + { + "x": 822.2934648581997, + "y": 421.7269736842105 + }, + { + "x": 822.2934648581997, + "y": 474.3585686934622 + }, + { + "x": 793.8840937114674, + "y": 474.3585686934622 + } + ] + }, + { + "id": "aMzL2yjd8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 23.14840860049322, + "left": 747.5873728421702, + "top": 353.305953176398 + }, + "points": [ + { + "x": 747.5873728421702, + "y": 353.305953176398 + }, + { + "x": 770.7357814426634, + "y": 353.305953176398 + }, + { + "x": 770.7357814426634, + "y": 394.3585847553454 + }, + { + "x": 747.5873728421702, + "y": 394.3585847553454 + } + ] + }, + { + "id": "PAITPnh4q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 29.46150585696671, + "left": 638.1587160912454, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 281.72698974609375 + }, + { + "x": 667.6202219482121, + "y": 281.72698974609375 + }, + { + "x": 667.6202219482121, + "y": 315.41121633429276 + }, + { + "x": 638.1587160912454, + "y": 315.41121633429276 + } + ] + }, + { + "id": "V2IWTI-I2", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 31.56596794081381, + "left": 567.6613555795315, + "top": 238.5690789473684 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 238.5690789473684 + }, + { + "x": 599.2273235203453, + "y": 238.5690789473684 + }, + { + "x": 599.2273235203453, + "y": 278.56909500925167 + }, + { + "x": 567.6613555795315, + "y": 278.56909500925167 + } + ] + }, + { + "id": "Cb5nz8UNC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 27.357140104808877, + "left": 491.9030325215783, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 491.9030325215783, + "y": 204.8849005448191 + }, + { + "x": 519.2601726263872, + "y": 204.8849005448191 + }, + { + "x": 519.2601726263872, + "y": 245.93753212376646 + }, + { + "x": 491.9030325215783, + "y": 245.93753212376646 + } + ] + } + ], + "version": "2.2.0" + }, + "114ecb1dc24acdb1c92265bdc5ca80fc": { + "asset": { + "id": "114ecb1dc24acdb1c92265bdc5ca80fc", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=17.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=17.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 17.7 + }, + "regions": [ + { + "id": "ViPds1iUB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 35.77479577681874, + "left": 787.5709001233046, + "top": 413.305953176398 + }, + "points": [ + { + "x": 787.5709001233046, + "y": 413.305953176398 + }, + { + "x": 823.3456959001234, + "y": 413.305953176398 + }, + { + "x": 823.3456959001234, + "y": 483.8322529039885 + }, + { + "x": 787.5709001233046, + "y": 483.8322529039885 + } + ] + }, + { + "id": "bCfA2Ye3g", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.78950580797697, + "width": 21.043946516646116, + "left": 745.4830070900124, + "top": 352.2532894736842 + }, + "points": [ + { + "x": 745.4830070900124, + "y": 352.2532894736842 + }, + { + "x": 766.5269536066585, + "y": 352.2532894736842 + }, + { + "x": 766.5269536066585, + "y": 388.0427952816612 + }, + { + "x": 745.4830070900124, + "y": 388.0427952816612 + } + ] + }, + { + "id": "3vGgzgMzS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 29.46150585696671, + "left": 641.3153128853268, + "top": 277.5164794921875 + }, + "points": [ + { + "x": 641.3153128853268, + "y": 277.5164794921875 + }, + { + "x": 670.7768187422935, + "y": 277.5164794921875 + }, + { + "x": 670.7768187422935, + "y": 310.1480423776727 + }, + { + "x": 641.3153128853268, + "y": 310.1480423776727 + } + ] + }, + { + "id": "eihJUhVJj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 21.043946516646116, + "left": 577.1311459617756, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 577.1311459617756, + "y": 231.20067395662008 + }, + { + "x": 598.1750924784217, + "y": 231.20067395662008 + }, + { + "x": 598.1750924784217, + "y": 276.4638157894737 + }, + { + "x": 577.1311459617756, + "y": 276.4638157894737 + } + ] + }, + { + "id": "QEl_I8O92", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789481715152135, + "width": 24.20063964241677, + "left": 497.1639950678175, + "top": 201.72698171515214 + }, + "points": [ + { + "x": 497.1639950678175, + "y": 201.72698171515214 + }, + { + "x": 521.3646347102343, + "y": 201.72698171515214 + }, + { + "x": 521.3646347102343, + "y": 237.51646343030427 + }, + { + "x": 497.1639950678175, + "y": 237.51646343030427 + } + ] + }, + { + "id": "llbTUJDJ1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 19.9917636405672, + "left": 412.9881126695438, + "top": 180.67435816714638 + }, + "points": [ + { + "x": 412.9881126695438, + "y": 180.67435816714638 + }, + { + "x": 432.97987631011097, + "y": 180.67435816714638 + }, + { + "x": 432.97987631011097, + "y": 208.0427952816612 + }, + { + "x": 412.9881126695438, + "y": 208.0427952816612 + } + ] + } + ], + "version": "2.2.0" + }, + "53e4ec1703d73fdab233ddb3da3acebc": { + "asset": { + "id": "53e4ec1703d73fdab233ddb3da3acebc", + "format": "55", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=17.55.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=17.55", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 17.55 + }, + "regions": [ + { + "id": "8DK7qlfvR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.94738448293585, + "width": 30.513736898890258, + "left": 830.7111205302097, + "top": 525.9375 + }, + "points": [ + { + "x": 830.7111205302097, + "y": 525.9375 + }, + { + "x": 861.2248574290999, + "y": 525.9375 + }, + { + "x": 861.2248574290999, + "y": 584.8848844829358 + }, + { + "x": 830.7111205302097, + "y": 584.8848844829358 + } + ] + }, + { + "id": "FaXidcM5b", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 31.56596794081381, + "left": 781.2577065351418, + "top": 420.6743581671464 + }, + "points": [ + { + "x": 781.2577065351418, + "y": 420.6743581671464 + }, + { + "x": 812.8236744759556, + "y": 420.6743581671464 + }, + { + "x": 812.8236744759556, + "y": 478.56907894736844 + }, + { + "x": 781.2577065351418, + "y": 478.56907894736844 + } + ] + }, + { + "id": "xPXZcQaRM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 31.56596794081381, + "left": 737.0653514180025, + "top": 344.8848844829359 + }, + "points": [ + { + "x": 737.0653514180025, + "y": 344.8848844829359 + }, + { + "x": 768.6313193588163, + "y": 344.8848844829359 + }, + { + "x": 768.6313193588163, + "y": 401.72698974609375 + }, + { + "x": 737.0653514180025, + "y": 401.72698974609375 + } + ] + }, + { + "id": "tFO9LYKCh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473716334292764, + "width": 14.730752928483355, + "left": 649.7328722256474, + "top": 279.6217105263158 + }, + "points": [ + { + "x": 649.7328722256474, + "y": 279.6217105263158 + }, + { + "x": 664.4636251541307, + "y": 279.6217105263158 + }, + { + "x": 664.4636251541307, + "y": 309.09542686060854 + }, + { + "x": 649.7328722256474, + "y": 309.09542686060854 + } + ] + }, + { + "id": "FzXBRaNXe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 36.8270268187423, + "left": 563.4525277435265, + "top": 230.1480584395559 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 230.1480584395559 + }, + { + "x": 600.2795545622688, + "y": 230.1480584395559 + }, + { + "x": 600.2795545622688, + "y": 274.3585847553454 + }, + { + "x": 563.4525277435265, + "y": 274.3585847553454 + } + ] + }, + { + "id": "QUmorUZcV", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315821597450658, + "width": 19.99181180641184, + "left": 495.05962931565966, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 495.05962931565966, + "y": 200.67434210526315 + }, + { + "x": 515.0514411220715, + "y": 200.67434210526315 + }, + { + "x": 515.0514411220715, + "y": 226.99016370271383 + }, + { + "x": 495.05962931565966, + "y": 226.99016370271383 + } + ] + }, + { + "id": "iruHgAYfD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 27.357188270653513, + "left": 411.93588162762023, + "top": 169.0953947368421 + }, + "points": [ + { + "x": 411.93588162762023, + "y": 169.0953947368421 + }, + { + "x": 439.29306989827376, + "y": 169.0953947368421 + }, + { + "x": 439.29306989827376, + "y": 205.93751606188323 + }, + { + "x": 411.93588162762023, + "y": 205.93751606188323 + } + ] + } + ], + "version": "2.2.0" + }, + "2e41b9ed738a64da35713017985f34da": { + "asset": { + "id": "2e41b9ed738a64da35713017985f34da", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=17.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=17.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 17.4 + }, + "regions": [ + { + "id": "cU9-q-Y2E", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 10.522021424167693, + "left": 498.21622610974106, + "top": 192.25329750462583 + }, + "points": [ + { + "x": 498.21622610974106, + "y": 192.25329750462583 + }, + { + "x": 508.73824753390875, + "y": 192.25329750462583 + }, + { + "x": 508.73824753390875, + "y": 224.88488448293586 + }, + { + "x": 498.21622610974106, + "y": 224.88488448293586 + } + ] + }, + { + "id": "4ukKEaYUx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 23.14840860049322, + "left": 569.7657213316893, + "top": 226.99016370271383 + }, + "points": [ + { + "x": 569.7657213316893, + "y": 226.99016370271383 + }, + { + "x": 592.9141299321825, + "y": 226.99016370271383 + }, + { + "x": 592.9141299321825, + "y": 259.621726588199 + }, + { + "x": 569.7657213316893, + "y": 259.621726588199 + } + ] + }, + { + "id": "xLLdMEz9J", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 18.939580764488287, + "left": 639.2108508014796, + "top": 270.1480263157895 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 270.1480263157895 + }, + { + "x": 658.150431565968, + "y": 270.1480263157895 + }, + { + "x": 658.150431565968, + "y": 300.6743581671464 + }, + { + "x": 639.2108508014796, + "y": 300.6743581671464 + } + ] + }, + { + "id": "c2RGKzats", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 30.513736898890258, + "left": 729.7000231196055, + "top": 339.6217105263158 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 339.6217105263158 + }, + { + "x": 760.2137600184957, + "y": 339.6217105263158 + }, + { + "x": 760.2137600184957, + "y": 384.88490054481906 + }, + { + "x": 729.7000231196055, + "y": 384.88490054481906 + } + ] + }, + { + "id": "sSykQpDAg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26314183285362, + "width": 26.3050053945746, + "left": 774.9445129469791, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 774.9445129469791, + "y": 419.62174265008224 + }, + { + "x": 801.2495183415537, + "y": 419.62174265008224 + }, + { + "x": 801.2495183415537, + "y": 464.8848844829359 + }, + { + "x": 774.9445129469791, + "y": 464.8848844829359 + } + ] + }, + { + "id": "nRThtsrCj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 26.304909062885326, + "left": 818.0847333538841, + "top": 535.4111842105264 + }, + "points": [ + { + "x": 818.0847333538841, + "y": 535.4111842105264 + }, + { + "x": 844.3896424167694, + "y": 535.4111842105264 + }, + { + "x": 844.3896424167694, + "y": 581.7269897460938 + }, + { + "x": 818.0847333538841, + "y": 581.7269897460938 + } + ] + } + ], + "version": "2.2.0" + }, + "324d70c5586e67d34345c56f321741c0": { + "asset": { + "id": "324d70c5586e67d34345c56f321741c0", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=17.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=17.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 17.25 + }, + "regions": [ + { + "id": "yey4CeZ9M", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 27.357140104808877, + "left": 486.6420699753391, + "top": 191.20065789473685 + }, + "points": [ + { + "x": 486.6420699753391, + "y": 191.20065789473685 + }, + { + "x": 513.9992100801479, + "y": 191.20065789473685 + }, + { + "x": 513.9992100801479, + "y": 215.41120027240953 + }, + { + "x": 486.6420699753391, + "y": 215.41120027240953 + } + ] + }, + { + "id": "umsRIqX4k", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 18.939580764488287, + "left": 566.609124537608, + "top": 215.41120027240953 + }, + "points": [ + { + "x": 566.609124537608, + "y": 215.41120027240953 + }, + { + "x": 585.5487053020962, + "y": 215.41120027240953 + }, + { + "x": 585.5487053020962, + "y": 241.72697368421052 + }, + { + "x": 566.609124537608, + "y": 241.72697368421052 + } + ] + }, + { + "id": "fnpdbHF0M", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 23.14840860049322, + "left": 637.1064850493218, + "top": 265.93751606188323 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 265.93751606188323 + }, + { + "x": 660.254893649815, + "y": 265.93751606188323 + }, + { + "x": 660.254893649815, + "y": 293.305953176398 + }, + { + "x": 637.1064850493218, + "y": 293.305953176398 + } + ] + }, + { + "id": "xP3TKosoB", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 27.357140104808877, + "left": 729.7000231196055, + "top": 330.1480263157895 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 330.1480263157895 + }, + { + "x": 757.0571632244144, + "y": 330.1480263157895 + }, + { + "x": 757.0571632244144, + "y": 374.35855263157896 + }, + { + "x": 729.7000231196055, + "y": 374.35855263157896 + } + ] + }, + { + "id": "pcik1j_oS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 31.56596794081381, + "left": 764.4225878545006, + "top": 405.9375 + }, + "points": [ + { + "x": 764.4225878545006, + "y": 405.9375 + }, + { + "x": 795.9885557953145, + "y": 405.9375 + }, + { + "x": 795.9885557953145, + "y": 463.8322689658717 + }, + { + "x": 764.4225878545006, + "y": 463.8322689658717 + } + ] + }, + { + "id": "YGl9USFHJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78948974609375, + "width": 29.46160218865598, + "left": 804.406115135635, + "top": 519.6217105263158 + }, + "points": [ + { + "x": 804.406115135635, + "y": 519.6217105263158 + }, + { + "x": 833.867717324291, + "y": 519.6217105263158 + }, + { + "x": 833.867717324291, + "y": 575.4112002724096 + }, + { + "x": 804.406115135635, + "y": 575.4112002724096 + } + ] + } + ], + "version": "2.2.0" + }, + "a8e6ba9d968f2284178380a29e0709a6": { + "asset": { + "id": "a8e6ba9d968f2284178380a29e0709a6", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=17.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=17.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 17.1 + }, + "regions": [ + { + "id": "In_qLk495", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 23.14840860049322, + "left": 490.85080147965476, + "top": 183.8322529039885 + }, + "points": [ + { + "x": 490.85080147965476, + "y": 183.8322529039885 + }, + { + "x": 513.9992100801479, + "y": 183.8322529039885 + }, + { + "x": 513.9992100801479, + "y": 209.09541079872534 + }, + { + "x": 490.85080147965476, + "y": 209.09541079872534 + } + ] + }, + { + "id": "C_y9jH306", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 14.730752928483355, + "left": 567.6613555795315, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 210.14802631578948 + }, + { + "x": 582.3921085080148, + "y": 210.14802631578948 + }, + { + "x": 582.3921085080148, + "y": 244.88486842105263 + }, + { + "x": 567.6613555795315, + "y": 244.88486842105263 + } + ] + }, + { + "id": "M1bekmpmv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473716334292764, + "width": 15.782983970406905, + "left": 639.2108508014796, + "top": 260.6743421052632 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 260.6743421052632 + }, + { + "x": 654.9938347718866, + "y": 260.6743421052632 + }, + { + "x": 654.9938347718866, + "y": 290.14805843955594 + }, + { + "x": 639.2108508014796, + "y": 290.14805843955594 + } + ] + }, + { + "id": "5oPW9g8wM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 26.3050053945746, + "left": 722.3345984895191, + "top": 334.3585847553454 + }, + "points": [ + { + "x": 722.3345984895191, + "y": 334.3585847553454 + }, + { + "x": 748.6396038840937, + "y": 334.3585847553454 + }, + { + "x": 748.6396038840937, + "y": 380.6743421052632 + }, + { + "x": 722.3345984895191, + "y": 380.6743421052632 + } + ] + }, + { + "id": "hFqQQAX25", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 27.35723643649815, + "left": 759.1615289765722, + "top": 408.04277921977797 + }, + "points": [ + { + "x": 759.1615289765722, + "y": 408.04277921977797 + }, + { + "x": 786.5187654130702, + "y": 408.04277921977797 + }, + { + "x": 786.5187654130702, + "y": 461.72698974609375 + }, + { + "x": 759.1615289765722, + "y": 461.72698974609375 + } + ] + }, + { + "id": "48JA29WQt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 23.14840860049322, + "left": 791.7797279593095, + "top": 525.9375 + }, + "points": [ + { + "x": 791.7797279593095, + "y": 525.9375 + }, + { + "x": 814.9281365598027, + "y": 525.9375 + }, + { + "x": 814.9281365598027, + "y": 582.7796052631579 + }, + { + "x": 791.7797279593095, + "y": 582.7796052631579 + } + ] + } + ], + "version": "2.2.0" + }, + "0397d5a4ea7f72ecf08379aaf3f7b05e": { + "asset": { + "id": "0397d5a4ea7f72ecf08379aaf3f7b05e", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.95 + }, + "regions": [ + { + "id": "jeoFhKm1q", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 70.52629972759046, + "width": 32.61819898273736, + "left": 778.1011097410604, + "top": 521.7269897460938 + }, + "points": [ + { + "x": 778.1011097410604, + "y": 521.7269897460938 + }, + { + "x": 810.7193087237978, + "y": 521.7269897460938 + }, + { + "x": 810.7193087237978, + "y": 592.2532894736842 + }, + { + "x": 778.1011097410604, + "y": 592.2532894736842 + } + ] + }, + { + "id": "SV14_BEzA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 32.61819898273736, + "left": 746.5351418002466, + "top": 412.2532894736842 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 412.2532894736842 + }, + { + "x": 779.153340782984, + "y": 412.2532894736842 + }, + { + "x": 779.153340782984, + "y": 452.25330553556745 + }, + { + "x": 746.5351418002466, + "y": 452.25330553556745 + } + ] + }, + { + "id": "63UZUo1qg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 17.887349722564736, + "left": 723.3868295314427, + "top": 325.93751606188323 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 325.93751606188323 + }, + { + "x": 741.2741792540074, + "y": 325.93751606188323 + }, + { + "x": 741.2741792540074, + "y": 372.2533215974507 + }, + { + "x": 723.3868295314427, + "y": 372.2533215974507 + } + ] + }, + { + "id": "7cUtai1TH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 25.25277435265105, + "left": 629.7410604192355, + "top": 246.9901476408306 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 246.9901476408306 + }, + { + "x": 654.9938347718866, + "y": 246.9901476408306 + }, + { + "x": 654.9938347718866, + "y": 283.8322689658717 + }, + { + "x": 629.7410604192355, + "y": 283.8322689658717 + } + ] + }, + { + "id": "Oi02-hzc-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 26.3050053945746, + "left": 563.4525277435265, + "top": 208.0427952816612 + }, + "points": [ + { + "x": 563.4525277435265, + "y": 208.0427952816612 + }, + { + "x": 589.7575331381012, + "y": 208.0427952816612 + }, + { + "x": 589.7575331381012, + "y": 245.93753212376646 + }, + { + "x": 563.4525277435265, + "y": 245.93753212376646 + } + ] + }, + { + "id": "AlGKCxE_k", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.05262354800576, + "width": 14.730752928483355, + "left": 501.37282290382245, + "top": 176.46382382041529 + }, + "points": [ + { + "x": 501.37282290382245, + "y": 176.46382382041529 + }, + { + "x": 516.1035758323058, + "y": 176.46382382041529 + }, + { + "x": 516.1035758323058, + "y": 197.51644736842107 + }, + { + "x": 501.37282290382245, + "y": 197.51644736842107 + } + ] + } + ], + "version": "2.2.0" + }, + "ca549a4137e7078ad5a62eb133653ba4": { + "asset": { + "id": "ca549a4137e7078ad5a62eb133653ba4", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.8 + }, + "regions": [ + { + "id": "2GLPHZXCt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 37.879161528976574, + "left": 753.9005664303329, + "top": 525.9375 + }, + "points": [ + { + "x": 753.9005664303329, + "y": 525.9375 + }, + { + "x": 791.7797279593095, + "y": 525.9375 + }, + { + "x": 791.7797279593095, + "y": 580.6743742290296 + }, + { + "x": 753.9005664303329, + "y": 580.6743742290296 + } + ] + }, + { + "id": "4nns7nYhp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47365208675987, + "width": 28.40937114673243, + "left": 743.3785450061653, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 743.3785450061653, + "y": 403.8322689658717 + }, + { + "x": 771.7879161528977, + "y": 403.8322689658717 + }, + { + "x": 771.7879161528977, + "y": 453.30592105263156 + }, + { + "x": 743.3785450061653, + "y": 453.30592105263156 + } + ] + }, + { + "id": "LcU5pCDnH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 24.20063964241677, + "left": 714.9691738594328, + "top": 321.727005807977 + }, + "points": [ + { + "x": 714.9691738594328, + "y": 321.727005807977 + }, + { + "x": 739.1698135018496, + "y": 321.727005807977 + }, + { + "x": 739.1698135018496, + "y": 363.8322529039885 + }, + { + "x": 714.9691738594328, + "y": 363.8322529039885 + } + ] + }, + { + "id": "kNrnx-7rt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 25.25277435265105, + "left": 629.7410604192355, + "top": 249.09542686060857 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 249.09542686060857 + }, + { + "x": 654.9938347718866, + "y": 249.09542686060857 + }, + { + "x": 654.9938347718866, + "y": 281.72698974609375 + }, + { + "x": 629.7410604192355, + "y": 281.72698974609375 + } + ] + }, + { + "id": "hu1Y4vAGI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.3157814427426, + "width": 24.200543310727497, + "left": 564.5047587854501, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 195.41119224146794 + }, + { + "x": 588.7053020961775, + "y": 195.41119224146794 + }, + { + "x": 588.7053020961775, + "y": 241.72697368421052 + }, + { + "x": 564.5047587854501, + "y": 241.72697368421052 + } + ] + }, + { + "id": "zYyweG_rx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 26.3050053945746, + "left": 494.00739827373616, + "top": 162.7796052631579 + }, + "points": [ + { + "x": 494.00739827373616, + "y": 162.7796052631579 + }, + { + "x": 520.3124036683107, + "y": 162.7796052631579 + }, + { + "x": 520.3124036683107, + "y": 199.621726588199 + }, + { + "x": 494.00739827373616, + "y": 199.621726588199 + } + ] + } + ], + "version": "2.2.0" + }, + "256c45919a252fc88bda6f8d1b5cd992": { + "asset": { + "id": "256c45919a252fc88bda6f8d1b5cd992", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.75 + }, + "regions": [ + { + "id": "XgvQ_mEkl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 25.25277435265105, + "left": 761.2659910604192, + "top": 533.305953176398 + }, + "points": [ + { + "x": 761.2659910604192, + "y": 533.305953176398 + }, + { + "x": 786.5187654130702, + "y": 533.305953176398 + }, + { + "x": 786.5187654130702, + "y": 583.8322689658717 + }, + { + "x": 761.2659910604192, + "y": 583.8322689658717 + } + ] + }, + { + "id": "3yYiwhz_a", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26319001850329, + "width": 23.14840860049322, + "left": 741.2741792540074, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 741.2741792540074, + "y": 402.7796052631579 + }, + { + "x": 764.4225878545006, + "y": 402.7796052631579 + }, + { + "x": 764.4225878545006, + "y": 448.0427952816612 + }, + { + "x": 741.2741792540074, + "y": 448.0427952816612 + } + ] + }, + { + "id": "1Hn0yL2LT", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 24.200543310727497, + "left": 713.9170391491986, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 713.9170391491986, + "y": 318.5691110711349 + }, + { + "x": 738.117582459926, + "y": 318.5691110711349 + }, + { + "x": 738.117582459926, + "y": 359.62174265008224 + }, + { + "x": 713.9170391491986, + "y": 359.62174265008224 + } + ] + }, + { + "id": "K8D-56xYq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 19.999983938116777, + "width": 19.99181180641184, + "left": 629.7410604192355, + "top": 253.30593711451482 + }, + "points": [ + { + "x": 629.7410604192355, + "y": 253.30593711451482 + }, + { + "x": 649.7328722256474, + "y": 253.30593711451482 + }, + { + "x": 649.7328722256474, + "y": 273.30592105263156 + }, + { + "x": 629.7410604192355, + "y": 273.30592105263156 + } + ] + }, + { + "id": "Yo6o9York", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526331851356908, + "width": 23.14840860049322, + "left": 564.5047587854501, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 200.67434210526315 + }, + { + "x": 587.6531673859433, + "y": 200.67434210526315 + }, + { + "x": 587.6531673859433, + "y": 231.20067395662008 + }, + { + "x": 564.5047587854501, + "y": 231.20067395662008 + } + ] + }, + { + "id": "M4cZNzIa7", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 27.357140104808877, + "left": 491.9030325215783, + "top": 158.56909500925164 + }, + "points": [ + { + "x": 491.9030325215783, + "y": 158.56909500925164 + }, + { + "x": 519.2601726263872, + "y": 158.56909500925164 + }, + { + "x": 519.2601726263872, + "y": 194.35855263157896 + }, + { + "x": 491.9030325215783, + "y": 194.35855263157896 + } + ] + } + ], + "version": "2.2.0" + }, + "5668394a456b24edbfb3c54617c54633": { + "asset": { + "id": "5668394a456b24edbfb3c54617c54633", + "format": "7", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.7.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.7", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.7 + }, + "regions": [ + { + "id": "OO5Y3aQ9c", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 28.40937114673243, + "left": 750.7439696362516, + "top": 535.4111842105264 + }, + "points": [ + { + "x": 750.7439696362516, + "y": 535.4111842105264 + }, + { + "x": 779.153340782984, + "y": 535.4111842105264 + }, + { + "x": 779.153340782984, + "y": 590.1480584395559 + }, + { + "x": 750.7439696362516, + "y": 590.1480584395559 + } + ] + }, + { + "id": "XYG5t6ahS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 29.46160218865598, + "left": 734.9609856658446, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 734.9609856658446, + "y": 398.56909500925167 + }, + { + "x": 764.4225878545006, + "y": 398.56909500925167 + }, + { + "x": 764.4225878545006, + "y": 449.0954107987253 + }, + { + "x": 734.9609856658446, + "y": 449.0954107987253 + } + ] + }, + { + "id": "LpT6Iredd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 21.044042848335387, + "left": 711.8125770653514, + "top": 318.5691110711349 + }, + "points": [ + { + "x": 711.8125770653514, + "y": 318.5691110711349 + }, + { + "x": 732.8566199136868, + "y": 318.5691110711349 + }, + { + "x": 732.8566199136868, + "y": 366.99014764083057 + }, + { + "x": 711.8125770653514, + "y": 366.99014764083057 + } + ] + }, + { + "id": "8qU02ThgK", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315821597450658, + "width": 18.939580764488287, + "left": 632.8976572133168, + "top": 248.04276315789474 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 248.04276315789474 + }, + { + "x": 651.8372379778052, + "y": 248.04276315789474 + }, + { + "x": 651.8372379778052, + "y": 274.3585847553454 + }, + { + "x": 632.8976572133168, + "y": 274.3585847553454 + } + ] + }, + { + "id": "O0b_Rlblg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36844514545641, + "width": 25.25277435265105, + "left": 560.2959309494452, + "top": 195.41119224146794 + }, + "points": [ + { + "x": 560.2959309494452, + "y": 195.41119224146794 + }, + { + "x": 585.5487053020962, + "y": 195.41119224146794 + }, + { + "x": 585.5487053020962, + "y": 242.77963738692435 + }, + { + "x": 560.2959309494452, + "y": 242.77963738692435 + } + ] + }, + { + "id": "slaOr4AGi", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 19.99181180641184, + "left": 500.3205918618989, + "top": 159.62171052631578 + }, + "points": [ + { + "x": 500.3205918618989, + "y": 159.62171052631578 + }, + { + "x": 520.3124036683107, + "y": 159.62171052631578 + }, + { + "x": 520.3124036683107, + "y": 192.25329750462583 + }, + { + "x": 500.3205918618989, + "y": 192.25329750462583 + } + ] + } + ], + "version": "2.2.0" + }, + "32a9de80f1ea0781e49032cfd1961c48": { + "asset": { + "id": "32a9de80f1ea0781e49032cfd1961c48", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.5 + }, + "regions": [ + { + "id": "f6X-XRa-F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.21051828484786, + "width": 21.043946516646116, + "left": 495.05962931565966, + "top": 160.67435013620477 + }, + "points": [ + { + "x": 495.05962931565966, + "y": 160.67435013620477 + }, + { + "x": 516.1035758323058, + "y": 160.67435013620477 + }, + { + "x": 516.1035758323058, + "y": 184.88486842105263 + }, + { + "x": 495.05962931565966, + "y": 184.88486842105263 + } + ] + }, + { + "id": "plthRma1D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 22.096177558569668, + "left": 557.1393341553637, + "top": 186.9901476408306 + }, + "points": [ + { + "x": 557.1393341553637, + "y": 186.9901476408306 + }, + { + "x": 579.2355117139334, + "y": 186.9901476408306 + }, + { + "x": 579.2355117139334, + "y": 225.9375 + }, + { + "x": 557.1393341553637, + "y": 225.9375 + } + ] + }, + { + "id": "3786srKVe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 19.99181180641184, + "left": 623.4278668310727, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 623.4278668310727, + "y": 234.35856869346216 + }, + { + "x": 643.4196786374846, + "y": 234.35856869346216 + }, + { + "x": 643.4196786374846, + "y": 265.93751606188323 + }, + { + "x": 623.4278668310727, + "y": 265.93751606188323 + } + ] + }, + { + "id": "eBU_zL9CG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 29.46160218865598, + "left": 696.0295930949445, + "top": 324.88490054481906 + }, + "points": [ + { + "x": 696.0295930949445, + "y": 324.88490054481906 + }, + { + "x": 725.4911952836005, + "y": 324.88490054481906 + }, + { + "x": 725.4911952836005, + "y": 359.62174265008224 + }, + { + "x": 696.0295930949445, + "y": 359.62174265008224 + } + ] + }, + { + "id": "u8HtYvkWa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 29.46160218865598, + "left": 719.1780016954377, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 719.1780016954377, + "y": 398.56909500925167 + }, + { + "x": 748.6396038840937, + "y": 398.56909500925167 + }, + { + "x": 748.6396038840937, + "y": 449.0954107987253 + }, + { + "x": 719.1780016954377, + "y": 449.0954107987253 + } + ] + }, + { + "id": "7DrQSO0V5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26317395662007, + "width": 23.14840860049322, + "left": 733.9087546239211, + "top": 534.3585686934622 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 534.3585686934622 + }, + { + "x": 757.0571632244144, + "y": 534.3585686934622 + }, + { + "x": 757.0571632244144, + "y": 599.6217426500823 + }, + { + "x": 733.9087546239211, + "y": 599.6217426500823 + } + ] + } + ], + "version": "2.2.0" + }, + "1b9fa2f888eaaaa40c468367f0fd1467": { + "asset": { + "id": "1b9fa2f888eaaaa40c468367f0fd1467", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.35 + }, + "regions": [ + { + "id": "cv56zyYN8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 27.357140104808877, + "left": 709.7082113131936, + "top": 525.9375 + }, + "points": [ + { + "x": 709.7082113131936, + "y": 525.9375 + }, + { + "x": 737.0653514180025, + "y": 525.9375 + }, + { + "x": 737.0653514180025, + "y": 577.5164794921875 + }, + { + "x": 709.7082113131936, + "y": 577.5164794921875 + } + ] + }, + { + "id": "Z_dGSw7zy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 32.61819898273736, + "left": 703.3950177250308, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 703.3950177250308, + "y": 397.5164794921875 + }, + { + "x": 736.0132167077682, + "y": 397.5164794921875 + }, + { + "x": 736.0132167077682, + "y": 457.5164794921875 + }, + { + "x": 703.3950177250308, + "y": 457.5164794921875 + } + ] + }, + { + "id": "ZYwgUwFKc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 23.14840860049322, + "left": 687.6120337546239, + "top": 312.2533215974507 + }, + "points": [ + { + "x": 687.6120337546239, + "y": 312.2533215974507 + }, + { + "x": 710.7604423551171, + "y": 312.2533215974507 + }, + { + "x": 710.7604423551171, + "y": 353.305953176398 + }, + { + "x": 687.6120337546239, + "y": 353.305953176398 + } + ] + }, + { + "id": "IYh_0W1vq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315773411800986, + "width": 16.835118680641184, + "left": 612.9059417385944, + "top": 233.30595317639802 + }, + "points": [ + { + "x": 612.9059417385944, + "y": 233.30595317639802 + }, + { + "x": 629.7410604192355, + "y": 233.30595317639802 + }, + { + "x": 629.7410604192355, + "y": 259.621726588199 + }, + { + "x": 612.9059417385944, + "y": 259.621726588199 + } + ] + }, + { + "id": "KG78us6hF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.2105423776727, + "width": 14.730849260172626, + "left": 550.826140567201, + "top": 184.88486842105263 + }, + "points": [ + { + "x": 550.826140567201, + "y": 184.88486842105263 + }, + { + "x": 565.5569898273736, + "y": 184.88486842105263 + }, + { + "x": 565.5569898273736, + "y": 209.09541079872534 + }, + { + "x": 550.826140567201, + "y": 209.09541079872534 + } + ] + }, + { + "id": "is1DJRhVd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.631562885485195, + "width": 22.096177558569668, + "left": 482.43324213933414, + "top": 139.621726588199 + }, + "points": [ + { + "x": 482.43324213933414, + "y": 139.621726588199 + }, + { + "x": 504.52941969790385, + "y": 139.621726588199 + }, + { + "x": 504.52941969790385, + "y": 172.25328947368422 + }, + { + "x": 482.43324213933414, + "y": 172.25328947368422 + } + ] + } + ], + "version": "2.2.0" + }, + "14ceba1d0cc8d324547c59e0f0bef41f": { + "asset": { + "id": "14ceba1d0cc8d324547c59e0f0bef41f", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.25 + }, + "regions": [ + { + "id": "BI55jdemf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 21.043946516646116, + "left": 701.290651972873, + "top": 546.9901476408306 + }, + "points": [ + { + "x": 701.290651972873, + "y": 546.9901476408306 + }, + { + "x": 722.3345984895191, + "y": 546.9901476408306 + }, + { + "x": 722.3345984895191, + "y": 585.9375 + }, + { + "x": 701.290651972873, + "y": 585.9375 + } + ] + }, + { + "id": "GK3YersFj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789457622327305, + "width": 18.939580764488287, + "left": 701.290651972873, + "top": 401.72698974609375 + }, + "points": [ + { + "x": 701.290651972873, + "y": 401.72698974609375 + }, + { + "x": 720.2302327373613, + "y": 401.72698974609375 + }, + { + "x": 720.2302327373613, + "y": 437.51644736842104 + }, + { + "x": 701.290651972873, + "y": 437.51644736842104 + } + ] + }, + { + "id": "jqF8kjYP9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 27.35723643649815, + "left": 677.0900123304563, + "top": 306.99014764083057 + }, + "points": [ + { + "x": 677.0900123304563, + "y": 306.99014764083057 + }, + { + "x": 704.4472487669544, + "y": 306.99014764083057 + }, + { + "x": 704.4472487669544, + "y": 349.09539473684214 + }, + { + "x": 677.0900123304563, + "y": 349.09539473684214 + } + ] + }, + { + "id": "z4FZLJP0z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 14.730849260172626, + "left": 613.9580764488286, + "top": 234.35856869346216 + }, + "points": [ + { + "x": 613.9580764488286, + "y": 234.35856869346216 + }, + { + "x": 628.6889257090013, + "y": 234.35856869346216 + }, + { + "x": 628.6889257090013, + "y": 265.93751606188323 + }, + { + "x": 613.9580764488286, + "y": 265.93751606188323 + } + ] + }, + { + "id": "FPuexDIom", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.736866198087995, + "width": 25.25277435265105, + "left": 539.2519844327991, + "top": 176.46382382041529 + }, + "points": [ + { + "x": 539.2519844327991, + "y": 176.46382382041529 + }, + { + "x": 564.5047587854501, + "y": 176.46382382041529 + }, + { + "x": 564.5047587854501, + "y": 211.20069001850328 + }, + { + "x": 539.2519844327991, + "y": 211.20069001850328 + } + ] + }, + { + "id": "tMtYm5kCZ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 24.200543310727497, + "left": 479.2766453452528, + "top": 138.56908697831003 + }, + "points": [ + { + "x": 479.2766453452528, + "y": 138.56908697831003 + }, + { + "x": 503.4771886559803, + "y": 138.56908697831003 + }, + { + "x": 503.4771886559803, + "y": 163.83224487304688 + }, + { + "x": 479.2766453452528, + "y": 163.83224487304688 + } + ] + } + ], + "version": "2.2.0" + }, + "3e6bea8695b51572b56ece23f2fd78cf": { + "asset": { + "id": "3e6bea8695b51572b56ece23f2fd78cf", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=16.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=16.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 16.1 + }, + "regions": [ + { + "id": "kn5YZX880", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 28.40937114673243, + "left": 677.0900123304563, + "top": 540.6743581671464 + }, + "points": [ + { + "x": 677.0900123304563, + "y": 540.6743581671464 + }, + { + "x": 705.4993834771886, + "y": 540.6743581671464 + }, + { + "x": 705.4993834771886, + "y": 593.305953176398 + }, + { + "x": 677.0900123304563, + "y": 593.305953176398 + } + ] + }, + { + "id": "DnP_u2Grh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 35.77469944512947, + "left": 676.0378776202219, + "top": 397.5164794921875 + }, + "points": [ + { + "x": 676.0378776202219, + "y": 397.5164794921875 + }, + { + "x": 711.8125770653514, + "y": 397.5164794921875 + }, + { + "x": 711.8125770653514, + "y": 452.25330553556745 + }, + { + "x": 676.0378776202219, + "y": 452.25330553556745 + } + ] + }, + { + "id": "2fdH2Jz2x", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 22.096177558569668, + "left": 666.5680872379778, + "top": 304.88486842105266 + }, + "points": [ + { + "x": 666.5680872379778, + "y": 304.88486842105266 + }, + { + "x": 688.6642647965475, + "y": 304.88486842105266 + }, + { + "x": 688.6642647965475, + "y": 344.8848844829359 + }, + { + "x": 666.5680872379778, + "y": 344.8848844829359 + } + ] + }, + { + "id": "_A63JUI4-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 15.782983970406905, + "left": 601.3316892725031, + "top": 220.6743742290296 + }, + "points": [ + { + "x": 601.3316892725031, + "y": 220.6743742290296 + }, + { + "x": 617.11467324291, + "y": 220.6743742290296 + }, + { + "x": 617.11467324291, + "y": 245.93753212376646 + }, + { + "x": 601.3316892725031, + "y": 245.93753212376646 + } + ] + }, + { + "id": "gpgZcrz4b", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.99999196905839, + "width": 29.46160218865598, + "left": 523.4690004623922, + "top": 161.72698974609375 + }, + "points": [ + { + "x": 523.4690004623922, + "y": 161.72698974609375 + }, + { + "x": 552.930602651048, + "y": 161.72698974609375 + }, + { + "x": 552.930602651048, + "y": 201.72698171515214 + }, + { + "x": 523.4690004623922, + "y": 201.72698171515214 + } + ] + }, + { + "id": "n0BgneygI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315797504625824, + "width": 26.304909062885326, + "left": 470.8590860049322, + "top": 128.04276315789474 + }, + "points": [ + { + "x": 470.8590860049322, + "y": 128.04276315789474 + }, + { + "x": 497.1639950678175, + "y": 128.04276315789474 + }, + { + "x": 497.1639950678175, + "y": 154.35856066252057 + }, + { + "x": 470.8590860049322, + "y": 154.35856066252057 + } + ] + } + ], + "version": "2.2.0" + }, + "fd84dd0dbef1e6c3ba1424d052079c71": { + "asset": { + "id": "fd84dd0dbef1e6c3ba1424d052079c71", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.95 + }, + "regions": [ + { + "id": "bLZOLIP3c", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 18.94736842105263, + "width": 14.730849260172626, + "left": 471.91122071516645, + "top": 123.83225290398849 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 123.83225290398849 + }, + { + "x": 486.6420699753391, + "y": 123.83225290398849 + }, + { + "x": 486.6420699753391, + "y": 142.77962132504112 + }, + { + "x": 471.91122071516645, + "y": 142.77962132504112 + } + ] + }, + { + "id": "n0cBxQ1uI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 28.40937114673243, + "left": 525.57336621455, + "top": 158.56909500925164 + }, + "points": [ + { + "x": 525.57336621455, + "y": 158.56909500925164 + }, + { + "x": 553.9827373612824, + "y": 158.56909500925164 + }, + { + "x": 553.9827373612824, + "y": 196.4638318513569 + }, + { + "x": 525.57336621455, + "y": 196.4638318513569 + } + ] + }, + { + "id": "pfrFWwvVI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 26.304909062885326, + "left": 587.6531673859433, + "top": 214.3585847553454 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 214.3585847553454 + }, + { + "x": 613.9580764488286, + "y": 214.3585847553454 + }, + { + "x": 613.9580764488286, + "y": 248.04276315789474 + }, + { + "x": 587.6531673859433, + "y": 248.04276315789474 + } + ] + }, + { + "id": "Qbdifm0vM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 30.513736898890258, + "left": 649.7328722256474, + "top": 303.8322529039885 + }, + "points": [ + { + "x": 649.7328722256474, + "y": 303.8322529039885 + }, + { + "x": 680.2466091245376, + "y": 303.8322529039885 + }, + { + "x": 680.2466091245376, + "y": 356.46384791324016 + }, + { + "x": 649.7328722256474, + "y": 356.46384791324016 + } + ] + }, + { + "id": "ZgAp8z8vS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 27.357140104808877, + "left": 662.3592594019728, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 662.3592594019728, + "y": 395.41120027240953 + }, + { + "x": 689.7163995067817, + "y": 395.41120027240953 + }, + { + "x": 689.7163995067817, + "y": 450.1480263157895 + }, + { + "x": 662.3592594019728, + "y": 450.1480263157895 + } + ] + }, + { + "id": "8vGcpTDF_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 26.3050053945746, + "left": 656.0460658138102, + "top": 535.4111842105264 + }, + "points": [ + { + "x": 656.0460658138102, + "y": 535.4111842105264 + }, + { + "x": 682.3510712083847, + "y": 535.4111842105264 + }, + { + "x": 682.3510712083847, + "y": 598.5690789473684 + }, + { + "x": 656.0460658138102, + "y": 598.5690789473684 + } + ] + } + ], + "version": "2.2.0" + }, + "9bbac63044c64c42cdbb9e45618eef36": { + "asset": { + "id": "9bbac63044c64c42cdbb9e45618eef36", + "format": "8", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.8.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.8", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.8 + }, + "regions": [ + { + "id": "jAUOazq_8", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 22.105263157894736, + "width": 15.782983970406905, + "left": 468.7546239210851, + "top": 118.56907894736842 + }, + "points": [ + { + "x": 468.7546239210851, + "y": 118.56907894736842 + }, + { + "x": 484.537607891492, + "y": 118.56907894736842 + }, + { + "x": 484.537607891492, + "y": 140.67434210526315 + }, + { + "x": 468.7546239210851, + "y": 140.67434210526315 + } + ] + }, + { + "id": "a0z95ubfk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 21.044042848335387, + "left": 525.57336621455, + "top": 151.20066592567846 + }, + "points": [ + { + "x": 525.57336621455, + "y": 151.20066592567846 + }, + { + "x": 546.6174090628854, + "y": 151.20066592567846 + }, + { + "x": 546.6174090628854, + "y": 195.41119224146794 + }, + { + "x": 525.57336621455, + "y": 195.41119224146794 + } + ] + }, + { + "id": "E_be39FYy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 14.730752928483355, + "left": 587.6531673859433, + "top": 210.14802631578948 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 210.14802631578948 + }, + { + "x": 602.3839203144266, + "y": 210.14802631578948 + }, + { + "x": 602.3839203144266, + "y": 235.41118421052633 + }, + { + "x": 587.6531673859433, + "y": 235.41118421052633 + } + ] + }, + { + "id": "4HiSoKz8t", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 19.991715474722564, + "left": 647.6285064734896, + "top": 298.56907894736844 + }, + "points": [ + { + "x": 647.6285064734896, + "y": 298.56907894736844 + }, + { + "x": 667.6202219482121, + "y": 298.56907894736844 + }, + { + "x": 667.6202219482121, + "y": 341.72698974609375 + }, + { + "x": 647.6285064734896, + "y": 341.72698974609375 + } + ] + }, + { + "id": "PM4OzgrUk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 25.25277435265105, + "left": 654.9938347718866, + "top": 390.1480263157895 + }, + "points": [ + { + "x": 654.9938347718866, + "y": 390.1480263157895 + }, + { + "x": 680.2466091245376, + "y": 390.1480263157895 + }, + { + "x": 680.2466091245376, + "y": 442.77962132504115 + }, + { + "x": 654.9938347718866, + "y": 442.77962132504115 + } + ] + }, + { + "id": "eUuOQB6RM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 18.939580764488287, + "left": 637.1064850493218, + "top": 550.1480423776727 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 550.1480423776727 + }, + { + "x": 656.0460658138102, + "y": 550.1480423776727 + }, + { + "x": 656.0460658138102, + "y": 588.0427792197779 + }, + { + "x": 637.1064850493218, + "y": 588.0427792197779 + } + ] + } + ], + "version": "2.2.0" + }, + "5a666bd63c3ae1a6855c8498d93f7ccf": { + "asset": { + "id": "5a666bd63c3ae1a6855c8498d93f7ccf", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.65 + }, + "regions": [ + { + "id": "6MJRszixx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 28.40937114673243, + "left": 626.5844636251542, + "top": 554.358552631579 + }, + "points": [ + { + "x": 626.5844636251542, + "y": 554.358552631579 + }, + { + "x": 654.9938347718866, + "y": 554.358552631579 + }, + { + "x": 654.9938347718866, + "y": 609.0954268606085 + }, + { + "x": 626.5844636251542, + "y": 609.0954268606085 + } + ] + }, + { + "id": "rzBsvv_ob", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 73.68419446443257, + "width": 34.722564734895194, + "left": 649.7328722256474, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 649.7328722256474, + "y": 384.88490054481906 + }, + { + "x": 684.4554369605426, + "y": 384.88490054481906 + }, + { + "x": 684.4554369605426, + "y": 458.56909500925167 + }, + { + "x": 649.7328722256474, + "y": 458.56909500925167 + } + ] + }, + { + "id": "lVoSkAGeX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 24.200543310727497, + "left": 643.4196786374846, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 643.4196786374846, + "y": 295.4111842105263 + }, + { + "x": 667.6202219482121, + "y": 295.4111842105263 + }, + { + "x": 667.6202219482121, + "y": 341.72698974609375 + }, + { + "x": 643.4196786374846, + "y": 341.72698974609375 + } + ] + }, + { + "id": "ylmQdAYhX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 30.513833230579532, + "left": 582.3921085080148, + "top": 206.99013157894737 + }, + "points": [ + { + "x": 582.3921085080148, + "y": 206.99013157894737 + }, + { + "x": 612.9059417385944, + "y": 206.99013157894737 + }, + { + "x": 612.9059417385944, + "y": 241.72697368421052 + }, + { + "x": 582.3921085080148, + "y": 241.72697368421052 + } + ] + }, + { + "id": "m3EX-xOMh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473692241467926, + "width": 24.200543310727497, + "left": 527.677828298397, + "top": 153.3059210526316 + }, + "points": [ + { + "x": 527.677828298397, + "y": 153.3059210526316 + }, + { + "x": 551.8783716091245, + "y": 153.3059210526316 + }, + { + "x": 551.8783716091245, + "y": 182.7796132940995 + }, + { + "x": 527.677828298397, + "y": 182.7796132940995 + } + ] + } + ], + "version": "2.2.0" + }, + "2bd1c4437661c713cbb7eda018fe7062": { + "asset": { + "id": "2bd1c4437661c713cbb7eda018fe7062", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.5 + }, + "regions": [ + { + "id": "pFDnhg-zN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 28.40937114673243, + "left": 617.11467324291, + "top": 555.4112163342928 + }, + "points": [ + { + "x": 617.11467324291, + "y": 555.4112163342928 + }, + { + "x": 645.5240443896424, + "y": 555.4112163342928 + }, + { + "x": 645.5240443896424, + "y": 612.2533215974506 + }, + { + "x": 617.11467324291, + "y": 612.2533215974506 + } + ] + }, + { + "id": "t7lzdFyFk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 29.46160218865598, + "left": 642.3674475955611, + "top": 395.41120027240953 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 395.41120027240953 + }, + { + "x": 671.829049784217, + "y": 395.41120027240953 + }, + { + "x": 671.829049784217, + "y": 452.25330553556745 + }, + { + "x": 642.3674475955611, + "y": 452.25330553556745 + } + ] + }, + { + "id": "jLG7xeji3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 31.56596794081381, + "left": 639.2108508014796, + "top": 290.14805843955594 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 290.14805843955594 + }, + { + "x": 670.7768187422935, + "y": 290.14805843955594 + }, + { + "x": 670.7768187422935, + "y": 342.7796052631579 + }, + { + "x": 639.2108508014796, + "y": 342.7796052631579 + } + ] + }, + { + "id": "qPaJxUpK-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 28.42105263157895, + "width": 22.096177558569668, + "left": 586.6009363440197, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 211.20069001850328 + }, + { + "x": 608.6971139025894, + "y": 211.20069001850328 + }, + { + "x": 608.6971139025894, + "y": 239.62174265008224 + }, + { + "x": 586.6009363440197, + "y": 239.62174265008224 + } + ] + }, + { + "id": "meZwu2hF5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.368413021689967, + "width": 32.61819898273736, + "left": 522.4167694204685, + "top": 154.35856066252057 + }, + "points": [ + { + "x": 522.4167694204685, + "y": 154.35856066252057 + }, + { + "x": 555.0349684032059, + "y": 154.35856066252057 + }, + { + "x": 555.0349684032059, + "y": 181.72697368421052 + }, + { + "x": 522.4167694204685, + "y": 181.72697368421052 + } + ] + }, + { + "id": "dtFWd10wv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 22.096177558569668, + "left": 387.73533831689275, + "top": 64.88486842105263 + }, + "points": [ + { + "x": 387.73533831689275, + "y": 64.88486842105263 + }, + { + "x": 409.8315158754624, + "y": 64.88486842105263 + }, + { + "x": 409.8315158754624, + "y": 97.51645539936267 + }, + { + "x": 387.73533831689275, + "y": 97.51645539936267 + } + ] + } + ], + "version": "2.2.0" + }, + "7180b38fb07cc2a0986a5a7679b37070": { + "asset": { + "id": "7180b38fb07cc2a0986a5a7679b37070", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.4 + }, + "regions": [ + { + "id": "_iRLHGf8O", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21057450143915, + "width": 32.61810265104809, + "left": 606.5927481504316, + "top": 569.0954107987253 + }, + "points": [ + { + "x": 606.5927481504316, + "y": 569.0954107987253 + }, + { + "x": 639.2108508014796, + "y": 569.0954107987253 + }, + { + "x": 639.2108508014796, + "y": 613.3059853001645 + }, + { + "x": 606.5927481504316, + "y": 613.3059853001645 + } + ] + }, + { + "id": "_6CR8xbHk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 37.879161528976574, + "left": 639.2108508014796, + "top": 402.7796052631579 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 402.7796052631579 + }, + { + "x": 677.0900123304563, + "y": 402.7796052631579 + }, + { + "x": 677.0900123304563, + "y": 456.4638157894737 + }, + { + "x": 639.2108508014796, + "y": 456.4638157894737 + } + ] + }, + { + "id": "IV2Byk5Kt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 26.3050053945746, + "left": 642.3674475955611, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 642.3674475955611, + "y": 300.6743581671464 + }, + { + "x": 668.6724529901356, + "y": 300.6743581671464 + }, + { + "x": 668.6724529901356, + "y": 335.41120027240953 + }, + { + "x": 642.3674475955611, + "y": 335.41120027240953 + } + ] + }, + { + "id": "qzeiow1-b", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 31.56596794081381, + "left": 581.3399737977805, + "top": 201.72698171515214 + }, + "points": [ + { + "x": 581.3399737977805, + "y": 201.72698171515214 + }, + { + "x": 612.9059417385944, + "y": 201.72698171515214 + }, + { + "x": 612.9059417385944, + "y": 234.35856869346216 + }, + { + "x": 581.3399737977805, + "y": 234.35856869346216 + } + ] + }, + { + "id": "_F_HMZn1y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 17.887349722564736, + "left": 533.9910218865598, + "top": 145.93751606188323 + }, + "points": [ + { + "x": 533.9910218865598, + "y": 145.93751606188323 + }, + { + "x": 551.8783716091245, + "y": 145.93751606188323 + }, + { + "x": 551.8783716091245, + "y": 180.67435816714638 + }, + { + "x": 533.9910218865598, + "y": 180.67435816714638 + } + ] + }, + { + "id": "3hgzK-jJf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315797504625824, + "width": 14.730752928483355, + "left": 480.3288763871763, + "top": 103.83224487304688 + }, + "points": [ + { + "x": 480.3288763871763, + "y": 103.83224487304688 + }, + { + "x": 495.05962931565966, + "y": 103.83224487304688 + }, + { + "x": 495.05962931565966, + "y": 130.1480423776727 + }, + { + "x": 480.3288763871763, + "y": 130.1480423776727 + } + ] + }, + { + "id": "Z3a36QCTr", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 19.99181180641184, + "left": 392.9963008631319, + "top": 54.358568693462175 + }, + "points": [ + { + "x": 392.9963008631319, + "y": 54.358568693462175 + }, + { + "x": 412.9881126695438, + "y": 54.358568693462175 + }, + { + "x": 412.9881126695438, + "y": 89.09541079872533 + }, + { + "x": 392.9963008631319, + "y": 89.09541079872533 + } + ] + } + ], + "version": "2.2.0" + }, + "4ad7d76d6f23fde88322e046133ba78e": { + "asset": { + "id": "4ad7d76d6f23fde88322e046133ba78e", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.3 + }, + "regions": [ + { + "id": "HJBKebbDO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 18.939580764488287, + "left": 603.4361513563501, + "top": 569.0954107987253 + }, + "points": [ + { + "x": 603.4361513563501, + "y": 569.0954107987253 + }, + { + "x": 622.3757321208385, + "y": 569.0954107987253 + }, + { + "x": 622.3757321208385, + "y": 617.516447368421 + }, + { + "x": 603.4361513563501, + "y": 617.516447368421 + } + ] + }, + { + "id": "IOXZ5oe_1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 33.67043002466091, + "left": 639.2108508014796, + "top": 403.8322689658717 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 403.8322689658717 + }, + { + "x": 672.8812808261406, + "y": 403.8322689658717 + }, + { + "x": 672.8812808261406, + "y": 451.2006900185033 + }, + { + "x": 639.2108508014796, + "y": 451.2006900185033 + } + ] + }, + { + "id": "l7ceNDJcY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 27.357140104808877, + "left": 638.1587160912454, + "top": 296.46384791324016 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 296.46384791324016 + }, + { + "x": 665.5158561960543, + "y": 296.46384791324016 + }, + { + "x": 665.5158561960543, + "y": 336.4638157894737 + }, + { + "x": 638.1587160912454, + "y": 336.4638157894737 + } + ] + }, + { + "id": "HXtxjtCM5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.157878674958884, + "width": 15.782983970406905, + "left": 588.7053020961775, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 588.7053020961775, + "y": 205.93751606188323 + }, + { + "x": 604.4882860665845, + "y": 205.93751606188323 + }, + { + "x": 604.4882860665845, + "y": 229.0953947368421 + }, + { + "x": 588.7053020961775, + "y": 229.0953947368421 + } + ] + }, + { + "id": "b7vLvzVtw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 24.20063964241677, + "left": 525.57336621455, + "top": 141.72698171515214 + }, + "points": [ + { + "x": 525.57336621455, + "y": 141.72698171515214 + }, + { + "x": 549.7740058569667, + "y": 141.72698171515214 + }, + { + "x": 549.7740058569667, + "y": 174.35856869346216 + }, + { + "x": 525.57336621455, + "y": 174.35856869346216 + } + ] + }, + { + "id": "-1M-lwErq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 23.157902767783717, + "width": 21.044042848335387, + "left": 468.7546239210851, + "top": 96.46381578947368 + }, + "points": [ + { + "x": 468.7546239210851, + "y": 96.46381578947368 + }, + { + "x": 489.7986667694205, + "y": 96.46381578947368 + }, + { + "x": 489.7986667694205, + "y": 119.62171855725741 + }, + { + "x": 468.7546239210851, + "y": 119.62171855725741 + } + ] + } + ], + "version": "2.2.0" + }, + "25d18d65cbd0e9eb4430f73ca02987d8": { + "asset": { + "id": "25d18d65cbd0e9eb4430f73ca02987d8", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.2 + }, + "regions": [ + { + "id": "-HYb8nZhp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 23.148312268803945, + "left": 593.966360974106, + "top": 578.5690950092517 + }, + "points": [ + { + "x": 593.966360974106, + "y": 578.5690950092517 + }, + { + "x": 617.11467324291, + "y": 578.5690950092517 + }, + { + "x": 617.11467324291, + "y": 633.3059210526316 + }, + { + "x": 593.966360974106, + "y": 633.3059210526316 + } + ] + }, + { + "id": "Q6PZGGoGe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 64.21051025390625, + "width": 36.8270268187423, + "left": 632.8976572133168, + "top": 398.56909500925167 + }, + "points": [ + { + "x": 632.8976572133168, + "y": 398.56909500925167 + }, + { + "x": 669.7246840320591, + "y": 398.56909500925167 + }, + { + "x": 669.7246840320591, + "y": 462.7796052631579 + }, + { + "x": 632.8976572133168, + "y": 462.7796052631579 + } + ] + }, + { + "id": "jxwypTcBQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 22.096177558569668, + "left": 638.1587160912454, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 638.1587160912454, + "y": 295.4111842105263 + }, + { + "x": 660.254893649815, + "y": 295.4111842105263 + }, + { + "x": 660.254893649815, + "y": 344.8848844829359 + }, + { + "x": 638.1587160912454, + "y": 344.8848844829359 + } + ] + }, + { + "id": "Jbv97Q75K", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 29.46160218865598, + "left": 579.2355117139334, + "top": 188.04276315789474 + }, + "points": [ + { + "x": 579.2355117139334, + "y": 188.04276315789474 + }, + { + "x": 608.6971139025894, + "y": 188.04276315789474 + }, + { + "x": 608.6971139025894, + "y": 235.41118421052633 + }, + { + "x": 579.2355117139334, + "y": 235.41118421052633 + } + ] + }, + { + "id": "t6GHMbjwQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 30.526307758532074, + "width": 24.200543310727497, + "left": 530.8344250924785, + "top": 141.72698171515214 + }, + "points": [ + { + "x": 530.8344250924785, + "y": 141.72698171515214 + }, + { + "x": 555.0349684032059, + "y": 141.72698171515214 + }, + { + "x": 555.0349684032059, + "y": 172.25328947368422 + }, + { + "x": 530.8344250924785, + "y": 172.25328947368422 + } + ] + }, + { + "id": "44DRGGKKc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 20.00000803094161, + "width": 22.096177558569668, + "left": 469.8068549630086, + "top": 93.30592105263158 + }, + "points": [ + { + "x": 469.8068549630086, + "y": 93.30592105263158 + }, + { + "x": 491.9030325215783, + "y": 93.30592105263158 + }, + { + "x": 491.9030325215783, + "y": 113.30592908357319 + }, + { + "x": 469.8068549630086, + "y": 113.30592908357319 + } + ] + } + ], + "version": "2.2.0" + }, + "0c4625b8c8351dd7067fd78f0f4a706e": { + "asset": { + "id": "0c4625b8c8351dd7067fd78f0f4a706e", + "format": "1", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=15.1.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=15.1", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 15.1 + }, + "regions": [ + { + "id": "TpvF56XTQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 16.842113294099505, + "width": 21.044042848335387, + "left": 471.91122071516645, + "top": 90.14802631578948 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 90.14802631578948 + }, + { + "x": 492.95526356350183, + "y": 90.14802631578948 + }, + { + "x": 492.95526356350183, + "y": 106.99013960988898 + }, + { + "x": 471.91122071516645, + "y": 106.99013960988898 + } + ] + }, + { + "id": "e1fmVvuya", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 23.14840860049322, + "left": 535.0431565967941, + "top": 138.56908697831003 + }, + "points": [ + { + "x": 535.0431565967941, + "y": 138.56908697831003 + }, + { + "x": 558.1915651972873, + "y": 138.56908697831003 + }, + { + "x": 558.1915651972873, + "y": 171.20067395662008 + }, + { + "x": 535.0431565967941, + "y": 171.20067395662008 + } + ] + }, + { + "id": "0RTkTchAH", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 19.99181180641184, + "left": 585.5487053020962, + "top": 197.51644736842107 + }, + "points": [ + { + "x": 585.5487053020962, + "y": 197.51644736842107 + }, + { + "x": 605.540517108508, + "y": 197.51644736842107 + }, + { + "x": 605.540517108508, + "y": 231.20067395662008 + }, + { + "x": 585.5487053020962, + "y": 231.20067395662008 + } + ] + }, + { + "id": "gSPT3Lz8D", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84212132504112, + "width": 27.357140104808877, + "left": 637.1064850493218, + "top": 300.6743581671464 + }, + "points": [ + { + "x": 637.1064850493218, + "y": 300.6743581671464 + }, + { + "x": 664.4636251541307, + "y": 300.6743581671464 + }, + { + "x": 664.4636251541307, + "y": 337.5164794921875 + }, + { + "x": 637.1064850493218, + "y": 337.5164794921875 + } + ] + }, + { + "id": "7i9kztrkP", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 31.56596794081381, + "left": 627.6366946670777, + "top": 405.9375 + }, + "points": [ + { + "x": 627.6366946670777, + "y": 405.9375 + }, + { + "x": 659.2026626078915, + "y": 405.9375 + }, + { + "x": 659.2026626078915, + "y": 456.4638157894737 + }, + { + "x": 627.6366946670777, + "y": 456.4638157894737 + } + ] + }, + { + "id": "MZfS4N5ih", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 22.096177558569668, + "left": 587.6531673859433, + "top": 577.5164794921875 + }, + "points": [ + { + "x": 587.6531673859433, + "y": 577.5164794921875 + }, + { + "x": 609.7493449445129, + "y": 577.5164794921875 + }, + { + "x": 609.7493449445129, + "y": 628.0427952816611 + }, + { + "x": 587.6531673859433, + "y": 628.0427952816611 + } + ] + } + ], + "version": "2.2.0" + }, + "891b464b6b6c766c2c9e0489348ce91f": { + "asset": { + "id": "891b464b6b6c766c2c9e0489348ce91f", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.35 + }, + "regions": [ + { + "id": "WTbCCLq_u", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 58.947336297286185, + "width": 33.67033369297164, + "left": 564.5047587854501, + "top": 613.3059853001645 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 613.3059853001645 + }, + { + "x": 598.1750924784217, + "y": 613.3059853001645 + }, + { + "x": 598.1750924784217, + "y": 672.2533215974506 + }, + { + "x": 564.5047587854501, + "y": 672.2533215974506 + } + ] + }, + { + "id": "2BtjnBzoC", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 38.93139257090012, + "left": 620.2712700369914, + "top": 426.99014764083057 + }, + "points": [ + { + "x": 620.2712700369914, + "y": 426.99014764083057 + }, + { + "x": 659.2026626078915, + "y": 426.99014764083057 + }, + { + "x": 659.2026626078915, + "y": 489.09542686060854 + }, + { + "x": 620.2712700369914, + "y": 489.09542686060854 + } + ] + }, + { + "id": "zCcdLd2nN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 33.67033369297164, + "left": 624.4800978729963, + "top": 299.62174265008224 + }, + "points": [ + { + "x": 624.4800978729963, + "y": 299.62174265008224 + }, + { + "x": 658.150431565968, + "y": 299.62174265008224 + }, + { + "x": 658.150431565968, + "y": 337.5164794921875 + }, + { + "x": 624.4800978729963, + "y": 337.5164794921875 + } + ] + }, + { + "id": "ZAAOAQ4XG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.736826043379935, + "width": 38.93139257090012, + "left": 589.7575331381012, + "top": 193.30593711451482 + }, + "points": [ + { + "x": 589.7575331381012, + "y": 193.30593711451482 + }, + { + "x": 628.6889257090013, + "y": 193.30593711451482 + }, + { + "x": 628.6889257090013, + "y": 248.04276315789474 + }, + { + "x": 589.7575331381012, + "y": 248.04276315789474 + } + ] + }, + { + "id": "YeUp9XPJD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 45.26316592567846, + "width": 27.35723643649815, + "left": 544.5129469790382, + "top": 125.93750803094161 + }, + "points": [ + { + "x": 544.5129469790382, + "y": 125.93750803094161 + }, + { + "x": 571.8701834155364, + "y": 125.93750803094161 + }, + { + "x": 571.8701834155364, + "y": 171.20067395662008 + }, + { + "x": 544.5129469790382, + "y": 171.20067395662008 + } + ] + }, + { + "id": "EXpyHbVTD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.157886705900495, + "width": 38.93139257090012, + "left": 475.06781750924785, + "top": 56.4638238204153 + }, + "points": [ + { + "x": 475.06781750924785, + "y": 56.4638238204153 + }, + { + "x": 513.9992100801479, + "y": 56.4638238204153 + }, + { + "x": 513.9992100801479, + "y": 99.6217105263158 + }, + { + "x": 475.06781750924785, + "y": 99.6217105263158 + } + ] + } + ], + "version": "2.2.0" + }, + "bfa87f75086d01b610e76d9959e1e513": { + "asset": { + "id": "bfa87f75086d01b610e76d9959e1e513", + "format": "45", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.45.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.45", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.45 + }, + "regions": [ + { + "id": "UNYphw686", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10519891036184, + "width": 36.82693048705302, + "left": 559.2437962392108, + "top": 619.6217747738486 + }, + "points": [ + { + "x": 559.2437962392108, + "y": 619.6217747738486 + }, + { + "x": 596.0707267262638, + "y": 619.6217747738486 + }, + { + "x": 596.0707267262638, + "y": 661.7269736842105 + }, + { + "x": 559.2437962392108, + "y": 661.7269736842105 + } + ] + }, + { + "id": "hFQ4JocfD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 25.25277435265105, + "left": 628.6889257090013, + "top": 431.2006578947368 + }, + "points": [ + { + "x": 628.6889257090013, + "y": 431.2006578947368 + }, + { + "x": 653.9417000616523, + "y": 431.2006578947368 + }, + { + "x": 653.9417000616523, + "y": 473.305953176398 + }, + { + "x": 628.6889257090013, + "y": 473.305953176398 + } + ] + }, + { + "id": "TAa-PHpdp", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 38.93139257090012, + "left": 627.6366946670777, + "top": 295.4111842105263 + }, + "points": [ + { + "x": 627.6366946670777, + "y": 295.4111842105263 + }, + { + "x": 666.5680872379778, + "y": 295.4111842105263 + }, + { + "x": 666.5680872379778, + "y": 335.41120027240953 + }, + { + "x": 627.6366946670777, + "y": 335.41120027240953 + } + ] + }, + { + "id": "TGweLozYy", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 38.93139257090012, + "left": 586.6009363440197, + "top": 203.83223684210526 + }, + "points": [ + { + "x": 586.6009363440197, + "y": 203.83223684210526 + }, + { + "x": 625.5323289149198, + "y": 203.83223684210526 + }, + { + "x": 625.5323289149198, + "y": 246.9901476408306 + }, + { + "x": 586.6009363440197, + "y": 246.9901476408306 + } + ] + }, + { + "id": "pdR906V8o", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.947376451994245, + "width": 28.40937114673243, + "left": 538.1997533908755, + "top": 122.7796132940995 + }, + "points": [ + { + "x": 538.1997533908755, + "y": 122.7796132940995 + }, + { + "x": 566.609124537608, + "y": 122.7796132940995 + }, + { + "x": 566.609124537608, + "y": 161.72698974609375 + }, + { + "x": 538.1997533908755, + "y": 161.72698974609375 + } + ] + }, + { + "id": "7-OKssT2F", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.947376451994245, + "width": 31.56596794081381, + "left": 410.8836987515413, + "top": 30.148026315789473 + }, + "points": [ + { + "x": 410.8836987515413, + "y": 30.148026315789473 + }, + { + "x": 442.4496666923551, + "y": 30.148026315789473 + }, + { + "x": 442.4496666923551, + "y": 69.09540276778372 + }, + { + "x": 410.8836987515413, + "y": 69.09540276778372 + } + ] + } + ], + "version": "2.2.0" + }, + "ab003dcb1102df18a35b08cfa09765bc": { + "asset": { + "id": "ab003dcb1102df18a35b08cfa09765bc", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.5 + }, + "regions": [ + { + "id": "ZaR3v1htk", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 35.77469944512947, + "left": 556.0871994451295, + "top": 620.6743421052631 + }, + "points": [ + { + "x": 556.0871994451295, + "y": 620.6743421052631 + }, + { + "x": 591.861898890259, + "y": 620.6743421052631 + }, + { + "x": 591.861898890259, + "y": 680.6743421052631 + }, + { + "x": 556.0871994451295, + "y": 680.6743421052631 + } + ] + }, + { + "id": "zdew-4GXg", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 35.77479577681874, + "left": 623.4278668310727, + "top": 425.93753212376646 + }, + "points": [ + { + "x": 623.4278668310727, + "y": 425.93753212376646 + }, + { + "x": 659.2026626078915, + "y": 425.93753212376646 + }, + { + "x": 659.2026626078915, + "y": 478.56907894736844 + }, + { + "x": 623.4278668310727, + "y": 478.56907894736844 + } + ] + }, + { + "id": "T8fTzDpu3", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 46.29672086929717, + "left": 621.3235010789149, + "top": 293.305953176398 + }, + "points": [ + { + "x": 621.3235010789149, + "y": 293.305953176398 + }, + { + "x": 667.6202219482121, + "y": 293.305953176398 + }, + { + "x": 667.6202219482121, + "y": 346.9901637027138 + }, + { + "x": 621.3235010789149, + "y": 346.9901637027138 + } + ] + }, + { + "id": "2CXyKmWYw", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.157886705900495, + "width": 19.99181180641184, + "left": 547.6695437731196, + "top": 126.9901476408306 + }, + "points": [ + { + "x": 547.6695437731196, + "y": 126.9901476408306 + }, + { + "x": 567.6613555795315, + "y": 126.9901476408306 + }, + { + "x": 567.6613555795315, + "y": 170.1480343467311 + }, + { + "x": 547.6695437731196, + "y": 170.1480343467311 + } + ] + }, + { + "id": "ecD8tp2Cn", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 36.82693048705302, + "left": 592.9141299321825, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 592.9141299321825, + "y": 204.8849005448191 + }, + { + "x": 629.7410604192355, + "y": 204.8849005448191 + }, + { + "x": 629.7410604192355, + "y": 249.09542686060857 + }, + { + "x": 592.9141299321825, + "y": 249.09542686060857 + } + ] + }, + { + "id": "X_GEhWKF9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 26.315797504625824, + "width": 13.678570052404439, + "left": 416.14470946362513, + "top": 37.51645539936266 + }, + "points": [ + { + "x": 416.14470946362513, + "y": 37.51645539936266 + }, + { + "x": 429.8232795160296, + "y": 37.51645539936266 + }, + { + "x": 429.8232795160296, + "y": 63.83225290398849 + }, + { + "x": 416.14470946362513, + "y": 63.83225290398849 + } + ] + } + ], + "version": "2.2.0" + }, + "7cae14b50122dc60d73f0779cc134bfa": { + "asset": { + "id": "7cae14b50122dc60d73f0779cc134bfa", + "format": "6", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.6.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.6", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.6 + }, + "regions": [ + { + "id": "lrpu-UK85", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.052663702713815, + "width": 34.722564734895194, + "left": 558.1915651972873, + "top": 604.8848684210526 + }, + "points": [ + { + "x": 558.1915651972873, + "y": 604.8848684210526 + }, + { + "x": 592.9141299321825, + "y": 604.8848684210526 + }, + { + "x": 592.9141299321825, + "y": 665.9375321237665 + }, + { + "x": 558.1915651972873, + "y": 665.9375321237665 + } + ] + }, + { + "id": "XJTP2WOZu", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.42103656969572, + "width": 31.56596794081381, + "left": 621.3235010789149, + "top": 410.14805843955594 + }, + "points": [ + { + "x": 621.3235010789149, + "y": 410.14805843955594 + }, + { + "x": 652.8894690197287, + "y": 410.14805843955594 + }, + { + "x": 652.8894690197287, + "y": 458.56909500925167 + }, + { + "x": 621.3235010789149, + "y": 458.56909500925167 + } + ] + }, + { + "id": "jjs-O2ULF", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 38.93139257090012, + "left": 621.3235010789149, + "top": 298.56907894736844 + }, + "points": [ + { + "x": 621.3235010789149, + "y": 298.56907894736844 + }, + { + "x": 660.254893649815, + "y": 298.56907894736844 + }, + { + "x": 660.254893649815, + "y": 345.9375 + }, + { + "x": 621.3235010789149, + "y": 345.9375 + } + ] + }, + { + "id": "h6vqfFp5z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 32.63158697831003, + "width": 42.08789303329223, + "left": 527.677828298397, + "top": 121.72697368421053 + }, + "points": [ + { + "x": 527.677828298397, + "y": 121.72697368421053 + }, + { + "x": 569.7657213316893, + "y": 121.72697368421053 + }, + { + "x": 569.7657213316893, + "y": 154.35856066252057 + }, + { + "x": 527.677828298397, + "y": 154.35856066252057 + } + ] + }, + { + "id": "qk8Kiir9R", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 30.513833230579532, + "left": 595.0184956843403, + "top": 200.67434210526315 + }, + "points": [ + { + "x": 595.0184956843403, + "y": 200.67434210526315 + }, + { + "x": 625.5323289149198, + "y": 200.67434210526315 + }, + { + "x": 625.5323289149198, + "y": 241.72697368421052 + }, + { + "x": 595.0184956843403, + "y": 241.72697368421052 + } + ] + }, + { + "id": "_LB5p3SvU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 21.052647640830592, + "width": 30.513785064734897, + "left": 405.62268803945744, + "top": 36.463815789473685 + }, + "points": [ + { + "x": 405.62268803945744, + "y": 36.463815789473685 + }, + { + "x": 436.13647310419236, + "y": 36.463815789473685 + }, + { + "x": 436.13647310419236, + "y": 57.51646343030428 + }, + { + "x": 405.62268803945744, + "y": 57.51646343030428 + } + ] + }, + { + "id": "kg37NrCH6", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.73684210526316, + "width": 31.56596794081381, + "left": 471.91122071516645, + "top": 68.04276315789474 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 68.04276315789474 + }, + { + "x": 503.4771886559803, + "y": 68.04276315789474 + }, + { + "x": 503.4771886559803, + "y": 102.77960526315789 + }, + { + "x": 471.91122071516645, + "y": 102.77960526315789 + } + ] + } + ], + "version": "2.2.0" + }, + "00b034031bc8427992dec0337139d447": { + "asset": { + "id": "00b034031bc8427992dec0337139d447", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.75 + }, + "regions": [ + { + "id": "6Vn64V0OQ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36846923828125, + "width": 27.357140104808877, + "left": 567.6613555795315, + "top": 603.8322529039885 + }, + "points": [ + { + "x": 567.6613555795315, + "y": 603.8322529039885 + }, + { + "x": 595.0184956843403, + "y": 603.8322529039885 + }, + { + "x": 595.0184956843403, + "y": 651.2007221422698 + }, + { + "x": 567.6613555795315, + "y": 651.2007221422698 + } + ] + }, + { + "id": "ZL98wF3_S", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94735235916941, + "width": 30.513736898890258, + "left": 624.4800978729963, + "top": 419.62174265008224 + }, + "points": [ + { + "x": 624.4800978729963, + "y": 419.62174265008224 + }, + { + "x": 654.9938347718866, + "y": 419.62174265008224 + }, + { + "x": 654.9938347718866, + "y": 458.56909500925167 + }, + { + "x": 624.4800978729963, + "y": 458.56909500925167 + } + ] + }, + { + "id": "8o5UpwH_s", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 18.939580764488287, + "left": 639.2108508014796, + "top": 293.305953176398 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 293.305953176398 + }, + { + "x": 658.150431565968, + "y": 293.305953176398 + }, + { + "x": 658.150431565968, + "y": 339.6217105263158 + }, + { + "x": 639.2108508014796, + "y": 339.6217105263158 + } + ] + }, + { + "id": "MBACngZhh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.3157814427426, + "width": 36.82693048705302, + "left": 530.8344250924785, + "top": 114.35856869346217 + }, + "points": [ + { + "x": 530.8344250924785, + "y": 114.35856869346217 + }, + { + "x": 567.6613555795315, + "y": 114.35856869346217 + }, + { + "x": 567.6613555795315, + "y": 160.67435013620477 + }, + { + "x": 530.8344250924785, + "y": 160.67435013620477 + } + ] + } + ], + "version": "2.2.0" + }, + "47a539f1f9d0ebd86edabbf8f94a38b3": { + "asset": { + "id": "47a539f1f9d0ebd86edabbf8f94a38b3", + "format": "85", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.85.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.85", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.85 + }, + "regions": [ + { + "id": "gwZNLCUOX", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 25.25277435265105, + "left": 633.9498882552405, + "top": 291.20067395662005 + }, + "points": [ + { + "x": 633.9498882552405, + "y": 291.20067395662005 + }, + { + "x": 659.2026626078915, + "y": 291.20067395662005 + }, + { + "x": 659.2026626078915, + "y": 329.0954107987253 + }, + { + "x": 633.9498882552405, + "y": 329.0954107987253 + } + ] + }, + { + "id": "ssfnYnzsO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 60, + "width": 29.46160218865598, + "left": 626.5844636251542, + "top": 409.09539473684214 + }, + "points": [ + { + "x": 626.5844636251542, + "y": 409.09539473684214 + }, + { + "x": 656.0460658138102, + "y": 409.09539473684214 + }, + { + "x": 656.0460658138102, + "y": 469.09539473684214 + }, + { + "x": 626.5844636251542, + "y": 469.09539473684214 + } + ] + }, + { + "id": "SnA_-jJKN", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 47.36842105263158, + "width": 36.82693048705302, + "left": 564.5047587854501, + "top": 589.0953947368421 + }, + "points": [ + { + "x": 564.5047587854501, + "y": 589.0953947368421 + }, + { + "x": 601.3316892725031, + "y": 589.0953947368421 + }, + { + "x": 601.3316892725031, + "y": 636.4638157894736 + }, + { + "x": 564.5047587854501, + "y": 636.4638157894736 + } + ] + }, + { + "id": "N8PbfORN1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 24.21051828484786, + "width": 23.14840860049322, + "left": 471.91122071516645, + "top": 78.56908697831004 + }, + "points": [ + { + "x": 471.91122071516645, + "y": 78.56908697831004 + }, + { + "x": 495.05962931565966, + "y": 78.56908697831004 + }, + { + "x": 495.05962931565966, + "y": 102.77960526315789 + }, + { + "x": 471.91122071516645, + "y": 102.77960526315789 + } + ] + }, + { + "id": "v5fk6aQyd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 27.3684371145148, + "width": 17.887446054254006, + "left": 582.3921085080148, + "top": 191.20065789473685 + }, + "points": [ + { + "x": 582.3921085080148, + "y": 191.20065789473685 + }, + { + "x": 600.2795545622688, + "y": 191.20065789473685 + }, + { + "x": 600.2795545622688, + "y": 218.56909500925164 + }, + { + "x": 582.3921085080148, + "y": 218.56909500925164 + } + ] + } + ], + "version": "2.2.0" + }, + "b3ecf05fa8f3de173dcdc36431b8d161": { + "asset": { + "id": "b3ecf05fa8f3de173dcdc36431b8d161", + "format": "95", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=14.95.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=14.95", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 14.95 + }, + "regions": [ + { + "id": "3tyV9oCwd", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 51.5789794921875, + "width": 30.513833230579532, + "left": 579.2355117139334, + "top": 589.0953947368421 + }, + "points": [ + { + "x": 579.2355117139334, + "y": 589.0953947368421 + }, + { + "x": 609.7493449445129, + "y": 589.0953947368421 + }, + { + "x": 609.7493449445129, + "y": 640.6743742290296 + }, + { + "x": 579.2355117139334, + "y": 640.6743742290296 + } + ] + }, + { + "id": "NxiySp8o1", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 29.46150585696671, + "left": 628.6889257090013, + "top": 413.305953176398 + }, + "points": [ + { + "x": 628.6889257090013, + "y": 413.305953176398 + }, + { + "x": 658.150431565968, + "y": 413.305953176398 + }, + { + "x": 658.150431565968, + "y": 455.41120027240953 + }, + { + "x": 628.6889257090013, + "y": 455.41120027240953 + } + ] + }, + { + "id": "x1uNKNI62", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 43.15791079872533, + "width": 15.782983970406905, + "left": 639.2108508014796, + "top": 289.0953947368421 + }, + "points": [ + { + "x": 639.2108508014796, + "y": 289.0953947368421 + }, + { + "x": 654.9938347718866, + "y": 289.0953947368421 + }, + { + "x": 654.9938347718866, + "y": 332.25330553556745 + }, + { + "x": 639.2108508014796, + "y": 332.25330553556745 + } + ] + }, + { + "id": "kLcQJv4fq", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 31.578947368421055, + "width": 16.835215012330455, + "left": 589.7575331381012, + "top": 186.9901476408306 + }, + "points": [ + { + "x": 589.7575331381012, + "y": 186.9901476408306 + }, + { + "x": 606.5927481504316, + "y": 186.9901476408306 + }, + { + "x": 606.5927481504316, + "y": 218.56909500925164 + }, + { + "x": 589.7575331381012, + "y": 218.56909500925164 + } + ] + }, + { + "id": "XlgS7FgY9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 29.473668148643092, + "width": 29.46150585696671, + "left": 527.677828298397, + "top": 130.1480423776727 + }, + "points": [ + { + "x": 527.677828298397, + "y": 130.1480423776727 + }, + { + "x": 557.1393341553637, + "y": 130.1480423776727 + }, + { + "x": 557.1393341553637, + "y": 159.62171052631578 + }, + { + "x": 527.677828298397, + "y": 159.62171052631578 + } + ] + }, + { + "id": "JwsTI1r9j", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 25.263157894736842, + "width": 22.096177558569668, + "left": 469.8068549630086, + "top": 82.77962132504112 + }, + "points": [ + { + "x": 469.8068549630086, + "y": 82.77962132504112 + }, + { + "x": 491.9030325215783, + "y": 82.77962132504112 + }, + { + "x": 491.9030325215783, + "y": 108.04277921977796 + }, + { + "x": 469.8068549630086, + "y": 108.04277921977796 + } + ] + } + ], + "version": "2.2.0" + }, + "847e7937722f8f1bec54f544bebac100": { + "asset": { + "id": "847e7937722f8f1bec54f544bebac100", + "format": "9", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=5.9.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=5.9", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 5.9 + }, + "regions": [ + { + "id": "0R62nQwSW", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 33.67033369297164, + "left": 723.3868295314427, + "top": 346.9901637027138 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 346.9901637027138 + }, + { + "x": 757.0571632244144, + "y": 346.9901637027138 + }, + { + "x": 757.0571632244144, + "y": 408.04277921977797 + }, + { + "x": 723.3868295314427, + "y": 408.04277921977797 + } + ] + }, + { + "id": "dXjf6k1p9", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 36.8270268187423, + "left": 746.5351418002466, + "top": 558.5691110711349 + }, + "points": [ + { + "x": 746.5351418002466, + "y": 558.5691110711349 + }, + { + "x": 783.3621686189889, + "y": 558.5691110711349 + }, + { + "x": 783.3621686189889, + "y": 604.8848684210526 + }, + { + "x": 746.5351418002466, + "y": 604.8848684210526 + } + ] + }, + { + "id": "w78jqovFc", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 40.00001606188322, + "width": 21.044042848335387, + "left": 683.403205918619, + "top": 231.20067395662008 + }, + "points": [ + { + "x": 683.403205918619, + "y": 231.20067395662008 + }, + { + "x": 704.4472487669544, + "y": 231.20067395662008 + }, + { + "x": 704.4472487669544, + "y": 271.2006900185033 + }, + { + "x": 683.403205918619, + "y": 271.2006900185033 + } + ] + }, + { + "id": "9Zm4Tj8PO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68422658819901, + "width": 24.200543310727497, + "left": 657.0982968557337, + "top": 165.9375 + }, + "points": [ + { + "x": 657.0982968557337, + "y": 165.9375 + }, + { + "x": 681.2988401664612, + "y": 165.9375 + }, + { + "x": 681.2988401664612, + "y": 199.621726588199 + }, + { + "x": 657.0982968557337, + "y": 199.621726588199 + } + ] + } + ], + "version": "2.2.0" + }, + "379a74c0aaecbef2c47e56408f03e0f6": { + "asset": { + "id": "379a74c0aaecbef2c47e56408f03e0f6", + "format": "75", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=5.75.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=5.75", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 5.75 + }, + "regions": [ + { + "id": "UIH6Wv3hj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 32.61810265104809, + "left": 729.7000231196055, + "top": 364.88486842105266 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 364.88486842105266 + }, + { + "x": 762.3181257706535, + "y": 364.88486842105266 + }, + { + "x": 762.3181257706535, + "y": 419.62174265008224 + }, + { + "x": 729.7000231196055, + "y": 419.62174265008224 + } + ] + }, + { + "id": "YDKXQraCM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 47.348951911220716, + "left": 737.0653514180025, + "top": 568.0427952816611 + }, + "points": [ + { + "x": 737.0653514180025, + "y": 568.0427952816611 + }, + { + "x": 784.4143033292232, + "y": 568.0427952816611 + }, + { + "x": 784.4143033292232, + "y": 616.4638800370066 + }, + { + "x": 737.0653514180025, + "y": 616.4638800370066 + } + ] + }, + { + "id": "3CImB78hU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 33.68417840254934, + "width": 24.20063964241677, + "left": 683.403205918619, + "top": 242.77963738692435 + }, + "points": [ + { + "x": 683.403205918619, + "y": 242.77963738692435 + }, + { + "x": 707.6038455610358, + "y": 242.77963738692435 + }, + { + "x": 707.6038455610358, + "y": 276.4638157894737 + }, + { + "x": 683.403205918619, + "y": 276.4638157894737 + } + ] + }, + { + "id": "3KMgd2uWe", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 38.94740054481908, + "width": 31.56596794081381, + "left": 652.8894690197287, + "top": 165.9375 + }, + "points": [ + { + "x": 652.8894690197287, + "y": 165.9375 + }, + { + "x": 684.4554369605426, + "y": 165.9375 + }, + { + "x": 684.4554369605426, + "y": 204.8849005448191 + }, + { + "x": 652.8894690197287, + "y": 204.8849005448191 + } + ] + } + ], + "version": "2.2.0" + }, + "0df92b525f6cd4bf3743184ca6509c8b": { + "asset": { + "id": "0df92b525f6cd4bf3743184ca6509c8b", + "format": "5", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.5.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.5", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.5 + }, + "regions": [ + { + "id": "0Y571jF5y", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 62.10527921977796, + "width": 41.035758323057955, + "left": 749.691738594328, + "top": 430.1480423776727 + }, + "points": [ + { + "x": 749.691738594328, + "y": 430.1480423776727 + }, + { + "x": 790.7274969173859, + "y": 430.1480423776727 + }, + { + "x": 790.7274969173859, + "y": 492.2533215974507 + }, + { + "x": 749.691738594328, + "y": 492.2533215974507 + } + ] + }, + { + "id": "qM-F2_4rx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.3158537212171, + "width": 26.3050053945746, + "left": 738.117582459926, + "top": 611.2006578947369 + }, + "points": [ + { + "x": 738.117582459926, + "y": 611.2006578947369 + }, + { + "x": 764.4225878545006, + "y": 611.2006578947369 + }, + { + "x": 764.4225878545006, + "y": 657.516511615954 + }, + { + "x": 738.117582459926, + "y": 657.516511615954 + } + ] + }, + { + "id": "uj5-m07rJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10519891036184, + "width": 28.40937114673243, + "left": 767.579184648582, + "top": 657.516511615954 + }, + "points": [ + { + "x": 767.579184648582, + "y": 657.516511615954 + }, + { + "x": 795.9885557953145, + "y": 657.516511615954 + }, + { + "x": 795.9885557953145, + "y": 699.6217105263158 + }, + { + "x": 767.579184648582, + "y": 699.6217105263158 + } + ] + }, + { + "id": "19weGfM57", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89472078022204, + "width": 34.722564734895194, + "left": 692.8729963008632, + "top": 262.77962132504115 + }, + "points": [ + { + "x": 692.8729963008632, + "y": 262.77962132504115 + }, + { + "x": 727.5955610357584, + "y": 262.77962132504115 + }, + { + "x": 727.5955610357584, + "y": 320.6743421052632 + }, + { + "x": 692.8729963008632, + "y": 320.6743421052632 + } + ] + }, + { + "id": "2YazSYavj", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 36.84209723221628, + "width": 22.096177558569668, + "left": 680.2466091245376, + "top": 198.56908697831003 + }, + "points": [ + { + "x": 680.2466091245376, + "y": 198.56908697831003 + }, + { + "x": 702.3427866831073, + "y": 198.56908697831003 + }, + { + "x": 702.3427866831073, + "y": 235.41118421052633 + }, + { + "x": 680.2466091245376, + "y": 235.41118421052633 + } + ] + } + ], + "version": "2.2.0" + }, + "51f77584bb31f201751a4d4c0dfb5586": { + "asset": { + "id": "51f77584bb31f201751a4d4c0dfb5586", + "format": "35", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.35.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.35", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.35 + }, + "regions": [ + { + "id": "3IumeVcSO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 37.89473684210526, + "width": 26.3050053945746, + "left": 775.9967439889026, + "top": 669.0954268606085 + }, + "points": [ + { + "x": 775.9967439889026, + "y": 669.0954268606085 + }, + { + "x": 802.3017493834772, + "y": 669.0954268606085 + }, + { + "x": 802.3017493834772, + "y": 706.9901637027139 + }, + { + "x": 775.9967439889026, + "y": 706.9901637027139 + } + ] + }, + { + "id": "hh8B5NuDv", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 57.89476896587171, + "width": 45.244586159062884, + "left": 731.8043888717633, + "top": 615.4112163342928 + }, + "points": [ + { + "x": 731.8043888717633, + "y": 615.4112163342928 + }, + { + "x": 777.0489750308261, + "y": 615.4112163342928 + }, + { + "x": 777.0489750308261, + "y": 673.3059853001645 + }, + { + "x": 731.8043888717633, + "y": 673.3059853001645 + } + ] + }, + { + "id": "dUT7Z6wI4", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 56.8421052631579, + "width": 27.357140104808877, + "left": 760.2137600184957, + "top": 431.2006578947368 + }, + "points": [ + { + "x": 760.2137600184957, + "y": 431.2006578947368 + }, + { + "x": 787.5709001233046, + "y": 431.2006578947368 + }, + { + "x": 787.5709001233046, + "y": 488.04276315789474 + }, + { + "x": 760.2137600184957, + "y": 488.04276315789474 + } + ] + }, + { + "id": "D4ObzCJeL", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 33.67033369297164, + "left": 712.8648081072749, + "top": 288.04277921977797 + }, + "points": [ + { + "x": 712.8648081072749, + "y": 288.04277921977797 + }, + { + "x": 746.5351418002466, + "y": 288.04277921977797 + }, + { + "x": 746.5351418002466, + "y": 338.56909500925167 + }, + { + "x": 712.8648081072749, + "y": 338.56909500925167 + } + ] + }, + { + "id": "n6lTuUJbf", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 24.20063964241677, + "left": 696.0295930949445, + "top": 202.77962132504112 + }, + "points": [ + { + "x": 696.0295930949445, + "y": 202.77962132504112 + }, + { + "x": 720.2302327373613, + "y": 202.77962132504112 + }, + { + "x": 720.2302327373613, + "y": 246.9901476408306 + }, + { + "x": 696.0295930949445, + "y": 246.9901476408306 + } + ] + } + ], + "version": "2.2.0" + }, + "885944d228c9f49a6578943b44a6c3f1": { + "asset": { + "id": "885944d228c9f49a6578943b44a6c3f1", + "format": "3", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.3.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.3", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.3 + }, + "regions": [ + { + "id": "EZkzhCOPD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.105295281661185, + "width": 35.77479577681874, + "left": 709.7082113131936, + "top": 279.6217105263158 + }, + "points": [ + { + "x": 709.7082113131936, + "y": 279.6217105263158 + }, + { + "x": 745.4830070900124, + "y": 279.6217105263158 + }, + { + "x": 745.4830070900124, + "y": 321.727005807977 + }, + { + "x": 709.7082113131936, + "y": 321.727005807977 + } + ] + }, + { + "id": "BOa1hXPWz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.31575734991777, + "width": 14.730849260172626, + "left": 702.3427866831073, + "top": 204.8849005448191 + }, + "points": [ + { + "x": 702.3427866831073, + "y": 204.8849005448191 + }, + { + "x": 717.0736359432799, + "y": 204.8849005448191 + }, + { + "x": 717.0736359432799, + "y": 251.20065789473685 + }, + { + "x": 702.3427866831073, + "y": 251.20065789473685 + } + ] + }, + { + "id": "WfqVHuzQA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 72.63157894736842, + "width": 37.879161528976574, + "left": 751.7962006781751, + "top": 430.1480423776727 + }, + "points": [ + { + "x": 751.7962006781751, + "y": 430.1480423776727 + }, + { + "x": 789.6753622071517, + "y": 430.1480423776727 + }, + { + "x": 789.6753622071517, + "y": 502.77962132504115 + }, + { + "x": 751.7962006781751, + "y": 502.77962132504115 + } + ] + }, + { + "id": "BG0nH_pxa", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 65.26312577097039, + "width": 35.77479577681874, + "left": 738.117582459926, + "top": 615.4112163342928 + }, + "points": [ + { + "x": 738.117582459926, + "y": 615.4112163342928 + }, + { + "x": 773.8923782367448, + "y": 615.4112163342928 + }, + { + "x": 773.8923782367448, + "y": 680.6743421052631 + }, + { + "x": 738.117582459926, + "y": 680.6743421052631 + } + ] + }, + { + "id": "MwNuKdkzx", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 41.05263157894737, + "width": 29.46150585696671, + "left": 777.0489750308261, + "top": 674.358552631579 + }, + "points": [ + { + "x": 777.0489750308261, + "y": 674.358552631579 + }, + { + "x": 806.5104808877928, + "y": 674.358552631579 + }, + { + "x": 806.5104808877928, + "y": 715.4111842105264 + }, + { + "x": 777.0489750308261, + "y": 715.4111842105264 + } + ] + } + ], + "version": "2.2.0" + }, + "58c499096f54a7e31f69d2e221f9d265": { + "asset": { + "id": "58c499096f54a7e31f69d2e221f9d265", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.25 + }, + "regions": [ + { + "id": "33wffdSOA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 69.47368421052632, + "width": 43.14012407521578, + "left": 753.9005664303329, + "top": 432.2533215974507 + }, + "points": [ + { + "x": 753.9005664303329, + "y": 432.2533215974507 + }, + { + "x": 797.0406905055487, + "y": 432.2533215974507 + }, + { + "x": 797.0406905055487, + "y": 501.727005807977 + }, + { + "x": 753.9005664303329, + "y": 501.727005807977 + } + ] + }, + { + "id": "FxYJoY-xY", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 36.82693048705302, + "left": 748.6396038840937, + "top": 629.095458984375 + }, + "points": [ + { + "x": 748.6396038840937, + "y": 629.095458984375 + }, + { + "x": 785.4665343711467, + "y": 629.095458984375 + }, + { + "x": 785.4665343711467, + "y": 682.7796695106908 + }, + { + "x": 748.6396038840937, + "y": 682.7796695106908 + } + ] + }, + { + "id": "EqEei5w8Z", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 44.21052631578947, + "width": 37.879161528976574, + "left": 713.9170391491986, + "top": 284.88488448293583 + }, + "points": [ + { + "x": 713.9170391491986, + "y": 284.88488448293583 + }, + { + "x": 751.7962006781751, + "y": 284.88488448293583 + }, + { + "x": 751.7962006781751, + "y": 329.0954107987253 + }, + { + "x": 713.9170391491986, + "y": 329.0954107987253 + } + ] + }, + { + "id": "5Zm0unYL-", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 42.10524709601152, + "width": 30.513736898890258, + "left": 691.8208615906289, + "top": 209.09541079872534 + }, + "points": [ + { + "x": 691.8208615906289, + "y": 209.09541079872534 + }, + { + "x": 722.3345984895191, + "y": 209.09541079872534 + }, + { + "x": 722.3345984895191, + "y": 251.20065789473685 + }, + { + "x": 691.8208615906289, + "y": 251.20065789473685 + } + ] + } + ], + "version": "2.2.0" + }, + "ff6135abfd268fac436ff2754ecbd61a": { + "asset": { + "id": "ff6135abfd268fac436ff2754ecbd61a", + "format": "2", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.2.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.2", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.2 + }, + "regions": [ + { + "id": "0uig-P66P", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.78944156044408, + "width": 30.513736898890258, + "left": 754.9527974722565, + "top": 628.0427952816611 + }, + "points": [ + { + "x": 754.9527974722565, + "y": 628.0427952816611 + }, + { + "x": 785.4665343711467, + "y": 628.0427952816611 + }, + { + "x": 785.4665343711467, + "y": 683.8322368421053 + }, + { + "x": 754.9527974722565, + "y": 683.8322368421053 + } + ] + }, + { + "id": "Y-VHJtdZJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 37.879161528976574, + "left": 765.4747225647349, + "top": 440.6743421052632 + }, + "points": [ + { + "x": 765.4747225647349, + "y": 440.6743421052632 + }, + { + "x": 803.3538840937115, + "y": 440.6743421052632 + }, + { + "x": 803.3538840937115, + "y": 506.9901315789474 + }, + { + "x": 765.4747225647349, + "y": 506.9901315789474 + } + ] + }, + { + "id": "SLgmhjdCS", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 35.77479577681874, + "left": 724.4389642416769, + "top": 292.2532894736842 + }, + "points": [ + { + "x": 724.4389642416769, + "y": 292.2532894736842 + }, + { + "x": 760.2137600184957, + "y": 292.2532894736842 + }, + { + "x": 760.2137600184957, + "y": 341.72698974609375 + }, + { + "x": 724.4389642416769, + "y": 341.72698974609375 + } + ] + }, + { + "id": "-_n0qKMjA", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63159500925165, + "width": 26.3050053945746, + "left": 705.4993834771886, + "top": 205.93751606188323 + }, + "points": [ + { + "x": 705.4993834771886, + "y": 205.93751606188323 + }, + { + "x": 731.8043888717633, + "y": 205.93751606188323 + }, + { + "x": 731.8043888717633, + "y": 258.5691110711349 + }, + { + "x": 705.4993834771886, + "y": 258.5691110711349 + } + ] + } + ], + "version": "2.2.0" + }, + "6024133fbfeda4c960f61669727d611a": { + "asset": { + "id": "6024133fbfeda4c960f61669727d611a", + "format": "15", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.15.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.15", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.15 + }, + "regions": [ + { + "id": "Xv3mZDvy5", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 55.789537931743425, + "width": 41.035758323057955, + "left": 749.691738594328, + "top": 623.8322368421053 + }, + "points": [ + { + "x": 749.691738594328, + "y": 623.8322368421053 + }, + { + "x": 790.7274969173859, + "y": 623.8322368421053 + }, + { + "x": 790.7274969173859, + "y": 679.6217747738486 + }, + { + "x": 749.691738594328, + "y": 679.6217747738486 + } + ] + }, + { + "id": "gz3cp3CEo", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 66.3157894736842, + "width": 37.879161528976574, + "left": 767.579184648582, + "top": 438.5691110711349 + }, + "points": [ + { + "x": 767.579184648582, + "y": 438.5691110711349 + }, + { + "x": 805.4583461775586, + "y": 438.5691110711349 + }, + { + "x": 805.4583461775586, + "y": 504.88490054481906 + }, + { + "x": 767.579184648582, + "y": 504.88490054481906 + } + ] + }, + { + "id": "qfLkxIedG", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 61.05261551706415, + "width": 31.56596794081381, + "left": 733.9087546239211, + "top": 281.72698974609375 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 281.72698974609375 + }, + { + "x": 765.4747225647349, + "y": 281.72698974609375 + }, + { + "x": 765.4747225647349, + "y": 342.7796052631579 + }, + { + "x": 733.9087546239211, + "y": 342.7796052631579 + } + ] + }, + { + "id": "FV5KEa_zO", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 39.999967876233555, + "width": 31.56596794081381, + "left": 699.1861898890259, + "top": 211.20069001850328 + }, + "points": [ + { + "x": 699.1861898890259, + "y": 211.20069001850328 + }, + { + "x": 730.7521578298397, + "y": 211.20069001850328 + }, + { + "x": 730.7521578298397, + "y": 251.20065789473685 + }, + { + "x": 699.1861898890259, + "y": 251.20065789473685 + } + ] + } + ], + "version": "2.2.0" + }, + "4354738e3bbd9d0e871dd9b08591c028": { + "asset": { + "id": "4354738e3bbd9d0e871dd9b08591c028", + "format": "05", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=4.05.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=4.05", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 4.05 + }, + "regions": [ + { + "id": "SfSz9jDju", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 71.57891524465461, + "width": 43.14012407521578, + "left": 769.6835504007398, + "top": 448.0427952816612 + }, + "points": [ + { + "x": 769.6835504007398, + "y": 448.0427952816612 + }, + { + "x": 812.8236744759556, + "y": 448.0427952816612 + }, + { + "x": 812.8236744759556, + "y": 519.6217105263158 + }, + { + "x": 769.6835504007398, + "y": 519.6217105263158 + } + ] + }, + { + "id": "x2IYUJyWU", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 46.315805535567435, + "width": 22.096177558569668, + "left": 717.0736359432799, + "top": 218.56909500925164 + }, + "points": [ + { + "x": 717.0736359432799, + "y": 218.56909500925164 + }, + { + "x": 739.1698135018496, + "y": 218.56909500925164 + }, + { + "x": 739.1698135018496, + "y": 264.88490054481906 + }, + { + "x": 717.0736359432799, + "y": 264.88490054481906 + } + ] + }, + { + "id": "0YeHaSduJ", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 48.4210847553454, + "width": 39.9835272811344, + "left": 757.0571632244144, + "top": 636.4638157894736 + }, + "points": [ + { + "x": 757.0571632244144, + "y": 636.4638157894736 + }, + { + "x": 797.0406905055487, + "y": 636.4638157894736 + }, + { + "x": 797.0406905055487, + "y": 684.8849005448191 + }, + { + "x": 757.0571632244144, + "y": 684.8849005448191 + } + ] + }, + { + "id": "GuZZx4cOl", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 52.63154682360197, + "width": 36.8270268187423, + "left": 733.9087546239211, + "top": 293.305953176398 + }, + "points": [ + { + "x": 733.9087546239211, + "y": 293.305953176398 + }, + { + "x": 770.7357814426634, + "y": 293.305953176398 + }, + { + "x": 770.7357814426634, + "y": 345.9375 + }, + { + "x": 733.9087546239211, + "y": 345.9375 + } + ] + } + ], + "version": "2.2.0" + }, + "f120ab9160f71ffc52db9d2c5e239f43": { + "asset": { + "id": "f120ab9160f71ffc52db9d2c5e239f43", + "format": "25", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=5.25.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=5.25", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 5.25 + }, + "regions": [ + { + "id": "dmWpT9NjD", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 30.513736898890258, + "left": 758.1093942663379, + "top": 617.516447368421 + }, + "points": [ + { + "x": 758.1093942663379, + "y": 617.516447368421 + }, + { + "x": 788.6231311652281, + "y": 617.516447368421 + }, + { + "x": 788.6231311652281, + "y": 671.2006578947369 + }, + { + "x": 758.1093942663379, + "y": 671.2006578947369 + } + ] + }, + { + "id": "g7y9MlYrh", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 79.99998393811678, + "width": 42.08789303329223, + "left": 723.3868295314427, + "top": 384.88490054481906 + }, + "points": [ + { + "x": 723.3868295314427, + "y": 384.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 384.88490054481906 + }, + { + "x": 765.4747225647349, + "y": 464.8848844829359 + }, + { + "x": 723.3868295314427, + "y": 464.8848844829359 + } + ] + }, + { + "id": "06YIvQQyb", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68421052631579, + "width": 34.722564734895194, + "left": 677.0900123304563, + "top": 245.93753212376646 + }, + "points": [ + { + "x": 677.0900123304563, + "y": 245.93753212376646 + }, + { + "x": 711.8125770653514, + "y": 245.93753212376646 + }, + { + "x": 711.8125770653514, + "y": 299.62174265008224 + }, + { + "x": 677.0900123304563, + "y": 299.62174265008224 + } + ] + }, + { + "id": "zBxZ15DRM", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 49.47370027240954, + "width": 22.096177558569668, + "left": 662.3592594019728, + "top": 181.72697368421052 + }, + "points": [ + { + "x": 662.3592594019728, + "y": 181.72697368421052 + }, + { + "x": 684.4554369605426, + "y": 181.72697368421052 + }, + { + "x": 684.4554369605426, + "y": 231.20067395662008 + }, + { + "x": 662.3592594019728, + "y": 231.20067395662008 + } + ] + } + ], + "version": "2.2.0" + }, + "cb37ef6c6159b1af7313d03229b4fc11": { + "asset": { + "id": "cb37ef6c6159b1af7313d03229b4fc11", + "format": "4", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=5.4.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=5.4", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 5.4 + }, + "regions": [ + { + "id": "xifbqRTEI", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 74.73685816714638, + "width": 34.722564734895194, + "left": 729.7000231196055, + "top": 373.3059371145148 + }, + "points": [ + { + "x": 729.7000231196055, + "y": 373.3059371145148 + }, + { + "x": 764.4225878545006, + "y": 373.3059371145148 + }, + { + "x": 764.4225878545006, + "y": 448.0427952816612 + }, + { + "x": 729.7000231196055, + "y": 448.0427952816612 + } + ] + }, + { + "id": "9SI6Z8p0M", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 68.42106869346217, + "width": 33.67033369297164, + "left": 758.1093942663379, + "top": 600.6743581671464 + }, + "points": [ + { + "x": 758.1093942663379, + "y": 600.6743581671464 + }, + { + "x": 791.7797279593095, + "y": 600.6743581671464 + }, + { + "x": 791.7797279593095, + "y": 669.0954268606085 + }, + { + "x": 758.1093942663379, + "y": 669.0954268606085 + } + ] + }, + { + "id": "q-kFzOF3_", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 54.7368742290296, + "width": 23.14840860049322, + "left": 684.4554369605426, + "top": 251.20065789473685 + }, + "points": [ + { + "x": 684.4554369605426, + "y": 251.20065789473685 + }, + { + "x": 707.6038455610358, + "y": 251.20065789473685 + }, + { + "x": 707.6038455610358, + "y": 305.93753212376646 + }, + { + "x": 684.4554369605426, + "y": 305.93753212376646 + } + ] + }, + { + "id": "JVERXqwsR", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 35.789481715152135, + "width": 16.835215012330455, + "left": 664.4636251541307, + "top": 179.6217185572574 + }, + "points": [ + { + "x": 664.4636251541307, + "y": 179.6217185572574 + }, + { + "x": 681.2988401664612, + "y": 179.6217185572574 + }, + { + "x": 681.2988401664612, + "y": 215.41120027240953 + }, + { + "x": 664.4636251541307, + "y": 215.41120027240953 + } + ] + } + ], + "version": "2.2.0" + }, + "9423d88cb74eceda21fa252dea5d4d3f": { + "asset": { + "id": "9423d88cb74eceda21fa252dea5d4d3f", + "format": "65", + "state": 2, + "type": 3, + "name": "record_video.mp4#t=5.65.jpg", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4#t=5.65", + "size": { + "width": 1280, + "height": 720 + }, + "parent": { + "format": "mp4", + "id": "b6cafd6f2a2af5ca0d8690f1c784d92f", + "name": "record_video.mp4", + "path": "file:C:/Users/raphaelfaure2/Documents/VOTT/record_video.mp4", + "size": { + "width": 1280, + "height": 720 + }, + "state": 1, + "type": 2 + }, + "timestamp": 5.65 + }, + "regions": [ + { + "id": "M0OdObvgt", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 50.526315789473685, + "width": 22.096177558569668, + "left": 688.6642647965475, + "top": 243.8322529039885 + }, + "points": [ + { + "x": 688.6642647965475, + "y": 243.8322529039885 + }, + { + "x": 710.7604423551171, + "y": 243.8322529039885 + }, + { + "x": 710.7604423551171, + "y": 294.3585686934622 + }, + { + "x": 688.6642647965475, + "y": 294.3585686934622 + } + ] + }, + { + "id": "6BcD0Zzel", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 63.15789473684211, + "width": 27.357140104808877, + "left": 728.6477920776819, + "top": 371.2006578947368 + }, + "points": [ + { + "x": 728.6477920776819, + "y": 371.2006578947368 + }, + { + "x": 756.0049321824907, + "y": 371.2006578947368 + }, + { + "x": 756.0049321824907, + "y": 434.35855263157896 + }, + { + "x": 728.6477920776819, + "y": 434.35855263157896 + } + ] + }, + { + "id": "yeol67yU0", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 53.68425871196546, + "width": 38.93139257090012, + "left": 740.2219482120838, + "top": 578.5690950092517 + }, + "points": [ + { + "x": 740.2219482120838, + "y": 578.5690950092517 + }, + { + "x": 779.153340782984, + "y": 578.5690950092517 + }, + { + "x": 779.153340782984, + "y": 632.2533537212171 + }, + { + "x": 740.2219482120838, + "y": 632.2533537212171 + } + ] + }, + { + "id": "-GGlULPNz", + "type": "RECTANGLE", + "tags": [ + "coureur" + ], + "boundingBox": { + "height": 34.736866198087995, + "width": 19.991715474722564, + "left": 660.254893649815, + "top": 179.6217185572574 + }, + "points": [ + { + "x": 660.254893649815, + "y": 179.6217185572574 + }, + { + "x": 680.2466091245376, + "y": 179.6217185572574 + }, + { + "x": 680.2466091245376, + "y": 214.3585847553454 + }, + { + "x": 660.254893649815, + "y": 214.3585847553454 + } + ] + } + ], + "version": "2.2.0" + } + } +} \ No newline at end of file diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.35.jpg new file mode 100644 index 0000000..9ad4ef9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.45.jpg new file mode 100644 index 0000000..a57211f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.5.jpg new file mode 100644 index 0000000..fa562a2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.6.jpg new file mode 100644 index 0000000..88c0de0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.75.jpg new file mode 100644 index 0000000..8614abc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.85.jpg new file mode 100644 index 0000000..b6b1d62 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.95.jpg new file mode 100644 index 0000000..38a3687 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=14.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.1.jpg new file mode 100644 index 0000000..db434f7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.2.jpg new file mode 100644 index 0000000..fe0cfc7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.3.jpg new file mode 100644 index 0000000..1aa6228 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.4.jpg new file mode 100644 index 0000000..0a7be71 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.5.jpg new file mode 100644 index 0000000..304f0ea Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.65.jpg new file mode 100644 index 0000000..646b4be Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.8.jpg new file mode 100644 index 0000000..dd5eb3d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.95.jpg new file mode 100644 index 0000000..26b4f14 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=15.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.1.jpg new file mode 100644 index 0000000..efccfcd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.25.jpg new file mode 100644 index 0000000..45a894d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.35.jpg new file mode 100644 index 0000000..f413a55 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.5.jpg new file mode 100644 index 0000000..9e69843 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.7.jpg new file mode 100644 index 0000000..7f5aefe Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.75.jpg new file mode 100644 index 0000000..80bf5dd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.8.jpg new file mode 100644 index 0000000..bc206e2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.95.jpg new file mode 100644 index 0000000..eaac1c1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=16.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.1.jpg new file mode 100644 index 0000000..7b13052 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.25.jpg new file mode 100644 index 0000000..8397082 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.4.jpg new file mode 100644 index 0000000..ce5c7cf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.55.jpg new file mode 100644 index 0000000..497040e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.7.jpg new file mode 100644 index 0000000..ce46419 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.85.jpg new file mode 100644 index 0000000..540b6f0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=17.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.15.jpg new file mode 100644 index 0000000..aa37732 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.3.jpg new file mode 100644 index 0000000..623038e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.45.jpg new file mode 100644 index 0000000..f2effdf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.6.jpg new file mode 100644 index 0000000..c4f50b3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.75.jpg new file mode 100644 index 0000000..a3dc340 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.9.jpg new file mode 100644 index 0000000..c5a9f11 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.jpg new file mode 100644 index 0000000..25864de Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=18.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.05.jpg new file mode 100644 index 0000000..1d53752 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.2.jpg new file mode 100644 index 0000000..85802c5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.35.jpg new file mode 100644 index 0000000..2445056 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.5.jpg new file mode 100644 index 0000000..93cfdc2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.65.jpg new file mode 100644 index 0000000..cebdea5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.75.jpg new file mode 100644 index 0000000..8d25117 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.95.jpg new file mode 100644 index 0000000..7e06138 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=19.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.05.jpg new file mode 100644 index 0000000..8253dae Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.2.jpg new file mode 100644 index 0000000..24d3a98 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.35.jpg new file mode 100644 index 0000000..dfd2732 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.5.jpg new file mode 100644 index 0000000..e03202c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.65.jpg new file mode 100644 index 0000000..d109b17 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.8.jpg new file mode 100644 index 0000000..54c8234 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=20.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.15.jpg new file mode 100644 index 0000000..0b852d6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.3.jpg new file mode 100644 index 0000000..d8d201d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.45.jpg new file mode 100644 index 0000000..6f67114 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.6.jpg new file mode 100644 index 0000000..9318b35 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.75.jpg new file mode 100644 index 0000000..c51e75b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.9.jpg new file mode 100644 index 0000000..457cf1a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.jpg new file mode 100644 index 0000000..a2bec91 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=21.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.05.jpg new file mode 100644 index 0000000..3fc1cd1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.2.jpg new file mode 100644 index 0000000..f909cb1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.35.jpg new file mode 100644 index 0000000..7a1ac33 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.5.jpg new file mode 100644 index 0000000..deca757 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.65.jpg new file mode 100644 index 0000000..da9cbb2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.8.jpg new file mode 100644 index 0000000..10c00d6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.95.jpg new file mode 100644 index 0000000..2d81fce Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=22.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.1.jpg new file mode 100644 index 0000000..9954f9a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.25.jpg new file mode 100644 index 0000000..9a6c7df Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.4.jpg new file mode 100644 index 0000000..55bbc48 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.55.jpg new file mode 100644 index 0000000..62e7a77 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.7.jpg new file mode 100644 index 0000000..4fb0f61 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.85.jpg new file mode 100644 index 0000000..82b64de Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=23.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.15.jpg new file mode 100644 index 0000000..b9a11a0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.35.jpg new file mode 100644 index 0000000..82c62f1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.5.jpg new file mode 100644 index 0000000..c737e90 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.65.jpg new file mode 100644 index 0000000..59a3fc4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.8.jpg new file mode 100644 index 0000000..f025bf7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.95.jpg new file mode 100644 index 0000000..3b21b14 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.jpg new file mode 100644 index 0000000..7e00e8b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=24.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.1.jpg new file mode 100644 index 0000000..7356a34 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.25.jpg new file mode 100644 index 0000000..4cc1cc4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.4.jpg new file mode 100644 index 0000000..bded9e5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.55.jpg new file mode 100644 index 0000000..9253c99 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.7.jpg new file mode 100644 index 0000000..6c0996a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.85.jpg new file mode 100644 index 0000000..3bd69ef Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=25.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.15.jpg new file mode 100644 index 0000000..ce06101 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.3.jpg new file mode 100644 index 0000000..f977c55 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.45.jpg new file mode 100644 index 0000000..4636746 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.6.jpg new file mode 100644 index 0000000..68b83b7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.75.jpg new file mode 100644 index 0000000..baae1ab Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.9.jpg new file mode 100644 index 0000000..81dbb8e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.jpg new file mode 100644 index 0000000..dbbd7f0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=26.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.05.jpg new file mode 100644 index 0000000..a3e4923 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.2.jpg new file mode 100644 index 0000000..8a5e3f3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.35.jpg new file mode 100644 index 0000000..3ec26e0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.5.jpg new file mode 100644 index 0000000..f8c6639 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.65.jpg new file mode 100644 index 0000000..8e665e1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.8.jpg new file mode 100644 index 0000000..cafba0c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.95.jpg new file mode 100644 index 0000000..be87a89 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=27.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.1.jpg new file mode 100644 index 0000000..2294991 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.25.jpg new file mode 100644 index 0000000..779ba75 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.4.jpg new file mode 100644 index 0000000..c5535b9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.55.jpg new file mode 100644 index 0000000..1e7b6ce Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.7.jpg new file mode 100644 index 0000000..6b7e434 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.85.jpg new file mode 100644 index 0000000..73a7281 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=28.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.15.jpg new file mode 100644 index 0000000..bd02f64 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.3.jpg new file mode 100644 index 0000000..290395c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.45.jpg new file mode 100644 index 0000000..a4d4f8d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.6.jpg new file mode 100644 index 0000000..5c3f6d3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.75.jpg new file mode 100644 index 0000000..540be01 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.9.jpg new file mode 100644 index 0000000..9c9ec4f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.jpg new file mode 100644 index 0000000..5ca7cb9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=29.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.05.jpg new file mode 100644 index 0000000..63fc36f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.2.jpg new file mode 100644 index 0000000..5a1ef2b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.25.jpg new file mode 100644 index 0000000..feccda5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.4.jpg new file mode 100644 index 0000000..ca9cc89 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.55.jpg new file mode 100644 index 0000000..feaf782 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.7.jpg new file mode 100644 index 0000000..3d2e239 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.85.jpg new file mode 100644 index 0000000..2842d20 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=30.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.15.jpg new file mode 100644 index 0000000..bbbe389 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.3.jpg new file mode 100644 index 0000000..8883222 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.45.jpg new file mode 100644 index 0000000..20ea596 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.6.jpg new file mode 100644 index 0000000..24199dc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.75.jpg new file mode 100644 index 0000000..f6dbb4c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.9.jpg new file mode 100644 index 0000000..cf9ee35 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.jpg new file mode 100644 index 0000000..d562c13 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=31.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.2.jpg new file mode 100644 index 0000000..e8c182b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.4.jpg new file mode 100644 index 0000000..79b33f7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.6.jpg new file mode 100644 index 0000000..faa46cf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.75.jpg new file mode 100644 index 0000000..34d05e0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.9.jpg new file mode 100644 index 0000000..ac319b1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.jpg new file mode 100644 index 0000000..09fffd6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=32.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.1.jpg new file mode 100644 index 0000000..b9dffa5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.25.jpg new file mode 100644 index 0000000..3599b05 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.45.jpg new file mode 100644 index 0000000..20b3f81 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.65.jpg new file mode 100644 index 0000000..98c1a3f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.75.jpg new file mode 100644 index 0000000..af00460 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.8.jpg new file mode 100644 index 0000000..12b4ba4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.85.jpg new file mode 100644 index 0000000..8d74fc8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=33.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.15.jpg new file mode 100644 index 0000000..065b762 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.3.jpg new file mode 100644 index 0000000..c23ce31 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.45.jpg new file mode 100644 index 0000000..6a86a0d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.6.jpg new file mode 100644 index 0000000..036353b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.75.jpg new file mode 100644 index 0000000..223f302 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.9.jpg new file mode 100644 index 0000000..1752d5d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.jpg new file mode 100644 index 0000000..3ed6b95 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=34.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.05.jpg new file mode 100644 index 0000000..974f52e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.2.jpg new file mode 100644 index 0000000..a376290 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.35.jpg new file mode 100644 index 0000000..c717a42 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.5.jpg new file mode 100644 index 0000000..032a57d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.65.jpg new file mode 100644 index 0000000..fc7774a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.8.jpg new file mode 100644 index 0000000..7cf5820 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.95.jpg new file mode 100644 index 0000000..e0a4083 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=35.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.1.jpg new file mode 100644 index 0000000..79d0947 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.25.jpg new file mode 100644 index 0000000..715d187 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.4.jpg new file mode 100644 index 0000000..9dc0c14 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.45.jpg new file mode 100644 index 0000000..d987c33 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.6.jpg new file mode 100644 index 0000000..7412686 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.75.jpg new file mode 100644 index 0000000..7657bec Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.9.jpg new file mode 100644 index 0000000..ad1a801 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=36.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.05.jpg new file mode 100644 index 0000000..a1512d1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.2.jpg new file mode 100644 index 0000000..59be88b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.35.jpg new file mode 100644 index 0000000..e23adb2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.5.jpg new file mode 100644 index 0000000..a196282 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.65.jpg new file mode 100644 index 0000000..c17d23d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.8.jpg new file mode 100644 index 0000000..01688b6 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.95.jpg new file mode 100644 index 0000000..354cba9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=37.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.1.jpg new file mode 100644 index 0000000..44ae785 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.25.jpg new file mode 100644 index 0000000..b448ad9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.4.jpg new file mode 100644 index 0000000..1b8b280 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.55.jpg new file mode 100644 index 0000000..eb13341 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.6.jpg new file mode 100644 index 0000000..b84d2fb Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.75.jpg new file mode 100644 index 0000000..87a913e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.9.jpg new file mode 100644 index 0000000..15bc796 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=38.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.05.jpg new file mode 100644 index 0000000..a55349b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.2.jpg new file mode 100644 index 0000000..793e902 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.35.jpg new file mode 100644 index 0000000..33ee446 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.5.jpg new file mode 100644 index 0000000..04ea328 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.65.jpg new file mode 100644 index 0000000..c57e835 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.8.jpg new file mode 100644 index 0000000..68a37d4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.95.jpg new file mode 100644 index 0000000..0df25a1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=39.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.05.jpg new file mode 100644 index 0000000..978d43d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.15.jpg new file mode 100644 index 0000000..4eae5e9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.2.jpg new file mode 100644 index 0000000..1af6364 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.25.jpg new file mode 100644 index 0000000..61ef228 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.3.jpg new file mode 100644 index 0000000..4b1c16f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.35.jpg new file mode 100644 index 0000000..8501317 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.5.jpg new file mode 100644 index 0000000..399f742 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=4.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.1.jpg new file mode 100644 index 0000000..6a226a0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.25.jpg new file mode 100644 index 0000000..a643815 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.4.jpg new file mode 100644 index 0000000..54bddb5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.55.jpg new file mode 100644 index 0000000..b3436ba Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.7.jpg new file mode 100644 index 0000000..45bc488 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.85.jpg new file mode 100644 index 0000000..ac267b7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=40.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.2.jpg new file mode 100644 index 0000000..f0f799b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.35.jpg new file mode 100644 index 0000000..bcf6ac5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.5.jpg new file mode 100644 index 0000000..7fc5c0d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.65.jpg new file mode 100644 index 0000000..8f47863 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.8.jpg new file mode 100644 index 0000000..c477855 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.95.jpg new file mode 100644 index 0000000..b7126a8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.jpg new file mode 100644 index 0000000..4532010 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=41.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.15.jpg new file mode 100644 index 0000000..45f1a4e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.3.jpg new file mode 100644 index 0000000..b7b2494 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.45.jpg new file mode 100644 index 0000000..6119c3b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.6.jpg new file mode 100644 index 0000000..b55b37d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.75.jpg new file mode 100644 index 0000000..bd36f1d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.9.jpg new file mode 100644 index 0000000..b60ce23 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=42.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.05.jpg new file mode 100644 index 0000000..5b6630e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.25.jpg new file mode 100644 index 0000000..228c6cf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.4.jpg new file mode 100644 index 0000000..7251256 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.55.jpg new file mode 100644 index 0000000..c0df587 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.7.jpg new file mode 100644 index 0000000..0c4fbdc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.85.jpg new file mode 100644 index 0000000..8e6bfbf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=43.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.15.jpg new file mode 100644 index 0000000..d24091e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.3.jpg new file mode 100644 index 0000000..5c3208d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.45.jpg new file mode 100644 index 0000000..57ad09f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.6.jpg new file mode 100644 index 0000000..7cf1d59 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.75.jpg new file mode 100644 index 0000000..81eaa0d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.9.jpg new file mode 100644 index 0000000..4bdb910 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.jpg new file mode 100644 index 0000000..c515209 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=44.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.05.jpg new file mode 100644 index 0000000..a44b0ea Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.2.jpg new file mode 100644 index 0000000..07e899e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.35.jpg new file mode 100644 index 0000000..953ead0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.4.jpg new file mode 100644 index 0000000..fa24e7d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.55.jpg new file mode 100644 index 0000000..266acfb Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.7.jpg new file mode 100644 index 0000000..fb67e1f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.85.jpg new file mode 100644 index 0000000..9f55e95 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=45.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.15.jpg new file mode 100644 index 0000000..bf0bdd8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.3.jpg new file mode 100644 index 0000000..f78486c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.45.jpg new file mode 100644 index 0000000..a911f3e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.6.jpg new file mode 100644 index 0000000..96a0b9b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.75.jpg new file mode 100644 index 0000000..2f4f271 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.9.jpg new file mode 100644 index 0000000..971bd95 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.jpg new file mode 100644 index 0000000..377552b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=46.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.05.jpg new file mode 100644 index 0000000..1b2d211 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.2.jpg new file mode 100644 index 0000000..d54a58f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.4.jpg new file mode 100644 index 0000000..b23a0d2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.5.jpg new file mode 100644 index 0000000..862a616 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.65.jpg new file mode 100644 index 0000000..4d157b9 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.8.jpg new file mode 100644 index 0000000..2a5aef0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.95.jpg new file mode 100644 index 0000000..bebdd9e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=47.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.1.jpg new file mode 100644 index 0000000..2ba08ec Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.25.jpg new file mode 100644 index 0000000..30b5cf3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.4.jpg new file mode 100644 index 0000000..1a2f156 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.55.jpg new file mode 100644 index 0000000..b8a6cdc Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.7.jpg new file mode 100644 index 0000000..6d5de4b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.85.jpg new file mode 100644 index 0000000..2232a2e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=48.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.15.jpg new file mode 100644 index 0000000..8a1fa4b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.3.jpg new file mode 100644 index 0000000..590d5c7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.45.jpg new file mode 100644 index 0000000..27716ee Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.6.jpg new file mode 100644 index 0000000..30c9ec1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.75.jpg new file mode 100644 index 0000000..e037220 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.9.jpg new file mode 100644 index 0000000..366c112 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.jpg new file mode 100644 index 0000000..98af85f Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=49.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.25.jpg new file mode 100644 index 0000000..64fbe0e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.4.jpg new file mode 100644 index 0000000..5683599 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.65.jpg new file mode 100644 index 0000000..ad78230 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.75.jpg new file mode 100644 index 0000000..f6f760d Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.9.jpg new file mode 100644 index 0000000..e0dad94 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=5.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.05.jpg new file mode 100644 index 0000000..06bcde8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.2.jpg new file mode 100644 index 0000000..5beee3b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.35.jpg new file mode 100644 index 0000000..0a1e8f8 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.5.jpg new file mode 100644 index 0000000..16d088b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.65.jpg new file mode 100644 index 0000000..b7ce8f1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.8.jpg new file mode 100644 index 0000000..a3316d4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.95.jpg new file mode 100644 index 0000000..cb5c81c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=50.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.2.jpg new file mode 100644 index 0000000..da67a8b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.35.jpg new file mode 100644 index 0000000..92a9acf Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.5.jpg new file mode 100644 index 0000000..8cde5ce Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.65.jpg new file mode 100644 index 0000000..f8fdca7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.8.jpg new file mode 100644 index 0000000..7352ad1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=51.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.15.jpg new file mode 100644 index 0000000..709ccd4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.3.jpg new file mode 100644 index 0000000..1e7eeee Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.45.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.45.jpg new file mode 100644 index 0000000..fe9d4eb Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.45.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.6.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.6.jpg new file mode 100644 index 0000000..f5fbfb1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.6.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.75.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.75.jpg new file mode 100644 index 0000000..d0cc889 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.75.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.9.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.9.jpg new file mode 100644 index 0000000..e933a12 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.9.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.jpg new file mode 100644 index 0000000..9992e50 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=52.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.05.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.05.jpg new file mode 100644 index 0000000..24f68d7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.05.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.2.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.2.jpg new file mode 100644 index 0000000..298a8c0 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.2.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.35.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.35.jpg new file mode 100644 index 0000000..b4c21dd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.35.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.5.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.5.jpg new file mode 100644 index 0000000..637a80a Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.5.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.65.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.65.jpg new file mode 100644 index 0000000..9f4a86c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.65.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.8.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.8.jpg new file mode 100644 index 0000000..2f5bc6c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.8.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.95.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.95.jpg new file mode 100644 index 0000000..14bec42 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=53.95.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.1.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.1.jpg new file mode 100644 index 0000000..c1498ea Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.1.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.25.jpg new file mode 100644 index 0000000..22aa328 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.4.jpg new file mode 100644 index 0000000..6246c87 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.55.jpg new file mode 100644 index 0000000..715252b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.7.jpg new file mode 100644 index 0000000..59031fd Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.85.jpg new file mode 100644 index 0000000..2559516 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=54.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.15.jpg new file mode 100644 index 0000000..76f8ce2 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.3.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.3.jpg new file mode 100644 index 0000000..95953ec Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.3.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.4.jpg new file mode 100644 index 0000000..522ae04 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.55.jpg new file mode 100644 index 0000000..83508f4 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.7.jpg new file mode 100644 index 0000000..23e2ace Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.85.jpg new file mode 100644 index 0000000..5e47631 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.jpg new file mode 100644 index 0000000..6c8ddd7 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.15.jpg new file mode 100644 index 0000000..a4ce0ba Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.25.jpg new file mode 100644 index 0000000..c5ff59b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.4.jpg new file mode 100644 index 0000000..1abac15 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.55.jpg new file mode 100644 index 0000000..5b6c7f3 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.7.jpg new file mode 100644 index 0000000..beab281 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.85.jpg new file mode 100644 index 0000000..e37094b Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.jpg new file mode 100644 index 0000000..5c6615e Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=56.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.4.jpg new file mode 100644 index 0000000..9fd6539 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.55.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.55.jpg new file mode 100644 index 0000000..8fabae1 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.55.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.7.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.7.jpg new file mode 100644 index 0000000..27c7583 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.7.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.85.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.85.jpg new file mode 100644 index 0000000..c1bf54c Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.85.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.jpg new file mode 100644 index 0000000..867c9af Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=57.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.15.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.15.jpg new file mode 100644 index 0000000..7b187ed Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.15.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.25.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.25.jpg new file mode 100644 index 0000000..0e5f321 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.25.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.4.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.4.jpg new file mode 100644 index 0000000..f6c11b5 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.4.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.jpg b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.jpg new file mode 100644 index 0000000..368cc00 Binary files /dev/null and b/yolov7-tracker-example/data/dataset1_2024_06_19/vott-json-export/record_video.mp4#t=58.jpg differ diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/vott2yolov.py b/yolov7-tracker-example/data/dataset1_2024_06_19/vott2yolov.py new file mode 100644 index 0000000..db520d0 --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/vott2yolov.py @@ -0,0 +1,50 @@ +import numpy as np +import json, sys, os, shutil + +## cliquer sur export dans Vott puis : + +# prefix = "../exports_VOTT/CH01-20230614-083436-091514-Zone2/vott-json-export/" +# vottjson_filename = "Poulets-export.json" +# cc = 1000000 + +prefix = "./vott-json-export/" +vottjson_filename = "course-export.json" +cc = 1000000 + + +with open(prefix+"/"+vottjson_filename, "r") as read_file: + data = json.load(read_file) + +for a in data["assets"]: + asset = data["assets"][a]["asset"] + regions = data["assets"][a]["regions"] + img_name = asset["name"] + width = asset["size"]["width"] + height = asset["size"]["height"] + print("\nimage name : ",img_name," width =",width," height =",height) + shutil.copyfile(prefix+"/"+img_name,prefix+"/image_"+str(cc).zfill(12)+".jpg") + f = open(prefix+"/image_"+str(cc).zfill(12)+".txt", "w") + # f = open(prefix+"/"+img_name.replace(".jpg",".txt"), "w") + for region in regions: + boundingBox = region["boundingBox"] + points = region["points"] + print(" tags =",region["tags"]," boundingBox =",boundingBox," points =",points) + # ## Labels : + # D’après la doc on doit avoir : + # Label_ID_1 X_CENTER_NORM Y_CENTER_NORM WIDTH_NORM HEIGHT_NORM + # The label_id is the index number in the classes.names file. The id of the first label will be 0 and an increasing integer after that. Note all the position attributes in the label file are not absolute but normalised. + # X_CENTER_NORM = X_CENTER_ABS/IMAGE_WIDTH centre image + # Y_CENTER_NORM = Y_CENTER_ABS/IMAGE_HEIGHT centre image + # WIDTH_NORM = WIDTH_OF_LABEL_ABS/IMAGE_WIDTH largeur boite + # HEIGHT_NORM = HEIGHT_OF_LABEL_ABS/IMAGE_HEIGHT hauteur boite + # dans un repere dont l'origine est en haut a gauche et X de gauche à droite, Y du haut vers le bas + Label_ID = "0" # 0 = poulet une seule classe ici + X_CENTER_NORM = (boundingBox["left"]+boundingBox["width"]/2)/width + Y_CENTER_NORM = (boundingBox["top"]+boundingBox["height"]/2)/height + WIDTH_NORM = boundingBox["width"]/width + HEIGHT_NORM = boundingBox["height"]/height + f.write(Label_ID+" "+str(X_CENTER_NORM)+" "+str(Y_CENTER_NORM)+" "+str(WIDTH_NORM)+" "+str(HEIGHT_NORM)+"\n" ) # 0 = poulet si l'on a qu'une classe d'objet... + f.close() + cc += 1 + print(" written file :",prefix+"/"+img_name.replace(".jpg",".txt")) + diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5s_1280.yaml b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5s_1280.yaml new file mode 100644 index 0000000..e9db51a --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5s_1280.yaml @@ -0,0 +1,48 @@ +# YOLOv5 🚀 by Ultralytics, GPL-3.0 license + +# Parameters +nc: 1 # number of classes +depth_multiple: 0.33 # model depth multiple +width_multiple: 0.50 # layer channel multiple +anchors: + - [15,38, 18,53, 24,56] # P3/8 + - [28,72, 28,93, 33,119] # P4/16 + - [39,123, 42,156, 60,188] # P5/32 + +# YOLOv5 v6.0 backbone +backbone: + # [from, number, module, args] + [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 + [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 + [-1, 3, C3, [128]], + [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 + [-1, 6, C3, [256]], + [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 + [-1, 9, C3, [512]], + [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 + [-1, 3, C3, [1024]], + [-1, 1, SPPF, [1024, 5]], # 9 + ] + +# YOLOv5 v6.0 head +head: + [[-1, 1, Conv, [512, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 6], 1, Concat, [1]], # cat backbone P4 + [-1, 3, C3, [512, False]], # 13 + + [-1, 1, Conv, [256, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 4], 1, Concat, [1]], # cat backbone P3 + [-1, 3, C3, [256, False]], # 17 (P3/8-small) + + [-1, 1, Conv, [256, 3, 2]], + [[-1, 14], 1, Concat, [1]], # cat head P4 + [-1, 3, C3, [512, False]], # 20 (P4/16-medium) + + [-1, 1, Conv, [512, 3, 2]], + [[-1, 10], 1, Concat, [1]], # cat head P5 + [-1, 3, C3, [1024, False]], # 23 (P5/32-large) + + [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) + ] diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5s_640.yaml b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5s_640.yaml new file mode 100644 index 0000000..ede6cdb --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5s_640.yaml @@ -0,0 +1,48 @@ +# YOLOv5 🚀 by Ultralytics, GPL-3.0 license + +# Parameters +nc: 1 # number of classes +depth_multiple: 0.33 # model depth multiple +width_multiple: 0.50 # layer channel multiple +anchors: + - [8,19, 9,27, 11,27] # P3/8 + - [14,35, 14,44, 16,60] # P4/16 + - [19,60, 21,78, 30,94] # P5/32 + +# YOLOv5 v6.0 backbone +backbone: + # [from, number, module, args] + [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 + [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 + [-1, 3, C3, [128]], + [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 + [-1, 6, C3, [256]], + [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 + [-1, 9, C3, [512]], + [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 + [-1, 3, C3, [1024]], + [-1, 1, SPPF, [1024, 5]], # 9 + ] + +# YOLOv5 v6.0 head +head: + [[-1, 1, Conv, [512, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 6], 1, Concat, [1]], # cat backbone P4 + [-1, 3, C3, [512, False]], # 13 + + [-1, 1, Conv, [256, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 4], 1, Concat, [1]], # cat backbone P3 + [-1, 3, C3, [256, False]], # 17 (P3/8-small) + + [-1, 1, Conv, [256, 3, 2]], + [[-1, 14], 1, Concat, [1]], # cat head P4 + [-1, 3, C3, [512, False]], # 20 (P4/16-medium) + + [-1, 1, Conv, [512, 3, 2]], + [[-1, 10], 1, Concat, [1]], # cat head P5 + [-1, 3, C3, [1024, False]], # 23 (P5/32-large) + + [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) + ] diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5x_1280.yaml b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5x_1280.yaml new file mode 100644 index 0000000..711f5dc --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5x_1280.yaml @@ -0,0 +1,48 @@ +# YOLOv5 🚀 by Ultralytics, GPL-3.0 license + +# Parameters +nc: 1 # number of classes +depth_multiple: 1.33 # model depth multiple +width_multiple: 1.25 # layer channel multiple +anchors: + - [15,38, 18,53, 24,56] # P3/8 + - [28,72, 28,93, 33,119] # P4/16 + - [39,123, 42,156, 60,188] # P5/32 + +# YOLOv5 v6.0 backbone +backbone: + # [from, number, module, args] + [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 + [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 + [-1, 3, C3, [128]], + [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 + [-1, 6, C3, [256]], + [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 + [-1, 9, C3, [512]], + [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 + [-1, 3, C3, [1024]], + [-1, 1, SPPF, [1024, 5]], # 9 + ] + +# YOLOv5 v6.0 head +head: + [[-1, 1, Conv, [512, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 6], 1, Concat, [1]], # cat backbone P4 + [-1, 3, C3, [512, False]], # 13 + + [-1, 1, Conv, [256, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 4], 1, Concat, [1]], # cat backbone P3 + [-1, 3, C3, [256, False]], # 17 (P3/8-small) + + [-1, 1, Conv, [256, 3, 2]], + [[-1, 14], 1, Concat, [1]], # cat head P4 + [-1, 3, C3, [512, False]], # 20 (P4/16-medium) + + [-1, 1, Conv, [512, 3, 2]], + [[-1, 10], 1, Concat, [1]], # cat head P5 + [-1, 3, C3, [1024, False]], # 23 (P5/32-large) + + [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) + ] diff --git a/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5x_640.yaml b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5x_640.yaml new file mode 100644 index 0000000..f53d28b --- /dev/null +++ b/yolov7-tracker-example/data/dataset1_2024_06_19/yolov5x_640.yaml @@ -0,0 +1,48 @@ +# YOLOv5 🚀 by Ultralytics, GPL-3.0 license + +# Parameters +nc: 1 # number of classes +depth_multiple: 1.33 # model depth multiple +width_multiple: 1.25 # layer channel multiple +anchors: + - [8,19, 9,27, 11,27] # P3/8 + - [14,35, 14,44, 16,60] # P4/16 + - [19,60, 21,78, 30,94] # P5/32 + +# YOLOv5 v6.0 backbone +backbone: + # [from, number, module, args] + [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 + [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 + [-1, 3, C3, [128]], + [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 + [-1, 6, C3, [256]], + [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 + [-1, 9, C3, [512]], + [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 + [-1, 3, C3, [1024]], + [-1, 1, SPPF, [1024, 5]], # 9 + ] + +# YOLOv5 v6.0 head +head: + [[-1, 1, Conv, [512, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 6], 1, Concat, [1]], # cat backbone P4 + [-1, 3, C3, [512, False]], # 13 + + [-1, 1, Conv, [256, 1, 1]], + [-1, 1, nn.Upsample, [None, 2, 'nearest']], + [[-1, 4], 1, Concat, [1]], # cat backbone P3 + [-1, 3, C3, [256, False]], # 17 (P3/8-small) + + [-1, 1, Conv, [256, 3, 2]], + [[-1, 14], 1, Concat, [1]], # cat head P4 + [-1, 3, C3, [512, False]], # 20 (P4/16-medium) + + [-1, 1, Conv, [512, 3, 2]], + [[-1, 10], 1, Concat, [1]], # cat head P5 + [-1, 3, C3, [1024, False]], # 23 (P5/32-large) + + [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) + ] diff --git a/yolov7-tracker-example/info_SF.txt b/yolov7-tracker-example/info_SF.txt new file mode 100644 index 0000000..e861870 --- /dev/null +++ b/yolov7-tracker-example/info_SF.txt @@ -0,0 +1,61 @@ +Dépôt : +git clone https://github.com/JackWoo0831/Yolov7-tracker + +mv Yolov7-tracker yolov7-tracker +cd yolov7-tracker +git checkout v2 # change to v2 branch !! + +conda create -n yolov7 python=3.9 pytorch=1.12 ## ancienne version, comme indiquée dans le readme, sinon numpy.distutils manque... +conda activate yolov7 + +( si besoin : conda remove --name yolov7 --all ) + +(yolov7) 14:37:21 sylvain.faure@cinaps ~/RN/athle/yolov7-tracker $ pip3 install numpy scipy matplotlib cython pandas cuda-python +(yolov7) 15:02:25 sylvain.faure@cinaps ~/RN/athle/yolov7-tracker $ pip3 install -r requirements.txt + +(yolov7) 15:02:25 sylvain.faure@cinaps ~/RN/athle/yolov7-tracker $ pip3 install ultralytics==8.0.94 + +################# +## TRAIN +################# + +## entrainement avec un premier dataset : ~/RN/athle/yolov7-tracker/dataset1_2024_06_19/ +Deux fichiers de configuration créées : +tracker/config_files/dataset1_2024_06_19.yaml +data/files_dataset1_2024_06_19.yaml + +yolov7 sur node20 du cluster : + +## pour voir la version de CUDA du noeud : +(yolov7) sylvain.faure@node20:~$ nvidia-smi +=> cuda 11.4 sur node20 + +cf notes d'installation de pytorch pour trouver les bonnes versions : https://pytorch.org/get-started/previous-versions/ +pip3 install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cu118 +pip3 install filterpy + +## test pour verifier que cuda est bien ok : +>>> import torch +>>> torch.cuda.is_available() +True + +## lancement de l'entrainement : + +(yolov7) sylvain.faure@node20:~/RN/athle/yolov7-tracker$ python3 train.py --dataset dataset1_2024_06_19__ --workers 1 --device 0 --batch-size 4 --data data/dataset1_2024_06_19/dataset.yaml --img 1280 720 --cfg cfg/training/yolov7x_dataset1_2024_06_19.yaml --weights '' --name yolov7x-dataset1_2024_06_19 --hyp data/hyp.scratch.custom.yaml + + +Si erreur : _pickle.UnpicklingError: STACK_GLOBAL requires str +Effacer les fichiers .cache : liste_images.cache par exemple... +(yolov7) sylvain.faure@node20:~/RN/athle/yolov7-tracker$rm data/dataset1_2024_06_19/liste_images.cache + +Si erreur np.int => remplacer par des np.int64 + +Si erreur cuda/cpu dans loss.py : +you have to replace the line in the file yolo7/utils/loss.py +"from_which_layer.append((torch.ones(size=(len(b),)) * i)" +to "from_which_layer.append((torch.ones(size=(len(b),)) * i).to('cuda'))", +and add new line "fg_mask_inboxes = fg_mask_inboxes.to(torch.device('cuda'))" +after "fg_mask_inboxes = matching_matrix.sum(0) > 0.0" +so you need to do it 3 times in the file + + diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/events.out.tfevents.1721138659.node20.421338.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/events.out.tfevents.1721138659.node20.421338.0 new file mode 100644 index 0000000..39fb419 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/events.out.tfevents.1721138659.node20.421338.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/opt.yaml new file mode 100644 index 0000000..cb5435f --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_19/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_19 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/events.out.tfevents.1721140930.node20.3001754.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/events.out.tfevents.1721140930.node20.3001754.0 new file mode 100644 index 0000000..481733f Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/events.out.tfevents.1721140930.node20.3001754.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/opt.yaml new file mode 100644 index 0000000..ffd461e --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1910/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1910 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/events.out.tfevents.1721141212.node20.3336742.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/events.out.tfevents.1721141212.node20.3336742.0 new file mode 100644 index 0000000..c619f3d Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/events.out.tfevents.1721141212.node20.3336742.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/opt.yaml new file mode 100644 index 0000000..786ebc1 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1911/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1911 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/events.out.tfevents.1721141281.node20.3419027.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/events.out.tfevents.1721141281.node20.3419027.0 new file mode 100644 index 0000000..313c61d Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/events.out.tfevents.1721141281.node20.3419027.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/opt.yaml new file mode 100644 index 0000000..c6f61bb --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1912/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1912 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/events.out.tfevents.1721141417.node20.3579164.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/events.out.tfevents.1721141417.node20.3579164.0 new file mode 100644 index 0000000..2328297 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/events.out.tfevents.1721141417.node20.3579164.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/opt.yaml new file mode 100644 index 0000000..e99754d --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1913/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1913 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/events.out.tfevents.1721141577.node20.3770528.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/events.out.tfevents.1721141577.node20.3770528.0 new file mode 100644 index 0000000..50d8885 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/events.out.tfevents.1721141577.node20.3770528.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/opt.yaml new file mode 100644 index 0000000..c741fa5 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1914/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1914 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/events.out.tfevents.1721141680.node20.3892526.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/events.out.tfevents.1721141680.node20.3892526.0 new file mode 100644 index 0000000..c7cbbef Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/events.out.tfevents.1721141680.node20.3892526.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/opt.yaml new file mode 100644 index 0000000..b4c8120 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1915/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 4 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 1 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1915 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/events.out.tfevents.1721141819.node20.4058847.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/events.out.tfevents.1721141819.node20.4058847.0 new file mode 100644 index 0000000..72ebb69 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/events.out.tfevents.1721141819.node20.4058847.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/opt.yaml new file mode 100644 index 0000000..0019fd0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1916/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1916 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/events.out.tfevents.1721158789.node20.3228238.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/events.out.tfevents.1721158789.node20.3228238.0 new file mode 100644 index 0000000..a6a9a1a Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/events.out.tfevents.1721158789.node20.3228238.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/opt.yaml new file mode 100644 index 0000000..fa061ae --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1917/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1917 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/events.out.tfevents.1721158947.node20.3416174.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/events.out.tfevents.1721158947.node20.3416174.0 new file mode 100644 index 0000000..abcb83d Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/events.out.tfevents.1721158947.node20.3416174.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/opt.yaml new file mode 100644 index 0000000..90c90ad --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1918/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1918 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/events.out.tfevents.1721159061.node20.3551495.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/events.out.tfevents.1721159061.node20.3551495.0 new file mode 100644 index 0000000..9fba603 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/events.out.tfevents.1721159061.node20.3551495.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/opt.yaml new file mode 100644 index 0000000..ab48c8d --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1919/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 1 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1919 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/events.out.tfevents.1721138881.node20.664462.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/events.out.tfevents.1721138881.node20.664462.0 new file mode 100644 index 0000000..729def0 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/events.out.tfevents.1721138881.node20.664462.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/opt.yaml new file mode 100644 index 0000000..82549c5 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_192/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_192 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/events.out.tfevents.1721159512.node20.4105603.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/events.out.tfevents.1721159512.node20.4105603.0 new file mode 100644 index 0000000..02c482d Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/events.out.tfevents.1721159512.node20.4105603.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/opt.yaml new file mode 100644 index 0000000..20542b2 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1920/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 1 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1920 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/F1_curve.png b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/F1_curve.png new file mode 100644 index 0000000..2477a50 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/F1_curve.png differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/PR_curve.png b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/PR_curve.png new file mode 100644 index 0000000..f1ce4e0 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/PR_curve.png differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/P_curve.png b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/P_curve.png new file mode 100644 index 0000000..33cc0ca Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/P_curve.png differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/R_curve.png b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/R_curve.png new file mode 100644 index 0000000..551e27c Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/R_curve.png differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/confusion_matrix.png b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/confusion_matrix.png new file mode 100644 index 0000000..3977a4e Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/confusion_matrix.png differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/events.out.tfevents.1721159651.node20.76326.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/events.out.tfevents.1721159651.node20.76326.0 new file mode 100644 index 0000000..e67603d Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/events.out.tfevents.1721159651.node20.76326.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/opt.yaml new file mode 100644 index 0000000..98b25cf --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 300 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 1 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1921 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/results.png b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/results.png new file mode 100644 index 0000000..45605b7 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/results.png differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/results.txt b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/results.txt new file mode 100644 index 0000000..ed7d235 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/results.txt @@ -0,0 +1,300 @@ + 0/299 3.09G 0.07112 2.573 0 2.644 36 1280 0 0 0 0 0.08559 0.3715 0 + 1/299 17.6G 0.06936 0.1113 0 0.1806 35 1280 0 0 0 0 0.08559 0.1762 0 + 2/299 17.6G 0.06862 0.04269 0 0.1113 15 1280 0 0 0 0 0.08558 0.1692 0 + 3/299 17.6G 0.07028 0.03444 0 0.1047 54 1280 0 0 0 0 0.08557 0.1719 0 + 4/299 17.6G 0.06572 0.03108 0 0.0968 43 1280 0.01086 0.03064 0.0008731 0.0001532 0.08548 0.1689 0 + 5/299 17.6G 0.06769 0.02958 0 0.09727 18 1280 0.006612 0.02321 0.0003907 8.704e-05 0.08546 0.1724 0 + 6/299 17.6G 0.06599 0.02996 0 0.09596 47 1280 0.003417 0.05107 0.0002005 3.303e-05 0.0855 0.1706 0 + 7/299 17.6G 0.06236 0.02793 0 0.09029 39 1280 0.006456 0.1114 0.001035 0.0001659 0.08465 0.1681 0 + 8/299 17.6G 0.06577 0.02819 0 0.09397 33 1280 0.01454 0.03389 0.001782 0.0003029 0.08433 0.1705 0 + 9/299 17.6G 0.06878 0.03061 0 0.09939 37 1280 0.01951 0.05107 0.003344 0.0006126 0.0827 0.1695 0 + 10/299 17.6G 0.07065 0.02892 0 0.09958 26 1280 0.008749 0.05292 0.001252 0.0002123 0.08178 0.1721 0 + 11/299 17.6G 0.07109 0.02948 0 0.1006 29 1280 0.02338 0.02925 0.003294 0.001065 0.08264 0.1725 0 + 12/299 17.6G 0.07143 0.03033 0 0.1018 53 1280 0.01729 0.03668 0.002903 0.0005018 0.08154 0.1639 0 + 13/299 17.6G 0.06972 0.02875 0 0.09847 35 1280 0.02145 0.1123 0.007235 0.001083 0.08149 0.1518 0 + 14/299 17.6G 0.06681 0.02892 0 0.09573 27 1280 0.1022 0.0961 0.02485 0.004625 0.08142 0.1415 0 + 15/299 17.6G 0.06037 0.02654 0 0.08691 40 1280 0.01109 0.2066 0.004229 0.0007541 0.08181 0.1527 0 + 16/299 17.6G 0.0596 0.02775 0 0.08735 40 1280 0.2018 0.1402 0.09176 0.02323 0.0807 0.1357 0 + 17/299 17.6G 0.05663 0.02502 0 0.08164 35 1280 0.1353 0.1351 0.04673 0.00872 0.08055 0.1454 0 + 18/299 17.6G 0.05702 0.02681 0 0.08383 43 1280 0.1491 0.2409 0.07649 0.01657 0.07691 0.1864 0 + 19/299 17.6G 0.05735 0.02447 0 0.08182 10 1280 0.1589 0.3217 0.1186 0.02418 0.07546 0.1477 0 + 20/299 17.6G 0.05223 0.02357 0 0.07579 33 1280 0.3367 0.3287 0.2414 0.05752 0.07315 0.1247 0 + 21/299 17.6G 0.04913 0.02117 0 0.07029 36 1280 0.4016 0.3686 0.3156 0.07365 0.07268 0.1243 0 + 22/299 17.6G 0.04748 0.01937 0 0.06685 39 1280 0.4219 0.4144 0.3321 0.07209 0.07157 0.1285 0 + 23/299 17.6G 0.04678 0.0213 0 0.06808 37 1280 0.2977 0.4652 0.2844 0.05993 0.07136 0.1484 0 + 24/299 17.6G 0.04405 0.02017 0 0.06423 59 1280 0.3949 0.5125 0.3492 0.07987 0.06911 0.1186 0 + 25/299 17.6G 0.04396 0.01884 0 0.0628 25 1280 0.4157 0.5356 0.3741 0.08121 0.06736 0.1234 0 + 26/299 17.6G 0.0447 0.01834 0 0.06304 29 1280 0.5843 0.5395 0.5272 0.1263 0.06565 0.1507 0 + 27/299 17.6G 0.042 0.02011 0 0.0621 31 1280 0.4956 0.6151 0.4527 0.1078 0.0649 0.1221 0 + 28/299 17.6G 0.04188 0.01788 0 0.05976 23 1280 0.6027 0.6198 0.5765 0.1484 0.06467 0.1254 0 + 29/299 17.6G 0.03834 0.01707 0 0.05541 44 1280 0.7268 0.6016 0.6483 0.1773 0.06376 0.1329 0 + 30/299 17.6G 0.03853 0.01679 0 0.05532 61 1280 0.7417 0.6972 0.7094 0.2028 0.06139 0.1293 0 + 31/299 17.6G 0.03938 0.01667 0 0.05605 39 1280 0.7325 0.6611 0.6765 0.1853 0.06191 0.1438 0 + 32/299 17.6G 0.03887 0.01757 0 0.05643 35 1280 0.7809 0.7038 0.7272 0.2069 0.06026 0.1243 0 + 33/299 17.6G 0.03571 0.01627 0 0.05198 17 1280 0.7454 0.6843 0.7005 0.2088 0.06156 0.1301 0 + 34/299 17.6G 0.03735 0.01895 0 0.0563 32 1280 0.6685 0.6634 0.6369 0.1827 0.06123 0.1567 0 + 35/299 17.6G 0.03671 0.01885 0 0.05556 26 1280 0.599 0.7052 0.6346 0.1593 0.05928 0.1346 0 + 36/299 17.6G 0.03526 0.01659 0 0.05185 33 1280 0.7554 0.7112 0.7428 0.2286 0.05802 0.1258 0 + 37/299 17.6G 0.03497 0.01706 0 0.05203 13 1280 0.8208 0.753 0.7876 0.2407 0.05592 0.1312 0 + 38/299 17.6G 0.03477 0.01546 0 0.05023 52 1280 0.8236 0.7595 0.7813 0.2483 0.05748 0.1269 0 + 39/299 17.6G 0.03519 0.01523 0 0.05042 21 1280 0.8231 0.7757 0.7943 0.2503 0.05485 0.1363 0 + 40/299 17.6G 0.03566 0.01709 0 0.05274 33 1280 0.8023 0.7632 0.7737 0.2201 0.05534 0.1369 0 + 41/299 17.6G 0.03595 0.01574 0 0.05168 35 1280 0.8153 0.779 0.7969 0.2514 0.05597 0.1383 0 + 42/299 17.6G 0.03513 0.01547 0 0.0506 59 1280 0.8433 0.7845 0.8096 0.2543 0.05564 0.1445 0 + 43/299 17.6G 0.03258 0.01655 0 0.04913 32 1280 0.8473 0.7953 0.8207 0.2696 0.05506 0.143 0 + 44/299 17.6G 0.0327 0.0151 0 0.0478 24 1280 0.8534 0.8078 0.8186 0.2769 0.05387 0.1354 0 + 45/299 17.6G 0.03278 0.01515 0 0.04792 17 1280 0.8459 0.7869 0.8105 0.2498 0.05447 0.1412 0 + 46/299 17.6G 0.03263 0.01432 0 0.04695 22 1280 0.8701 0.8272 0.8444 0.2764 0.05326 0.1459 0 + 47/299 17.6G 0.03354 0.0146 0 0.04813 26 1280 0.8056 0.7707 0.7693 0.2111 0.05486 0.1441 0 + 48/299 17.6G 0.0347 0.01593 0 0.05063 33 1280 0.8563 0.8185 0.8323 0.2874 0.0551 0.1296 0 + 49/299 17.6G 0.03255 0.0148 0 0.04735 51 1280 0.8638 0.8134 0.8391 0.2812 0.05426 0.1345 0 + 50/299 17.6G 0.03252 0.01511 0 0.04763 20 1280 0.8649 0.8291 0.8508 0.2959 0.05409 0.1376 0 + 51/299 17.6G 0.03253 0.01469 0 0.04722 39 1280 0.8678 0.8329 0.8539 0.3049 0.05333 0.1405 0 + 52/299 17.6G 0.03214 0.01432 0 0.04646 32 1280 0.8917 0.8411 0.865 0.2868 0.05281 0.1459 0 + 53/299 17.6G 0.03313 0.01483 0 0.04795 23 1280 0.8847 0.8412 0.8648 0.2954 0.05257 0.1532 0 + 54/299 17.6G 0.03229 0.01488 0 0.04717 35 1280 0.8819 0.8315 0.8443 0.2991 0.05412 0.1464 0 + 55/299 17.6G 0.03161 0.01414 0 0.04576 47 1280 0.845 0.8426 0.833 0.2728 0.05222 0.1531 0 + 56/299 17.6G 0.03201 0.01582 0 0.04783 38 1280 0.8408 0.8536 0.8562 0.3069 0.05251 0.169 0 + 57/299 17.6G 0.03265 0.01574 0 0.04839 17 1280 0.8583 0.8463 0.8703 0.3075 0.05169 0.149 0 + 58/299 17.6G 0.03186 0.01504 0 0.04691 25 1280 0.8772 0.8556 0.8728 0.3004 0.05286 0.1476 0 + 59/299 17.6G 0.03169 0.01461 0 0.0463 38 1280 0.8942 0.8691 0.8764 0.3321 0.05134 0.149 0 + 60/299 17.6G 0.03124 0.01485 0 0.04608 23 1280 0.8832 0.8538 0.8673 0.3001 0.05228 0.1513 0 + 61/299 17.6G 0.03042 0.0142 0 0.04462 23 1280 0.895 0.8802 0.8946 0.338 0.05123 0.1518 0 + 62/299 17.6G 0.03134 0.01456 0 0.04589 43 1280 0.8944 0.877 0.8875 0.3121 0.05164 0.1534 0 + 63/299 17.6G 0.03143 0.01411 0 0.04554 43 1280 0.8829 0.8765 0.8927 0.316 0.05074 0.1584 0 + 64/299 17.6G 0.03195 0.01393 0 0.04588 20 1280 0.8881 0.8654 0.8866 0.3116 0.05082 0.1585 0 + 65/299 17.6G 0.03181 0.01407 0 0.04588 22 1280 0.8889 0.8519 0.8661 0.3236 0.05096 0.1584 0 + 66/299 17.6G 0.03065 0.01431 0 0.04496 41 1280 0.8934 0.8793 0.8817 0.3205 0.05077 0.1552 0 + 67/299 17.6G 0.03122 0.01428 0 0.0455 19 1280 0.8816 0.8301 0.8537 0.3183 0.05265 0.1546 0 + 68/299 17.6G 0.03071 0.01409 0 0.0448 30 1280 0.8933 0.8635 0.8886 0.3391 0.05067 0.161 0 + 69/299 17.6G 0.03055 0.01381 0 0.04436 38 1280 0.8698 0.8561 0.8628 0.3215 0.05113 0.1593 0 + 70/299 17.6G 0.03038 0.0139 0 0.04427 24 1280 0.891 0.8695 0.8851 0.3176 0.05039 0.1564 0 + 71/299 17.6G 0.03031 0.01346 0 0.04377 29 1280 0.8933 0.8937 0.9029 0.3398 0.04977 0.1562 0 + 72/299 17.6G 0.03109 0.01396 0 0.04505 38 1280 0.8929 0.8909 0.8974 0.3404 0.04974 0.1593 0 + 73/299 17.6G 0.03077 0.01386 0 0.04463 28 1280 0.9007 0.8983 0.9099 0.3552 0.04996 0.1562 0 + 74/299 17.6G 0.03005 0.01351 0 0.04356 31 1280 0.8953 0.8931 0.9037 0.3479 0.05023 0.1589 0 + 75/299 17.6G 0.02939 0.01387 0 0.04326 25 1280 0.9074 0.8872 0.9033 0.3459 0.0503 0.1603 0 + 76/299 17.6G 0.03017 0.01409 0 0.04426 19 1280 0.8961 0.8895 0.8963 0.3452 0.04934 0.1601 0 + 77/299 17.6G 0.02958 0.01355 0 0.04313 32 1280 0.9062 0.8895 0.9044 0.3557 0.04874 0.1626 0 + 78/299 17.6G 0.03088 0.01425 0 0.04512 31 1280 0.863 0.8741 0.8656 0.3119 0.05139 0.1597 0 + 79/299 17.6G 0.03011 0.01327 0 0.04339 13 1280 0.8838 0.876 0.8777 0.3356 0.05041 0.1605 0 + 80/299 17.6G 0.03021 0.01376 0 0.04398 38 1280 0.9072 0.8988 0.9119 0.3582 0.04904 0.1665 0 + 81/299 17.6G 0.03077 0.01356 0 0.04432 19 1280 0.8897 0.8952 0.8991 0.353 0.05067 0.1703 0 + 82/299 17.6G 0.0297 0.01362 0 0.04332 34 1280 0.8923 0.902 0.8951 0.337 0.04973 0.1625 0 + 83/299 17.6G 0.02961 0.01334 0 0.04295 32 1280 0.8919 0.8946 0.8957 0.3435 0.04991 0.1675 0 + 84/299 17.6G 0.02908 0.01387 0 0.04295 43 1280 0.903 0.896 0.9004 0.3519 0.04937 0.1657 0 + 85/299 17.6G 0.02965 0.01479 0 0.04444 37 1280 0.8934 0.9039 0.9026 0.3494 0.05031 0.1621 0 + 86/299 17.6G 0.02879 0.01356 0 0.04235 59 1280 0.8984 0.8863 0.8905 0.3446 0.05093 0.1588 0 + 87/299 17.6G 0.02909 0.01389 0 0.04298 25 1280 0.911 0.8885 0.901 0.3538 0.05027 0.1629 0 + 88/299 17.6G 0.02921 0.01314 0 0.04235 38 1280 0.8947 0.9029 0.903 0.3611 0.05018 0.1603 0 + 89/299 17.6G 0.0297 0.01304 0 0.04274 29 1280 0.9171 0.914 0.9231 0.3694 0.04889 0.1608 0 + 90/299 17.6G 0.02888 0.01374 0 0.04261 31 1280 0.9107 0.9047 0.9165 0.3622 0.04907 0.1644 0 + 91/299 17.6G 0.02931 0.01353 0 0.04285 26 1280 0.9042 0.8988 0.9005 0.3636 0.04934 0.167 0 + 92/299 17.6G 0.02948 0.01287 0 0.04236 24 1280 0.9207 0.9011 0.9195 0.377 0.04866 0.1704 0 + 93/299 17.6G 0.02898 0.01384 0 0.04282 32 1280 0.9044 0.9052 0.9014 0.3577 0.04984 0.1669 0 + 94/299 17.6G 0.02864 0.01365 0 0.04229 35 1280 0.9212 0.9011 0.9196 0.3747 0.04885 0.1696 0 + 95/299 17.6G 0.02923 0.0139 0 0.04314 36 1280 0.9216 0.9127 0.9338 0.3651 0.04894 0.1754 0 + 96/299 17.6G 0.03012 0.01325 0 0.04338 13 1280 0.9064 0.9078 0.9083 0.3777 0.04923 0.1647 0 + 97/299 17.6G 0.03016 0.01253 0 0.04268 27 1280 0.9213 0.9124 0.9169 0.3787 0.04857 0.1674 0 + 98/299 17.6G 0.02889 0.01319 0 0.04207 39 1280 0.913 0.916 0.9159 0.3733 0.04768 0.1698 0 + 99/299 17.6G 0.02915 0.01327 0 0.04243 40 1280 0.9006 0.9004 0.9117 0.3552 0.04845 0.1738 0 + 100/299 17.6G 0.02888 0.01332 0 0.0422 30 1280 0.9126 0.9248 0.9272 0.3746 0.04794 0.1695 0 + 101/299 17.6G 0.02935 0.01318 0 0.04253 21 1280 0.9169 0.9239 0.9215 0.378 0.04828 0.1677 0 + 102/299 17.6G 0.02959 0.01285 0 0.04244 30 1280 0.9122 0.912 0.9168 0.3896 0.04805 0.1724 0 + 103/299 17.6G 0.0292 0.01366 0 0.04286 36 1280 0.9167 0.9039 0.9124 0.3745 0.04901 0.1677 0 + 104/299 17.6G 0.02843 0.0132 0 0.04163 16 1280 0.9081 0.9234 0.9215 0.3752 0.04862 0.1726 0 + 105/299 17.6G 0.02963 0.01366 0 0.04329 32 1280 0.926 0.9076 0.9246 0.3886 0.04805 0.1726 0 + 106/299 17.6G 0.02931 0.01341 0 0.04273 31 1280 0.9227 0.9146 0.9261 0.3743 0.04824 0.1749 0 + 107/299 17.6G 0.02845 0.01263 0 0.04109 39 1280 0.922 0.928 0.9237 0.3952 0.04761 0.1707 0 + 108/299 17.6G 0.02797 0.01306 0 0.04103 18 1280 0.9105 0.9067 0.9073 0.3698 0.04888 0.1702 0 + 109/299 17.6G 0.02851 0.01301 0 0.04152 9 1280 0.9175 0.9318 0.9328 0.395 0.04715 0.1746 0 + 110/299 17.6G 0.0287 0.01378 0 0.04249 43 1280 0.9266 0.9257 0.9309 0.4049 0.04774 0.1716 0 + 111/299 17.6G 0.02892 0.01321 0 0.04213 28 1280 0.9157 0.9257 0.9181 0.3887 0.04768 0.1735 0 + 112/299 17.6G 0.02874 0.01269 0 0.04144 44 1280 0.9259 0.9136 0.9265 0.3811 0.04734 0.1792 0 + 113/299 17.6G 0.02762 0.01366 0 0.04128 29 1280 0.9272 0.9229 0.9311 0.4052 0.04691 0.1767 0 + 114/299 17.6G 0.02804 0.01273 0 0.04077 31 1280 0.9144 0.9248 0.9218 0.3828 0.04767 0.1783 0 + 115/299 17.6G 0.02806 0.01272 0 0.04078 27 1280 0.9238 0.9308 0.9391 0.408 0.04683 0.1771 0 + 116/299 17.6G 0.02862 0.0129 0 0.04152 28 1280 0.9274 0.9308 0.9389 0.3957 0.04701 0.1807 0 + 117/299 17.6G 0.02849 0.01288 0 0.04137 40 1280 0.9249 0.9322 0.9345 0.404 0.0473 0.1782 0 + 118/299 17.6G 0.02732 0.01298 0 0.0403 41 1280 0.9313 0.9276 0.9357 0.421 0.04666 0.174 0 + 119/299 17.6G 0.02777 0.01286 0 0.04063 57 1280 0.927 0.9367 0.9346 0.4132 0.04672 0.1729 0 + 120/299 17.6G 0.02796 0.01325 0 0.0412 12 1280 0.9297 0.9331 0.9369 0.4142 0.04691 0.1738 0 + 121/299 17.6G 0.02755 0.01341 0 0.04096 56 1280 0.9272 0.9339 0.9382 0.4047 0.04695 0.18 0 + 122/299 17.6G 0.02804 0.01233 0 0.04037 43 1280 0.9369 0.9248 0.9395 0.4097 0.04701 0.1802 0 + 123/299 17.6G 0.0278 0.01324 0 0.04104 37 1280 0.9297 0.9275 0.9305 0.4163 0.04681 0.1819 0 + 124/299 17.6G 0.02715 0.01289 0 0.04004 32 1280 0.9238 0.9257 0.925 0.4023 0.04692 0.1819 0 + 125/299 17.6G 0.02794 0.0124 0 0.04035 57 1280 0.9232 0.9341 0.9401 0.4247 0.04648 0.179 0 + 126/299 17.6G 0.02779 0.01302 0 0.04082 28 1280 0.9368 0.9188 0.9361 0.417 0.04598 0.1801 0 + 127/299 17.6G 0.02806 0.01264 0 0.04069 22 1280 0.9322 0.9331 0.9418 0.3995 0.04686 0.1841 0 + 128/299 17.6G 0.02829 0.0132 0 0.04149 42 1280 0.9278 0.9378 0.9403 0.4038 0.04715 0.1813 0 + 129/299 17.6G 0.02801 0.01243 0 0.04044 33 1280 0.9296 0.9321 0.9296 0.4205 0.04649 0.1791 0 + 130/299 17.6G 0.02705 0.01282 0 0.03987 29 1280 0.9307 0.9318 0.9346 0.4176 0.04648 0.1779 0 + 131/299 17.6G 0.02651 0.01338 0 0.03988 25 1280 0.9373 0.9362 0.9389 0.4273 0.04612 0.1796 0 + 132/299 17.6G 0.02695 0.01294 0 0.03989 61 1280 0.9321 0.9359 0.9387 0.4286 0.0461 0.1813 0 + 133/299 17.6G 0.02746 0.01251 0 0.03997 35 1280 0.9329 0.9429 0.943 0.4351 0.04596 0.1827 0 + 134/299 17.6G 0.02747 0.01237 0 0.03984 36 1280 0.9342 0.9367 0.9386 0.4306 0.04596 0.1794 0 + 135/299 17.6G 0.02722 0.01325 0 0.04047 18 1280 0.9359 0.928 0.9405 0.416 0.04572 0.182 0 + 136/299 17.6G 0.02718 0.0125 0 0.03967 20 1280 0.9347 0.9364 0.9401 0.4301 0.0442 0.1826 0 + 137/299 17.6G 0.02665 0.01318 0 0.03983 30 1280 0.9424 0.9276 0.942 0.4198 0.04499 0.1851 0 + 138/299 17.6G 0.02674 0.01316 0 0.03989 32 1280 0.94 0.9262 0.9406 0.4294 0.0454 0.1827 0 + 139/299 17.6G 0.0259 0.01241 0 0.03831 31 1280 0.9262 0.9377 0.9399 0.4373 0.04553 0.1758 0 + 140/299 17.6G 0.02587 0.01207 0 0.03794 22 1280 0.9401 0.9266 0.9493 0.4344 0.04539 0.1854 0 + 141/299 17.6G 0.02666 0.01273 0 0.03939 43 1280 0.9389 0.9347 0.9497 0.4416 0.04461 0.1832 0 + 142/299 17.6G 0.02633 0.01253 0 0.03886 46 1280 0.9321 0.9383 0.9381 0.4268 0.04546 0.1836 0 + 143/299 17.6G 0.02645 0.01245 0 0.0389 35 1280 0.9467 0.9406 0.9496 0.441 0.04469 0.1841 0 + 144/299 17.6G 0.02692 0.01236 0 0.03928 37 1280 0.9388 0.94 0.9469 0.4435 0.04464 0.1855 0 + 145/299 17.6G 0.02567 0.01231 0 0.03799 26 1280 0.9414 0.9479 0.9565 0.4473 0.0443 0.1852 0 + 146/299 17.6G 0.02605 0.01299 0 0.03904 23 1280 0.9406 0.9415 0.9493 0.446 0.0443 0.1867 0 + 147/299 17.6G 0.02567 0.01282 0 0.03849 30 1280 0.9351 0.9424 0.9471 0.4511 0.04449 0.1827 0 + 148/299 17.6G 0.02492 0.01229 0 0.03721 29 1280 0.9402 0.9443 0.9529 0.4429 0.04428 0.183 0 + 149/299 17.6G 0.02573 0.01276 0 0.03849 38 1280 0.9391 0.9564 0.956 0.4436 0.04438 0.1847 0 + 150/299 17.6G 0.02568 0.01234 0 0.03802 24 1280 0.9297 0.9456 0.941 0.4363 0.04497 0.182 0 + 151/299 17.6G 0.02774 0.01239 0 0.04013 26 1280 0.9401 0.935 0.9452 0.4388 0.04503 0.1824 0 + 152/299 17.6G 0.02657 0.01153 0 0.0381 17 1280 0.9377 0.9517 0.9549 0.4598 0.04416 0.1834 0 + 153/299 17.6G 0.02593 0.01217 0 0.03809 40 1280 0.9464 0.9424 0.9508 0.4599 0.04414 0.1843 0 + 154/299 17.6G 0.02626 0.01222 0 0.03848 14 1280 0.9473 0.9526 0.9585 0.4571 0.04361 0.1846 0 + 155/299 17.6G 0.02614 0.01187 0 0.03802 38 1280 0.941 0.9494 0.9526 0.4535 0.04385 0.188 0 + 156/299 17.6G 0.02563 0.0122 0 0.03783 24 1280 0.9405 0.948 0.9549 0.4526 0.04415 0.1875 0 + 157/299 17.6G 0.02529 0.01198 0 0.03727 27 1280 0.9488 0.9401 0.9551 0.458 0.04387 0.1848 0 + 158/299 17.6G 0.02552 0.01223 0 0.03775 27 1280 0.9374 0.9451 0.949 0.4467 0.04415 0.1869 0 + 159/299 17.6G 0.02687 0.01245 0 0.03931 24 1280 0.9378 0.9471 0.9515 0.456 0.04413 0.1875 0 + 160/299 17.6G 0.02627 0.01294 0 0.03921 49 1280 0.9402 0.9424 0.9501 0.4537 0.04412 0.1859 0 + 161/299 17.6G 0.02569 0.01259 0 0.03828 15 1280 0.9389 0.9414 0.9442 0.4498 0.04411 0.1847 0 + 162/299 17.6G 0.02583 0.01212 0 0.03795 27 1280 0.9416 0.9498 0.9564 0.4616 0.04397 0.1862 0 + 163/299 17.6G 0.02544 0.01182 0 0.03727 17 1280 0.9462 0.9557 0.9609 0.4628 0.04376 0.1884 0 + 164/299 17.6G 0.02571 0.01228 0 0.03798 40 1280 0.9392 0.955 0.9554 0.4604 0.04379 0.1884 0 + 165/299 17.6G 0.02465 0.01191 0 0.03656 35 1280 0.947 0.955 0.961 0.4659 0.04362 0.1861 0 + 166/299 17.6G 0.02441 0.01219 0 0.03659 18 1280 0.9539 0.9508 0.9639 0.4664 0.04367 0.1884 0 + 167/299 17.6G 0.02587 0.01264 0 0.03851 33 1280 0.9394 0.9568 0.9632 0.4627 0.0437 0.1902 0 + 168/299 17.6G 0.02673 0.01239 0 0.03912 34 1280 0.9399 0.9531 0.9583 0.4694 0.04371 0.188 0 + 169/299 17.6G 0.02482 0.01251 0 0.03733 31 1280 0.9526 0.9508 0.9595 0.4778 0.04336 0.187 0 + 170/299 17.6G 0.02484 0.01261 0 0.03745 36 1280 0.954 0.9445 0.9597 0.4657 0.04358 0.1888 0 + 171/299 17.6G 0.0252 0.01264 0 0.03784 34 1280 0.9502 0.9559 0.9634 0.4697 0.04338 0.1868 0 + 172/299 17.6G 0.02609 0.01222 0 0.03831 39 1280 0.9498 0.958 0.9658 0.4768 0.04342 0.1894 0 + 173/299 17.6G 0.02456 0.01185 0 0.03641 36 1280 0.9593 0.9578 0.9685 0.4738 0.04343 0.1888 0 + 174/299 17.6G 0.02477 0.01283 0 0.0376 39 1280 0.9552 0.9615 0.971 0.478 0.04327 0.1881 0 + 175/299 17.6G 0.02394 0.01286 0 0.0368 30 1280 0.9574 0.9605 0.9672 0.4789 0.04312 0.1891 0 + 176/299 17.6G 0.02416 0.01184 0 0.036 42 1280 0.9526 0.9633 0.9705 0.464 0.04367 0.1919 0 + 177/299 17.6G 0.02531 0.01283 0 0.03814 32 1280 0.9521 0.9633 0.9688 0.4796 0.04297 0.1901 0 + 178/299 17.6G 0.02401 0.01191 0 0.03593 55 1280 0.9574 0.9605 0.9705 0.4832 0.04291 0.1883 0 + 179/299 17.6G 0.02395 0.01226 0 0.03621 35 1280 0.9637 0.9605 0.9737 0.4882 0.04275 0.1897 0 + 180/299 17.6G 0.0238 0.01228 0 0.03608 56 1280 0.9613 0.9601 0.9705 0.4935 0.04261 0.1895 0 + 181/299 17.6G 0.0245 0.01169 0 0.03619 28 1280 0.956 0.9577 0.9613 0.4922 0.04272 0.1859 0 + 182/299 17.6G 0.02426 0.01272 0 0.03698 56 1280 0.9623 0.9591 0.9693 0.4811 0.04278 0.1907 0 + 183/299 17.6G 0.02295 0.01155 0 0.0345 18 1280 0.9614 0.9615 0.968 0.4861 0.04245 0.1894 0 + 184/299 17.6G 0.02428 0.01294 0 0.03722 45 1280 0.9592 0.9615 0.9647 0.4849 0.04234 0.189 0 + 185/299 17.6G 0.02364 0.01172 0 0.03535 10 1280 0.9604 0.9591 0.9685 0.4849 0.04231 0.1897 0 + 186/299 17.6G 0.02445 0.0121 0 0.03655 20 1280 0.9628 0.9611 0.9693 0.4804 0.0424 0.1906 0 + 187/299 17.6G 0.02356 0.01226 0 0.03582 36 1280 0.9638 0.9656 0.97 0.493 0.04206 0.1905 0 + 188/299 17.6G 0.0236 0.01208 0 0.03568 35 1280 0.9535 0.9629 0.9604 0.4868 0.04254 0.1898 0 + 189/299 17.6G 0.02365 0.01149 0 0.03514 20 1280 0.9625 0.9647 0.9685 0.5003 0.04237 0.189 0 + 190/299 17.6G 0.02341 0.01177 0 0.03518 18 1280 0.9587 0.9698 0.9712 0.4886 0.04226 0.1909 0 + 191/299 17.6G 0.02355 0.01127 0 0.03482 15 1280 0.9601 0.9721 0.9729 0.4975 0.04213 0.188 0 + 192/299 17.6G 0.02347 0.0118 0 0.03526 24 1280 0.9557 0.9726 0.9716 0.5012 0.04181 0.1878 0 + 193/299 17.6G 0.02272 0.01193 0 0.03465 37 1280 0.9604 0.9684 0.9734 0.5019 0.04192 0.1893 0 + 194/299 17.6G 0.02237 0.01183 0 0.03419 35 1280 0.9615 0.9666 0.9711 0.4983 0.04196 0.1881 0 + 195/299 17.6G 0.02353 0.01191 0 0.03544 43 1280 0.9626 0.9694 0.9729 0.5058 0.04177 0.1874 0 + 196/299 17.6G 0.02322 0.0118 0 0.03503 18 1280 0.9637 0.967 0.9707 0.5148 0.04147 0.1862 0 + 197/299 17.6G 0.0244 0.01187 0 0.03628 26 1280 0.964 0.9712 0.9759 0.5071 0.04179 0.1894 0 + 198/299 17.6G 0.02301 0.01149 0 0.0345 44 1280 0.9657 0.9675 0.9743 0.5149 0.04151 0.189 0 + 199/299 17.6G 0.02322 0.01208 0 0.0353 36 1280 0.9599 0.9674 0.9716 0.5161 0.04139 0.1889 0 + 200/299 17.6G 0.02367 0.01199 0 0.03566 48 1280 0.9615 0.9754 0.9792 0.518 0.0413 0.1892 0 + 201/299 17.6G 0.02308 0.01222 0 0.0353 51 1280 0.96 0.9712 0.9734 0.5167 0.04133 0.1891 0 + 202/299 17.6G 0.02269 0.01239 0 0.03508 30 1280 0.9711 0.967 0.9783 0.5182 0.04136 0.1905 0 + 203/299 17.6G 0.02338 0.01164 0 0.03502 24 1280 0.9683 0.9675 0.9734 0.5024 0.04175 0.1924 0 + 204/299 17.6G 0.02395 0.01167 0 0.03562 31 1280 0.968 0.9688 0.9788 0.5265 0.041 0.1906 0 + 205/299 17.6G 0.02331 0.0119 0 0.03521 33 1280 0.9626 0.9688 0.9712 0.5226 0.04087 0.1895 0 + 206/299 17.6G 0.02302 0.01131 0 0.03433 20 1280 0.9615 0.9752 0.9776 0.5226 0.04091 0.1914 0 + 207/299 17.6G 0.02309 0.01179 0 0.03489 42 1280 0.9593 0.9744 0.9733 0.5089 0.04131 0.1933 0 + 208/299 17.6G 0.02323 0.01142 0 0.03465 20 1280 0.9651 0.9745 0.9813 0.5239 0.04102 0.1909 0 + 209/299 17.6G 0.02361 0.01157 0 0.03517 12 1280 0.9707 0.9698 0.9819 0.5208 0.04101 0.1909 0 + 210/299 17.6G 0.023 0.01192 0 0.03493 20 1280 0.9711 0.9689 0.9794 0.536 0.04076 0.1889 0 + 211/299 17.6G 0.02259 0.01132 0 0.03391 19 1280 0.9664 0.9735 0.9808 0.5313 0.04067 0.1884 0 + 212/299 17.6G 0.02238 0.01179 0 0.03417 72 1280 0.9602 0.9754 0.9794 0.5197 0.04115 0.1894 0 + 213/299 17.6G 0.02243 0.01131 0 0.03374 23 1280 0.9672 0.9745 0.9806 0.5349 0.04086 0.1874 0 + 214/299 17.6G 0.02295 0.01174 0 0.03469 53 1280 0.9617 0.9721 0.9739 0.5329 0.04107 0.1899 0 + 215/299 17.6G 0.0222 0.01138 0 0.03359 34 1280 0.9658 0.9712 0.9744 0.5343 0.04093 0.1904 0 + 216/299 17.6G 0.02243 0.01139 0 0.03382 34 1280 0.9661 0.9781 0.9808 0.5364 0.04073 0.1892 0 + 217/299 17.6G 0.02295 0.01155 0 0.0345 21 1280 0.9691 0.9749 0.9815 0.5373 0.04079 0.1904 0 + 218/299 17.6G 0.02293 0.01205 0 0.03498 28 1280 0.9734 0.9712 0.9807 0.5291 0.04076 0.1917 0 + 219/299 17.6G 0.0236 0.01191 0 0.03551 27 1280 0.9708 0.9745 0.9812 0.5405 0.04023 0.1902 0 + 220/299 17.6G 0.02229 0.01204 0 0.03433 56 1280 0.9713 0.9758 0.9818 0.5425 0.04013 0.1895 0 + 221/299 17.6G 0.02272 0.01172 0 0.03444 28 1280 0.9765 0.9689 0.9813 0.54 0.04033 0.1918 0 + 222/299 17.6G 0.02186 0.01109 0 0.03295 48 1280 0.9722 0.9726 0.9813 0.5377 0.04048 0.1913 0 + 223/299 17.6G 0.02159 0.01164 0 0.03323 39 1280 0.9724 0.974 0.9803 0.5457 0.04012 0.1894 0 + 224/299 17.6G 0.02153 0.01179 0 0.03332 28 1280 0.9753 0.9749 0.9828 0.5427 0.04024 0.1906 0 + 225/299 17.6G 0.02303 0.01232 0 0.03534 46 1280 0.9737 0.9786 0.9835 0.541 0.04013 0.1899 0 + 226/299 17.6G 0.02294 0.01116 0 0.0341 31 1280 0.9701 0.9796 0.9826 0.5422 0.04027 0.1916 0 + 227/299 17.6G 0.02187 0.01151 0 0.03339 34 1280 0.9737 0.9698 0.9811 0.5442 0.0401 0.1875 0 + 228/299 17.6G 0.02139 0.01134 0 0.03272 47 1280 0.9759 0.9758 0.9833 0.5462 0.04019 0.1901 0 + 229/299 17.6G 0.02345 0.01172 0 0.03517 37 1280 0.97 0.9796 0.9846 0.5462 0.04035 0.1888 0 + 230/299 17.6G 0.02166 0.0115 0 0.03316 26 1280 0.9803 0.974 0.9849 0.552 0.04008 0.1898 0 + 231/299 17.6G 0.02143 0.01185 0 0.03329 28 1280 0.975 0.9782 0.9844 0.5497 0.04021 0.1894 0 + 232/299 17.6G 0.02369 0.01202 0 0.03571 15 1280 0.9776 0.9721 0.9825 0.549 0.04026 0.1922 0 + 233/299 17.6G 0.02154 0.01165 0 0.03319 56 1280 0.9799 0.974 0.9849 0.556 0.04008 0.192 0 + 234/299 17.6G 0.02145 0.01173 0 0.03318 23 1280 0.9781 0.9782 0.9857 0.5654 0.03975 0.1899 0 + 235/299 17.6G 0.02218 0.01145 0 0.03363 21 1280 0.9771 0.9721 0.9839 0.5658 0.03973 0.1901 0 + 236/299 17.6G 0.02067 0.01191 0 0.03259 28 1280 0.9759 0.9763 0.9844 0.5643 0.03981 0.1903 0 + 237/299 17.6G 0.02103 0.01071 0 0.03174 33 1280 0.9746 0.9786 0.9851 0.5608 0.03991 0.191 0 + 238/299 17.6G 0.02175 0.01093 0 0.03268 22 1280 0.9744 0.9763 0.9842 0.5638 0.03987 0.1897 0 + 239/299 17.6G 0.02152 0.01095 0 0.03247 9 1280 0.98 0.9777 0.9859 0.5677 0.03964 0.1901 0 + 240/299 17.6G 0.02167 0.01172 0 0.03339 33 1280 0.9781 0.9782 0.9855 0.5635 0.03968 0.1905 0 + 241/299 17.6G 0.02185 0.01138 0 0.03323 23 1280 0.9727 0.9777 0.9833 0.5587 0.03986 0.1913 0 + 242/299 17.6G 0.02091 0.01134 0 0.03225 19 1280 0.9742 0.9805 0.9854 0.5613 0.03972 0.1916 0 + 243/299 17.6G 0.02087 0.01124 0 0.03211 53 1280 0.9742 0.9809 0.9847 0.5661 0.03967 0.1909 0 + 244/299 17.6G 0.02076 0.01177 0 0.03253 16 1280 0.971 0.9809 0.9845 0.5668 0.03942 0.1907 0 + 245/299 17.6G 0.02155 0.01084 0 0.03239 22 1280 0.9747 0.9818 0.9862 0.565 0.0395 0.1904 0 + 246/299 17.6G 0.02047 0.01108 0 0.03155 14 1280 0.9746 0.9809 0.9859 0.5631 0.03947 0.1919 0 + 247/299 17.6G 0.02051 0.01137 0 0.03188 34 1280 0.9724 0.9824 0.9852 0.5698 0.03932 0.192 0 + 248/299 17.6G 0.02073 0.01134 0 0.03206 47 1280 0.9746 0.9814 0.9857 0.5716 0.03938 0.1923 0 + 249/299 17.6G 0.0216 0.01114 0 0.03274 29 1280 0.9723 0.9786 0.983 0.5672 0.03958 0.1921 0 + 250/299 17.6G 0.02168 0.01087 0 0.03256 38 1280 0.9733 0.9804 0.9838 0.5664 0.03948 0.1919 0 + 251/299 17.6G 0.02108 0.01119 0 0.03227 23 1280 0.9719 0.9809 0.9837 0.5644 0.03955 0.1944 0 + 252/299 17.6G 0.02128 0.01161 0 0.03289 39 1280 0.9728 0.981 0.985 0.5712 0.03917 0.1914 0 + 253/299 17.6G 0.0205 0.01102 0 0.03152 43 1280 0.976 0.9828 0.9868 0.571 0.03927 0.1907 0 + 254/299 17.6G 0.0204 0.01172 0 0.03212 31 1280 0.971 0.9805 0.985 0.5738 0.0392 0.1893 0 + 255/299 17.6G 0.02065 0.01149 0 0.03213 26 1280 0.9777 0.9768 0.9858 0.5679 0.03933 0.1899 0 + 256/299 17.6G 0.02169 0.01174 0 0.03343 23 1280 0.9733 0.9838 0.9864 0.5758 0.03927 0.1901 0 + 257/299 17.6G 0.02086 0.01109 0 0.03195 39 1280 0.9765 0.9837 0.9872 0.5817 0.03919 0.1914 0 + 258/299 17.6G 0.02047 0.01157 0 0.03204 23 1280 0.9755 0.9814 0.9862 0.5764 0.03919 0.1913 0 + 259/299 17.6G 0.02034 0.01116 0 0.0315 35 1280 0.9769 0.9837 0.9869 0.5812 0.03906 0.1911 0 + 260/299 17.6G 0.02193 0.0112 0 0.03313 45 1280 0.98 0.981 0.9875 0.5855 0.03894 0.1915 0 + 261/299 17.6G 0.0211 0.01186 0 0.03296 63 1280 0.9774 0.9833 0.9863 0.5815 0.03908 0.1919 0 + 262/299 17.6G 0.02019 0.01075 0 0.03094 30 1280 0.9781 0.9842 0.9873 0.5747 0.03925 0.1922 0 + 263/299 17.6G 0.0207 0.01149 0 0.03219 21 1280 0.9769 0.9828 0.987 0.5782 0.03922 0.1918 0 + 264/299 17.6G 0.02087 0.01127 0 0.03214 31 1280 0.9747 0.9819 0.9864 0.5844 0.03898 0.1899 0 + 265/299 17.6G 0.02075 0.01122 0 0.03196 16 1280 0.9777 0.98 0.9859 0.5873 0.03881 0.1902 0 + 266/299 17.6G 0.02154 0.01168 0 0.03322 31 1280 0.9782 0.981 0.9862 0.5814 0.03902 0.1904 0 + 267/299 17.6G 0.01953 0.01162 0 0.03115 45 1280 0.9805 0.9824 0.9871 0.5812 0.03887 0.1905 0 + 268/299 17.6G 0.02041 0.0108 0 0.03121 28 1280 0.9747 0.9828 0.985 0.5827 0.03906 0.1917 0 + 269/299 17.6G 0.01995 0.01123 0 0.03118 46 1280 0.9777 0.9785 0.9851 0.5915 0.03882 0.1907 0 + 270/299 17.6G 0.02094 0.01112 0 0.03207 31 1280 0.9813 0.9767 0.9848 0.5873 0.03878 0.19 0 + 271/299 17.6G 0.02021 0.01056 0 0.03077 26 1280 0.9814 0.9796 0.985 0.5841 0.03886 0.1911 0 + 272/299 17.6G 0.01938 0.0118 0 0.03119 17 1280 0.9763 0.9824 0.9851 0.5886 0.03876 0.1915 0 + 273/299 17.6G 0.01983 0.01164 0 0.03148 48 1280 0.9782 0.9809 0.9855 0.5946 0.03867 0.1911 0 + 274/299 17.6G 0.02005 0.01133 0 0.03138 25 1280 0.9761 0.9846 0.9877 0.5937 0.03858 0.1906 0 + 275/299 17.6G 0.01982 0.01097 0 0.03079 18 1280 0.9811 0.9819 0.9865 0.593 0.03858 0.1904 0 + 276/299 17.6G 0.02085 0.01131 0 0.03216 23 1280 0.9778 0.9837 0.9863 0.5833 0.03875 0.1909 0 + 277/299 17.6G 0.01965 0.01068 0 0.03033 24 1280 0.9801 0.9833 0.9874 0.5976 0.03847 0.1897 0 + 278/299 17.6G 0.02026 0.0112 0 0.03146 57 1280 0.9792 0.9851 0.9876 0.5959 0.03847 0.1899 0 + 279/299 17.6G 0.01991 0.0112 0 0.03111 29 1280 0.9801 0.9842 0.9884 0.5966 0.03848 0.1898 0 + 280/299 17.6G 0.02025 0.01091 0 0.03116 33 1280 0.9792 0.9846 0.9892 0.5998 0.03823 0.19 0 + 281/299 17.6G 0.01981 0.01096 0 0.03077 51 1280 0.9769 0.9833 0.9874 0.5948 0.0383 0.1918 0 + 282/299 17.6G 0.0207 0.01079 0 0.03149 14 1280 0.9823 0.9796 0.9883 0.6012 0.03813 0.1911 0 + 283/299 17.6G 0.02098 0.01055 0 0.03154 53 1280 0.9788 0.985 0.988 0.5994 0.03825 0.1905 0 + 284/299 17.6G 0.01919 0.01089 0 0.03008 31 1280 0.9779 0.9856 0.9867 0.5975 0.03828 0.1902 0 + 285/299 17.6G 0.02027 0.01068 0 0.03095 27 1280 0.9801 0.9819 0.9865 0.6047 0.03794 0.1896 0 + 286/299 17.6G 0.02034 0.01091 0 0.03125 38 1280 0.9783 0.9837 0.9873 0.605 0.03793 0.1899 0 + 287/299 17.6G 0.01996 0.01076 0 0.03072 16 1280 0.9778 0.9833 0.9862 0.6029 0.03804 0.1906 0 + 288/299 17.6G 0.01997 0.01118 0 0.03115 14 1280 0.9828 0.9808 0.9885 0.6007 0.03822 0.1905 0 + 289/299 17.6G 0.0206 0.01071 0 0.03131 20 1280 0.9804 0.9814 0.9877 0.6024 0.03812 0.1904 0 + 290/299 17.6G 0.01985 0.01121 0 0.03106 30 1280 0.9792 0.9842 0.9864 0.6028 0.03817 0.1913 0 + 291/299 17.6G 0.0202 0.01186 0 0.03207 48 1280 0.9801 0.987 0.9888 0.6086 0.03795 0.1901 0 + 292/299 17.6G 0.01984 0.01081 0 0.03065 28 1280 0.9797 0.9855 0.9877 0.6066 0.03791 0.1908 0 + 293/299 17.6G 0.01969 0.01028 0 0.02997 16 1280 0.9818 0.9796 0.9861 0.6014 0.038 0.1908 0 + 294/299 17.6G 0.02064 0.01106 0 0.0317 20 1280 0.9774 0.9841 0.9872 0.6026 0.03808 0.1901 0 + 295/299 17.6G 0.01935 0.01071 0 0.03005 28 1280 0.9792 0.9833 0.9877 0.6035 0.03806 0.1904 0 + 296/299 17.6G 0.02014 0.01115 0 0.03128 22 1280 0.9801 0.9842 0.9878 0.5987 0.03825 0.1911 0 + 297/299 17.6G 0.02101 0.01126 0 0.03228 17 1280 0.9819 0.9837 0.9913 0.6021 0.0382 0.1917 0 + 298/299 17.6G 0.02051 0.011 0 0.03151 34 1280 0.9806 0.9842 0.9878 0.6098 0.03796 0.1918 0 + 299/299 17.6G 0.02018 0.01071 0 0.03089 37 1280 0.9792 0.9856 0.9873 0.6151 0.03777 0.1906 0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch0_labels.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch0_labels.jpg new file mode 100644 index 0000000..efda2e0 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch0_labels.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch0_pred.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch0_pred.jpg new file mode 100644 index 0000000..2fd9824 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch0_pred.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch1_labels.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch1_labels.jpg new file mode 100644 index 0000000..fbd15f4 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch1_labels.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch1_pred.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch1_pred.jpg new file mode 100644 index 0000000..02f7eda Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch1_pred.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch2_labels.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch2_labels.jpg new file mode 100644 index 0000000..fe8a1bd Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch2_labels.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch2_pred.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch2_pred.jpg new file mode 100644 index 0000000..07d7290 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/test_batch2_pred.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch0.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch0.jpg new file mode 100644 index 0000000..7092f49 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch0.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch1.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch1.jpg new file mode 100644 index 0000000..52fbdca Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch1.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch2.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch2.jpg new file mode 100644 index 0000000..7b197e4 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch2.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch3.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch3.jpg new file mode 100644 index 0000000..72350c4 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch3.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch4.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch4.jpg new file mode 100644 index 0000000..8b05bc1 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch4.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch5.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch5.jpg new file mode 100644 index 0000000..26bed26 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch5.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch6.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch6.jpg new file mode 100644 index 0000000..e4960bf Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch6.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch7.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch7.jpg new file mode 100644 index 0000000..7154121 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch7.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch8.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch8.jpg new file mode 100644 index 0000000..61c83b5 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch8.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch9.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch9.jpg new file mode 100644 index 0000000..6fe0090 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1921/train_batch9.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/events.out.tfevents.1721207043.node20.625877.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/events.out.tfevents.1721207043.node20.625877.0 new file mode 100644 index 0000000..d2aa2db Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/events.out.tfevents.1721207043.node20.625877.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/opt.yaml new file mode 100644 index 0000000..9457028 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 600 +batch_size: 4 +img_size: +- 1280 +- 720 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 1 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_1922 +total_batch_size: 4 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/results.txt b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/results.txt new file mode 100644 index 0000000..9366719 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/results.txt @@ -0,0 +1,38 @@ + 0/599 4.08G 0.0744 2.557 0 2.631 36 1280 0.0003108 0.01346 6.199e-06 1.09e-06 0.1138 0.3913 0 + 1/599 18.6G 0.07462 0.1106 0 0.1852 35 1280 4.287e-05 0.001857 3.063e-07 8.271e-08 0.1138 0.2233 0 + 2/599 18.6G 0.07449 0.04526 0 0.1197 15 1280 0.0007074 0.03064 2.584e-05 3.719e-06 0.1137 0.223 0 + 3/599 18.6G 0.07349 0.03828 0 0.1118 54 1280 0.000761 0.03296 3.056e-05 4.389e-06 0.1137 0.2307 0 + 4/599 18.6G 0.07419 0.03577 0 0.11 43 1280 0.0007931 0.03435 3.272e-05 4.915e-06 0.1138 0.2377 0 + 5/599 18.6G 0.07305 0.03498 0 0.108 18 1280 0.001064 0.009285 0.0001119 1.327e-05 0.1134 0.2422 0 + 6/599 18.6G 0.07284 0.03585 0 0.1087 47 1280 0 0 0 0 0.1138 0.2455 0 + 7/599 18.6G 0.07268 0.03366 0 0.1063 39 1280 0.01138 0.06082 0.001581 0.0002392 0.1119 0.2493 0 + 8/599 18.6G 0.07216 0.03363 0 0.1058 33 1280 0.01429 0.02878 0.00137 0.0002257 0.1119 0.2443 0 + 9/599 18.6G 0.07125 0.03722 0 0.1085 37 1280 0.01973 0.04828 0.002918 0.0005151 0.1111 0.2475 0 + 10/599 18.6G 0.07113 0.03416 0 0.1053 26 1280 0.004067 0.08171 0.0004976 8.281e-05 0.112 0.2405 0 + 11/599 18.6G 0.07082 0.03466 0 0.1055 29 1280 0.01496 0.04178 0.004971 0.001142 0.1118 0.2386 0 + 12/599 18.6G 0.07092 0.03656 0 0.1075 53 1280 0.01992 0.06175 0.003329 0.0005861 0.1111 0.251 0 + 13/599 18.6G 0.07069 0.03388 0 0.1046 35 1280 0.007824 0.1773 0.001923 0.0003177 0.1104 0.2591 0 + 14/599 18.6G 0.07008 0.03459 0 0.1047 27 1280 0.02216 0.03621 0.004368 0.000747 0.1142 0.2537 0 + 15/599 18.6G 0.0684 0.03111 0 0.0995 40 1280 0.08688 0.1165 0.03008 0.005011 0.1133 0.2522 0 + 16/599 18.6G 0.06743 0.03198 0 0.09941 40 1280 0.0447 0.1003 0.02306 0.005422 0.1092 0.2615 0 + 17/599 18.6G 0.07072 0.03184 0 0.1026 35 1280 0.1279 0.09424 0.03746 0.006383 0.1095 0.2782 0 + 18/599 18.6G 0.07163 0.026 0 0.09762 43 1280 0.1245 0.2419 0.07261 0.01507 0.1093 0.2735 0 + 19/599 18.6G 0.07072 0.02241 0 0.09314 10 1280 0.2349 0.1597 0.097 0.01843 0.1073 0.2724 0 + 20/599 18.6G 0.0698 0.02349 0 0.09329 33 1280 0.2343 0.2521 0.1469 0.02858 0.1057 0.2854 0 + 21/599 18.6G 0.06669 0.0193 0 0.08599 36 1280 0.3542 0.3343 0.2564 0.05542 0.1036 0.2917 0 + 22/599 18.6G 0.06729 0.01915 0 0.08644 39 1280 0.4053 0.3955 0.3308 0.07295 0.1018 0.2935 0 + 23/599 18.6G 0.06411 0.02048 0 0.08459 37 1280 0.2312 0.291 0.1561 0.02891 0.1028 0.3108 0 + 24/599 18.6G 0.06293 0.0206 0 0.08353 59 1280 0.4422 0.5279 0.4201 0.09685 0.09876 0.3109 0 + 25/599 18.6G 0.05995 0.01941 0 0.07936 25 1280 0.5337 0.5172 0.4711 0.1152 0.09585 0.3136 0 + 26/599 18.6G 0.05876 0.01879 0 0.07755 29 1280 0.521 0.5448 0.4447 0.09538 0.09279 0.3172 0 + 27/599 18.6G 0.06001 0.01879 0 0.07879 31 1280 0.5394 0.5743 0.4555 0.1099 0.09204 0.3178 0 + 28/599 18.6G 0.05759 0.01747 0 0.07505 23 1280 0.4539 0.5622 0.3762 0.07945 0.09239 0.3219 0 + 29/599 18.6G 0.05862 0.01779 0 0.07641 44 1280 0.6043 0.5381 0.531 0.1291 0.09131 0.3214 0 + 30/599 18.6G 0.05649 0.01721 0 0.0737 61 1280 0.593 0.6114 0.5713 0.1425 0.08915 0.3281 0 + 31/599 18.6G 0.05546 0.01635 0 0.07181 39 1280 0.6106 0.6442 0.5671 0.14 0.08881 0.3276 0 + 32/599 18.6G 0.05448 0.0175 0 0.07198 35 1280 0.7661 0.6713 0.6976 0.2 0.08681 0.3375 0 + 33/599 18.6G 0.05386 0.01709 0 0.07095 17 1280 0.7292 0.6838 0.6667 0.196 0.08462 0.3292 0 + 34/599 18.6G 0.0532 0.01732 0 0.07052 32 1280 0.776 0.7043 0.7157 0.2053 0.08407 0.3392 0 + 35/599 18.6G 0.05472 0.01566 0 0.07038 26 1280 0.7938 0.7029 0.7225 0.2119 0.08484 0.3297 0 + 36/599 18.6G 0.05072 0.01596 0 0.06668 33 1280 0.8021 0.7168 0.7439 0.2153 0.08302 0.3298 0 + 37/599 18.6G 0.05136 0.01662 0 0.06798 13 1280 0.843 0.7452 0.7813 0.2359 0.08136 0.3283 0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch0.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch0.jpg new file mode 100644 index 0000000..7092f49 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch0.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch1.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch1.jpg new file mode 100644 index 0000000..52fbdca Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch1.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch2.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch2.jpg new file mode 100644 index 0000000..7b197e4 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch2.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch3.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch3.jpg new file mode 100644 index 0000000..72350c4 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch3.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch4.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch4.jpg new file mode 100644 index 0000000..8b05bc1 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch4.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch5.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch5.jpg new file mode 100644 index 0000000..26bed26 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch5.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch6.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch6.jpg new file mode 100644 index 0000000..e4960bf Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch6.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch7.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch7.jpg new file mode 100644 index 0000000..7154121 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch7.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch8.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch8.jpg new file mode 100644 index 0000000..61c83b5 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch8.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch9.jpg b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch9.jpg new file mode 100644 index 0000000..6fe0090 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_1922/train_batch9.jpg differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/events.out.tfevents.1721139072.node20.871494.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/events.out.tfevents.1721139072.node20.871494.0 new file mode 100644 index 0000000..fa916e1 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/events.out.tfevents.1721139072.node20.871494.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/opt.yaml new file mode 100644 index 0000000..8b4cb44 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_193/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: yolo7.pt +cfg: cfg/training/yolov7x.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_193 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/events.out.tfevents.1721139197.node20.1007817.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/events.out.tfevents.1721139197.node20.1007817.0 new file mode 100644 index 0000000..ae8733e Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/events.out.tfevents.1721139197.node20.1007817.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/opt.yaml new file mode 100644 index 0000000..9ae97a7 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_194/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_194 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/events.out.tfevents.1721139471.node20.1313410.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/events.out.tfevents.1721139471.node20.1313410.0 new file mode 100644 index 0000000..50b0346 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/events.out.tfevents.1721139471.node20.1313410.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/opt.yaml new file mode 100644 index 0000000..942ec6e --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_195/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_195 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/events.out.tfevents.1721139717.node20.1587663.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/events.out.tfevents.1721139717.node20.1587663.0 new file mode 100644 index 0000000..dce14f3 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/events.out.tfevents.1721139717.node20.1587663.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/opt.yaml new file mode 100644 index 0000000..ee9feed --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_196/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_196 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/events.out.tfevents.1721140173.node20.2111427.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/events.out.tfevents.1721140173.node20.2111427.0 new file mode 100644 index 0000000..f67e8a0 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/events.out.tfevents.1721140173.node20.2111427.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/opt.yaml new file mode 100644 index 0000000..3a76ce1 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_197/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_197 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/events.out.tfevents.1721140238.node20.2188520.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/events.out.tfevents.1721140238.node20.2188520.0 new file mode 100644 index 0000000..6c99178 Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/events.out.tfevents.1721140238.node20.2188520.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/opt.yaml new file mode 100644 index 0000000..e74d99c --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_198/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/files_dataset1_2024_06_19.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_198 +total_batch_size: 16 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/events.out.tfevents.1721140836.node20.2889139.0 b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/events.out.tfevents.1721140836.node20.2889139.0 new file mode 100644 index 0000000..af63fed Binary files /dev/null and b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/events.out.tfevents.1721140836.node20.2889139.0 differ diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/hyp.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/hyp.yaml new file mode 100644 index 0000000..8d46eb0 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/hyp.yaml @@ -0,0 +1,29 @@ +lr0: 0.01 +lrf: 0.1 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 0.05 +cls: 0.3 +cls_pw: 1.0 +obj: 0.7 +obj_pw: 1.0 +iou_t: 0.2 +anchor_t: 4.0 +fl_gamma: 0.0 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.2 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +paste_in: 0.0 diff --git a/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/opt.yaml b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/opt.yaml new file mode 100644 index 0000000..f300651 --- /dev/null +++ b/yolov7-tracker-example/runs/train/yolov7x-dataset1_2024_06_199/opt.yaml @@ -0,0 +1,41 @@ +dataset: dataset1_2024_06_19 +weights: '' +cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: data/dataset1_2024_06_19/dataset.yaml +hyp: data/hyp.scratch.custom.yaml +epochs: 30 +batch_size: 16 +img_size: +- 1280 +- 1280 +rect: false +resume: false +nosave: false +notest: false +noautoanchor: false +evolve: false +bucket: '' +cache_images: false +image_weights: false +device: '0' +multi_scale: false +single_cls: false +adam: false +sync_bn: false +local_rank: -1 +workers: 8 +project: runs/train +entity: null +name: yolov7x-dataset1_2024_06_19 +exist_ok: false +quad: false +linear_lr: false +label_smoothing: 0.0 +upload_dataset: false +bbox_interval: -1 +save_period: -1 +artifact_alias: latest +world_size: 1 +global_rank: -1 +save_dir: runs/train/yolov7x-dataset1_2024_06_199 +total_batch_size: 16 diff --git a/yolov7-tracker-example/tracker/config_files/dataset1_2024_06_19.yaml b/yolov7-tracker-example/tracker/config_files/dataset1_2024_06_19.yaml new file mode 100644 index 0000000..42d341c --- /dev/null +++ b/yolov7-tracker-example/tracker/config_files/dataset1_2024_06_19.yaml @@ -0,0 +1,46 @@ +# Config file of dataset + +DATASET_ROOT: '/home/sylvain.faure/RN/athle/yolov7-tracker/dataset1_2024_06_19/' +SPLIT: train +CATEGORY_NAMES: + - 'coureur' + +CATEGORY_DICT: + 0: 'coureur' + +CERTAIN_SEQS: + - + +IGNORE_SEQS: # Seqs you want to ignore + - + +YAML_DICT: './data/files_dataset1_2024_06_19.yaml' # NOTE: ONLY for yolo v5 model loader(func DetectMultiBackend) + + +# Pas utilisé : +# +TRACK_EVAL: # If use TrackEval to evaluate, use these configs + 'DISPLAY_LESS_PROGRESS': False + 'GT_FOLDER': '/data/wujiapeng/datasets/VisDrone2019/VisDrone2019/VisDrone2019-MOT-test-dev/annotations' + 'TRACKERS_FOLDER': './tracker/results' + 'SKIP_SPLIT_FOL': True + 'TRACKER_SUB_FOLDER': '' + 'SEQ_INFO': + 'uav0000009_03358_v': 219 + 'uav0000073_00600_v': 328 + 'uav0000073_04464_v': 312 + 'uav0000077_00720_v': 780 + 'uav0000088_00290_v': 296 + 'uav0000119_02301_v': 179 + 'uav0000120_04775_v': 1000 + 'uav0000161_00000_v': 308 + 'uav0000188_00000_v': 260 + 'uav0000201_00000_v': 677 + 'uav0000249_00001_v': 360 + 'uav0000249_02688_v': 244 + 'uav0000297_00000_v': 146 + 'uav0000297_02761_v': 373 + 'uav0000306_00230_v': 420 + 'uav0000355_00001_v': 468 + 'uav0000370_00001_v': 265 + 'GT_LOC_FORMAT': '{gt_folder}/{seq}.txt' diff --git a/yolov7-tracker-example/wandb/latest-run/files/conda-environment.yaml b/yolov7-tracker-example/wandb/latest-run/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/latest-run/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/latest-run/files/config.yaml b/yolov7-tracker-example/wandb/latest-run/files/config.yaml new file mode 100644 index 0000000..81a271a --- /dev/null +++ b/yolov7-tracker-example/wandb/latest-run/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 600 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 1 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1922 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721207045 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 600 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 1 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1922 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg new file mode 100644 index 0000000..61c83b5 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg new file mode 100644 index 0000000..7092f49 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg new file mode 100644 index 0000000..e4960bf Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg new file mode 100644 index 0000000..52fbdca Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg new file mode 100644 index 0000000..72350c4 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg new file mode 100644 index 0000000..6fe0090 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg new file mode 100644 index 0000000..8b05bc1 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg new file mode 100644 index 0000000..7154121 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg new file mode 100644 index 0000000..26bed26 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg new file mode 100644 index 0000000..7b197e4 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg differ diff --git a/yolov7-tracker-example/wandb/latest-run/files/requirements.txt b/yolov7-tracker-example/wandb/latest-run/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/latest-run/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/latest-run/files/wandb-metadata.json b/yolov7-tracker-example/wandb/latest-run/files/wandb-metadata.json new file mode 100644 index 0000000..ac118d5 --- /dev/null +++ b/yolov7-tracker-example/wandb/latest-run/files/wandb-metadata.json @@ -0,0 +1,444 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-17T09:04:06.348085", + "startedAt": "2024-07-17T09:04:05.549801", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "1", + "--device", + "0", + "--batch-size", + "4", + "--epochs", + "600", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train.py", + "codePathLocal": "train.py", + "codePath": "train.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999555555557, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.995, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.208206176757812 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/latest-run/files/wandb-summary.json b/yolov7-tracker-example/wandb/latest-run/files/wandb-summary.json new file mode 100644 index 0000000..cda6767 --- /dev/null +++ b/yolov7-tracker-example/wandb/latest-run/files/wandb-summary.json @@ -0,0 +1 @@ +{"Mosaics": {"_type": "images/separated", "width": 1280, "height": 1280, "format": "jpg", "count": 10, "filenames": ["media/images/Mosaics_0_640206ebad3250ee34ff.jpg", "media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg", "media/images/Mosaics_0_c385c508aa1e392b0aff.jpg", "media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg", "media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg", "media/images/Mosaics_0_ba1cca1832eae754324d.jpg", "media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg", "media/images/Mosaics_0_aa5960f3283394a1df01.jpg", "media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg", "media/images/Mosaics_0_93c322992c6f533f8921.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg", "train_batch3.jpg", "train_batch4.jpg", "train_batch5.jpg", "train_batch6.jpg", "train_batch7.jpg", "train_batch8.jpg", "train_batch9.jpg"]}, "train/box_loss": 0.051355525851249695, "train/obj_loss": 0.016622204333543777, "train/cls_loss": 0.0, "metrics/precision": 0.8429751400532627, "metrics/recall": 0.7451983088009085, "metrics/mAP_0.5": 0.7812800463670515, "metrics/mAP_0.5:0.95": 0.23587393351463942, "val/box_loss": 0.08135789632797241, "val/obj_loss": 0.32825973629951477, "val/cls_loss": 0.0, "x/lr0": 0.0099202926282791, "x/lr1": 0.0099202926282791, "x/lr2": 0.0099202926282791, "_timestamp": 1721209488.4711854, "_runtime": 2442.8777685165405, "_step": 37} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/latest-run/run-hvbj8jeq.wandb b/yolov7-tracker-example/wandb/latest-run/run-hvbj8jeq.wandb new file mode 100644 index 0000000..41e0831 Binary files /dev/null and b/yolov7-tracker-example/wandb/latest-run/run-hvbj8jeq.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/config.yaml new file mode 100644 index 0000000..cc28d46 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_19 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721138660 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_19 + total_batch_size: 16 +data_dict: + desc: null + value: + train: ../dataset1_2024_06_19/liste_images.txt + val: ../dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/wandb-metadata.json new file mode 100644 index 0000000..8e04b3e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:04:21.724930", + "startedAt": "2024-07-16T14:04:20.834538", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999611111112, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.11685562133789 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/wandb-summary.json new file mode 100644 index 0000000..8cc12bf --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 19}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/run-nck4wazn.wandb b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/run-nck4wazn.wandb new file mode 100644 index 0000000..03629ec Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_140420-nck4wazn/run-nck4wazn.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/config.yaml new file mode 100644 index 0000000..78f5bd5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_192 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721138883 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_192 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/wandb-metadata.json new file mode 100644 index 0000000..cca423b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:08:04.432443", + "startedAt": "2024-07-16T14:08:03.454196", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9996388888894, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.117130279541016 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/wandb-summary.json new file mode 100644 index 0000000..5118b50 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 15}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/run-0o2g46rs.wandb b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/run-0o2g46rs.wandb new file mode 100644 index 0000000..b245434 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_140803-0o2g46rs/run-0o2g46rs.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/config.yaml new file mode 100644 index 0000000..f301f19 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: yolo7.pt +cfg: + desc: null + value: cfg/training/yolov7x.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_193 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721139073 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: yolo7.pt + cfg: cfg/training/yolov7x.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_193 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/wandb-metadata.json new file mode 100644 index 0000000..12316e0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/wandb-metadata.json @@ -0,0 +1,439 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:11:14.479802", + "startedAt": "2024-07-16T14:11:13.568078", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "--cfg", + "cfg/training/yolov7x.yaml", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9996250000013, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.994, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.005, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.117389678955078 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/wandb-summary.json new file mode 100644 index 0000000..74ae82c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 6}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/run-no6xv9bq.wandb b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/run-no6xv9bq.wandb new file mode 100644 index 0000000..5194d5a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_141113-no6xv9bq/run-no6xv9bq.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/config.yaml new file mode 100644 index 0000000..b934207 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_194 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721139199 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_194 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/wandb-metadata.json new file mode 100644 index 0000000..931f564 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:13:20.189112", + "startedAt": "2024-07-16T14:13:19.269207", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9962638888883, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.117572784423828 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/wandb-summary.json new file mode 100644 index 0000000..e32ca1c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/run-fosqsefm.wandb b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/run-fosqsefm.wandb new file mode 100644 index 0000000..2bb764d Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_141319-fosqsefm/run-fosqsefm.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/config.yaml new file mode 100644 index 0000000..ce40ec5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_195 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721139473 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_195 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/wandb-metadata.json new file mode 100644 index 0000000..74c1278 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:17:54.001110", + "startedAt": "2024-07-16T14:17:53.050762", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999652777779, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.004, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.11792755126953 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/wandb-summary.json new file mode 100644 index 0000000..e32ca1c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/run-2n0pgejj.wandb b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/run-2n0pgejj.wandb new file mode 100644 index 0000000..9db35cb Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_141753-2n0pgejj/run-2n0pgejj.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/config.yaml new file mode 100644 index 0000000..f1d81eb --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_196 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721139718 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_196 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/wandb-metadata.json new file mode 100644 index 0000000..ec24ab6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:21:59.982333", + "startedAt": "2024-07-16T14:21:58.907584", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9996666666666, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.11819839477539 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/wandb-summary.json new file mode 100644 index 0000000..5118b50 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 15}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/run-k1gbviig.wandb b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/run-k1gbviig.wandb new file mode 100644 index 0000000..c1cc2af Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_142158-k1gbviig/run-k1gbviig.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/config.yaml new file mode 100644 index 0000000..c0847fd --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_197 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721140175 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_197 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/wandb-metadata.json new file mode 100644 index 0000000..f611086 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:29:36.344372", + "startedAt": "2024-07-16T14:29:35.519825", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.99951388889, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.995, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.118839263916016 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/wandb-summary.json new file mode 100644 index 0000000..e32ca1c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/run-r7okrreb.wandb b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/run-r7okrreb.wandb new file mode 100644 index 0000000..410ae1c Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_142935-r7okrreb/run-r7okrreb.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/config.yaml new file mode 100644 index 0000000..a78ea6b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/files_dataset1_2024_06_19.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_198 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721140239 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/files_dataset1_2024_06_19.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_198 + total_batch_size: 16 +data_dict: + desc: null + value: + train: dataset1_2024_06_19/liste_images.txt + val: dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/wandb-metadata.json new file mode 100644 index 0000000..e175d3c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:30:40.771797", + "startedAt": "2024-07-16T14:30:39.952157", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/files_dataset1_2024_06_19.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999555555556, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.118927001953125 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/wandb-summary.json new file mode 100644 index 0000000..018b406 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 12}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/run-menqmayl.wandb b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/run-menqmayl.wandb new file mode 100644 index 0000000..866c9fc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_143039-menqmayl/run-menqmayl.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/config.yaml new file mode 100644 index 0000000..c10cea6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_199 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721140837 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_199 + total_batch_size: 16 +data_dict: + desc: null + value: + train: ../data/dataset1_2024_06_19/liste_images.txt + val: ../data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/wandb-metadata.json new file mode 100644 index 0000000..75ad764 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:40:38.495980", + "startedAt": "2024-07-16T14:40:37.621165", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999722222221, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.119705200195312 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/wandb-summary.json new file mode 100644 index 0000000..0724bd7 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 14}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/run-3srlnar2.wandb b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/run-3srlnar2.wandb new file mode 100644 index 0000000..993736f Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_144037-3srlnar2/run-3srlnar2.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/config.yaml new file mode 100644 index 0000000..f84b0d6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1910 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721140931 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1910 + total_batch_size: 16 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/wandb-metadata.json new file mode 100644 index 0000000..8752b7a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:42:12.554534", + "startedAt": "2024-07-16T14:42:11.635108", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999652777778, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.11981964111328 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/wandb-summary.json new file mode 100644 index 0000000..e32ca1c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/run-7vq0a3th.wandb b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/run-7vq0a3th.wandb new file mode 100644 index 0000000..08c9a19 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_144211-7vq0a3th/run-7vq0a3th.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/config.yaml new file mode 100644 index 0000000..fbe2f74 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1911 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721141214 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1911 + total_batch_size: 16 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/wandb-metadata.json new file mode 100644 index 0000000..87f12a2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:46:55.321688", + "startedAt": "2024-07-16T14:46:54.391566", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.99976388889, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.995, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.120174407958984 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/wandb-summary.json new file mode 100644 index 0000000..e32ca1c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/run-4knhs1fs.wandb b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/run-4knhs1fs.wandb new file mode 100644 index 0000000..c7f3cc2 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_144654-4knhs1fs/run-4knhs1fs.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/config.yaml new file mode 100644 index 0000000..c639f61 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1912 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721141282 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1912 + total_batch_size: 16 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/wandb-metadata.json new file mode 100644 index 0000000..bbf9a29 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:48:03.621072", + "startedAt": "2024-07-16T14:48:02.735626", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999694444445, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.12027359008789 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/wandb-summary.json new file mode 100644 index 0000000..e32ca1c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/run-qi08tj4h.wandb b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/run-qi08tj4h.wandb new file mode 100644 index 0000000..fea3811 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_144802-qi08tj4h/run-qi08tj4h.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/config.yaml new file mode 100644 index 0000000..b7a71dc --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1913 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721141418 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1913 + total_batch_size: 16 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/wandb-metadata.json new file mode 100644 index 0000000..5065ac1 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:50:20.108234", + "startedAt": "2024-07-16T14:50:18.684277", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9995000000013, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.12045669555664 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/wandb-summary.json new file mode 100644 index 0000000..26a909c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 17}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/run-ih758ygv.wandb b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/run-ih758ygv.wandb new file mode 100644 index 0000000..175fe42 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_145018-ih758ygv/run-ih758ygv.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/config.yaml new file mode 100644 index 0000000..52c946b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 16 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1914 +total_batch_size: + desc: null + value: 16 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721141579 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 16 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1914 + total_batch_size: 16 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/wandb-metadata.json new file mode 100644 index 0000000..ac3cda5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:52:59.991059", + "startedAt": "2024-07-16T14:52:59.192028", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "8", + "--device", + "0", + "--batch-size", + "16", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999611111111, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.007, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.120738983154297 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/wandb-summary.json new file mode 100644 index 0000000..c9ee7fb --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 33}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/run-kw0ayz3t.wandb b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/run-kw0ayz3t.wandb new file mode 100644 index 0000000..189d1e1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_145259-kw0ayz3t/run-kw0ayz3t.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/config.yaml new file mode 100644 index 0000000..bcb914e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 1280 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 1 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1915 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721141681 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 4 + img_size: + - 1280 + - 1280 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 1 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1915 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/wandb-metadata.json new file mode 100644 index 0000000..cb2a436 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:54:42.495902", + "startedAt": "2024-07-16T14:54:41.599965", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "1", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "1280", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9995000000017, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.120864868164062 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/wandb-summary.json new file mode 100644 index 0000000..e776ad5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 23}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/run-zsp3dglj.wandb b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/run-zsp3dglj.wandb new file mode 100644 index 0000000..3f815b5 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_145441-zsp3dglj/run-zsp3dglj.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/config.yaml new file mode 100644 index 0000000..b36bf72 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1916 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721141820 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1916 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/wandb-metadata.json new file mode 100644 index 0000000..d9a2b01 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/wandb-metadata.json @@ -0,0 +1,440 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T14:57:01.699441", + "startedAt": "2024-07-16T14:57:00.638749", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.8911805555567, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2694.896, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.995, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.121044158935547 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/wandb-summary.json new file mode 100644 index 0000000..e776ad5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 23}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/run-ll0qjscz.wandb b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/run-ll0qjscz.wandb new file mode 100644 index 0000000..82e79a2 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_145700-ll0qjscz/run-ll0qjscz.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/config.yaml new file mode 100644 index 0000000..e720fb3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1917 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721158791 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1917 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/wandb-metadata.json new file mode 100644 index 0000000..47e1e9b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/wandb-metadata.json @@ -0,0 +1,440 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T19:39:52.533402", + "startedAt": "2024-07-16T19:39:51.648612", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.998569444445, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.995, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.004, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.004, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.004, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.14254379272461 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/wandb-summary.json new file mode 100644 index 0000000..ea21b21 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 22}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/run-q74ebf67.wandb b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/run-q74ebf67.wandb new file mode 100644 index 0000000..f5cba5c Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_193951-q74ebf67/run-q74ebf67.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/config.yaml new file mode 100644 index 0000000..024fee6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 8 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1918 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721158949 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 8 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1918 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/wandb-metadata.json new file mode 100644 index 0000000..d519b0b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/wandb-metadata.json @@ -0,0 +1,440 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T19:42:30.276263", + "startedAt": "2024-07-16T19:42:29.477753", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9997916666675, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.994, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.142791748046875 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/wandb-summary.json new file mode 100644 index 0000000..c3ad6a3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 21}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/run-v7v7xsap.wandb b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/run-v7v7xsap.wandb new file mode 100644 index 0000000..04e7544 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_194229-v7v7xsap/run-v7v7xsap.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/config.yaml new file mode 100644 index 0000000..1665647 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 1 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1919 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721159063 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 1 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1919 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/wandb-metadata.json new file mode 100644 index 0000000..c1aa44a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T19:44:23.997136", + "startedAt": "2024-07-16T19:44:23.110895", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "1", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999708333334, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.14297866821289 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/wandb-summary.json new file mode 100644 index 0000000..c3ad6a3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 21}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/run-twyd9b25.wandb b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/run-twyd9b25.wandb new file mode 100644 index 0000000..38cdda8 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_194423-twyd9b25/run-twyd9b25.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/config.yaml new file mode 100644 index 0000000..bf02294 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 30 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 1 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1920 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721159514 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 30 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 1 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1920 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/wandb-metadata.json new file mode 100644 index 0000000..f7fb122 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T19:51:55.113961", + "startedAt": "2024-07-16T19:51:54.253890", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "1", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train_aux.py", + "codePathLocal": "train_aux.py", + "codePath": "train_aux.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9994027777784, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.996, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.003, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.143558502197266 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/wandb-summary.json new file mode 100644 index 0000000..30fe69f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 20}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/run-y256y1jk.wandb b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/run-y256y1jk.wandb new file mode 100644 index 0000000..e9f5a16 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195154-y256y1jk/run-y256y1jk.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/config.yaml b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/config.yaml new file mode 100644 index 0000000..422b93f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/config.yaml @@ -0,0 +1,266 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 300 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 1 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1921 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + bounding_box/class_labels: + Bounding Box Debugger/Images_wandb_delimeter_predictions: + type: bounding_box/class_labels + key: Bounding Box Debugger/Images_wandb_delimeter_predictions + value: + '0': coureur + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721159652 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 2 + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 300 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 1 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1921 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_119_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_149_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_179_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_209_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_239_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_269_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_299_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_29_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_59_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_1c47f2a228bd14e94ade.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_1c47f2a228bd14e94ade.png new file mode 100644 index 0000000..2b985d1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_1c47f2a228bd14e94ade.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_24a487d7d80d58dcfdc1.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_24a487d7d80d58dcfdc1.png new file mode 100644 index 0000000..fdf5f45 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_24a487d7d80d58dcfdc1.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_3581752cbd431a673691.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_3581752cbd431a673691.png new file mode 100644 index 0000000..3d15611 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_3581752cbd431a673691.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_4e5a8fc5e68861914fb0.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_4e5a8fc5e68861914fb0.png new file mode 100644 index 0000000..c85a9cc Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_4e5a8fc5e68861914fb0.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_662cd021cd32cbc8c093.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_662cd021cd32cbc8c093.png new file mode 100644 index 0000000..b5db103 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_662cd021cd32cbc8c093.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_7e88c734695d22f900df.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_7e88c734695d22f900df.png new file mode 100644 index 0000000..31c0ac7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_7e88c734695d22f900df.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_85f530ea2196da266e81.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_85f530ea2196da266e81.png new file mode 100644 index 0000000..1539f61 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_85f530ea2196da266e81.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_b625f699310d19aae5fa.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_b625f699310d19aae5fa.png new file mode 100644 index 0000000..f70f663 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_b625f699310d19aae5fa.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_bf799802c674bf6fc7f8.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_bf799802c674bf6fc7f8.png new file mode 100644 index 0000000..750936e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_bf799802c674bf6fc7f8.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_c6f5583641ddfe6d3953.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_c6f5583641ddfe6d3953.png new file mode 100644 index 0000000..92b2419 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_c6f5583641ddfe6d3953.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_c828978f6f65f5b49a56.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_c828978f6f65f5b49a56.png new file mode 100644 index 0000000..331d201 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_c828978f6f65f5b49a56.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_d33ba85aec0624254e66.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_d33ba85aec0624254e66.png new file mode 100644 index 0000000..c7cf2e3 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_d33ba85aec0624254e66.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_dab42e0094e3ed994e7b.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_dab42e0094e3ed994e7b.png new file mode 100644 index 0000000..2304e2a Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_dab42e0094e3ed994e7b.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_e394c39196a36b3a5f4f.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_e394c39196a36b3a5f4f.png new file mode 100644 index 0000000..3437b17 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_e394c39196a36b3a5f4f.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_fd258b53ad0b8cf98574.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_fd258b53ad0b8cf98574.png new file mode 100644 index 0000000..a93d3ed Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_fd258b53ad0b8cf98574.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_ff1bb1a42b91fec39e39.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_ff1bb1a42b91fec39e39.png new file mode 100644 index 0000000..aaff9fd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Bounding Box Debugger/Images_89_ff1bb1a42b91fec39e39.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg new file mode 100644 index 0000000..61c83b5 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg new file mode 100644 index 0000000..7092f49 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg new file mode 100644 index 0000000..e4960bf Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg new file mode 100644 index 0000000..52fbdca Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg new file mode 100644 index 0000000..72350c4 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg new file mode 100644 index 0000000..6fe0090 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg new file mode 100644 index 0000000..8b05bc1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg new file mode 100644 index 0000000..7154121 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg new file mode 100644 index 0000000..26bed26 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg new file mode 100644 index 0000000..7b197e4 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_4908e72edc14d63f51d3.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_4908e72edc14d63f51d3.png new file mode 100644 index 0000000..3977a4e Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_4908e72edc14d63f51d3.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_4acdd545cdbaf615d5b6.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_4acdd545cdbaf615d5b6.png new file mode 100644 index 0000000..45605b7 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_4acdd545cdbaf615d5b6.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_515b1647d76eaf2c14ae.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_515b1647d76eaf2c14ae.png new file mode 100644 index 0000000..551e27c Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_515b1647d76eaf2c14ae.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_7d0bfc43cd4d084dd48c.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_7d0bfc43cd4d084dd48c.png new file mode 100644 index 0000000..33cc0ca Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_7d0bfc43cd4d084dd48c.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_eea82dce1f8de10e1c6c.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_eea82dce1f8de10e1c6c.png new file mode 100644 index 0000000..2477a50 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_eea82dce1f8de10e1c6c.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_fc8dff1a42b696e8a5e3.png b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_fc8dff1a42b696e8a5e3.png new file mode 100644 index 0000000..f1ce4e0 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Results_300_fc8dff1a42b696e8a5e3.png differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_05ef2be2e526db68e162.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_05ef2be2e526db68e162.jpg new file mode 100644 index 0000000..fe8a1bd Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_05ef2be2e526db68e162.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_24eb1c0a6b11a3777d1f.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_24eb1c0a6b11a3777d1f.jpg new file mode 100644 index 0000000..07d7290 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_24eb1c0a6b11a3777d1f.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_3794b186869368d9762f.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_3794b186869368d9762f.jpg new file mode 100644 index 0000000..efda2e0 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_3794b186869368d9762f.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_68af8ffe129b7cb60438.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_68af8ffe129b7cb60438.jpg new file mode 100644 index 0000000..2fd9824 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_68af8ffe129b7cb60438.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_c48a8e3f715820558413.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_c48a8e3f715820558413.jpg new file mode 100644 index 0000000..02f7eda Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_c48a8e3f715820558413.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_cb14af111389257bf44a.jpg b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_cb14af111389257bf44a.jpg new file mode 100644 index 0000000..fbd15f4 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/images/Validation_299_cb14af111389257bf44a.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_010e46aad1d67fb63732.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_010e46aad1d67fb63732.boxes2D.json new file mode 100644 index 0000000..a3de565 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_010e46aad1d67fb63732.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 338.75, "minY": 215.625, "maxX": 365.25, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.410", "scores": {"class_score": 0.40966796875}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 250.5, "maxX": 602.0, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40576171875}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 240.75, "maxX": 556.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.402099609375}, "domain": "pixel"}, {"position": {"minX": 297.5, "minY": 207.75, "maxX": 315.0, "maxY": 235.25}, "class_id": 0, "box_caption": "coureur 0.356", "scores": {"class_score": 0.356201171875}, "domain": "pixel"}, {"position": {"minX": 454.0, "minY": 233.75, "maxX": 470.5, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.352294921875}, "domain": "pixel"}, {"position": {"minX": 225.625, "minY": 199.375, "maxX": 244.875, "maxY": 226.625}, "class_id": 0, "box_caption": "coureur 0.313", "scores": {"class_score": 0.312744140625}, "domain": "pixel"}, {"position": {"minX": 392.5, "minY": 221.25, "maxX": 412.0, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.307", "scores": {"class_score": 0.307373046875}, "domain": "pixel"}, {"position": {"minX": 167.25, "minY": 195.5, "maxX": 182.5, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.306", "scores": {"class_score": 0.306396484375}, "domain": "pixel"}, {"position": {"minX": 621.0, "minY": 218.75, "maxX": 634.0, "maxY": 242.0}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.045745849609375}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 200.5, "maxX": 250.0, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0077056884765625}, "domain": "pixel"}, {"position": {"minX": 250.75, "minY": 200.0, "maxX": 265.75, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007190704345703125}, "domain": "pixel"}, {"position": {"minX": 145.25, "minY": 187.375, "maxX": 163.25, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006305694580078125}, "domain": "pixel"}, {"position": {"minX": 243.375, "minY": 200.375, "maxX": 260.0, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004848480224609375}, "domain": "pixel"}, {"position": {"minX": 617.0, "minY": 219.25, "maxX": 631.0, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004703521728515625}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 229.5, "maxX": 411.5, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025310516357421875}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 223.25, "maxX": 416.75, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002422332763671875}, "domain": "pixel"}, {"position": {"minX": 146.875, "minY": 194.25, "maxX": 165.125, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021877288818359375}, "domain": "pixel"}, {"position": {"minX": 143.25, "minY": 190.375, "maxX": 159.0, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018787384033203125}, "domain": "pixel"}, {"position": {"minX": 625.0, "minY": 224.375, "maxX": 639.0, "maxY": 245.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018625259399414062}, "domain": "pixel"}, {"position": {"minX": 218.125, "minY": 200.5, "maxX": 236.625, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014171600341796875}, "domain": "pixel"}, {"position": {"minX": 165.75, "minY": 189.375, "maxX": 182.5, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011653900146484375}, "domain": "pixel"}, {"position": {"minX": 620.5, "minY": 211.375, "maxX": 635.5, "maxY": 239.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010156631469726562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_108eaa5142d32292089c.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_108eaa5142d32292089c.boxes2D.json new file mode 100644 index 0000000..e51e92b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_108eaa5142d32292089c.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 586.5, "minY": 250.25, "maxX": 607.5, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.405029296875}, "domain": "pixel"}, {"position": {"minX": 347.25, "minY": 217.125, "maxX": 363.75, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.4013671875}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 241.25, "maxX": 550.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.388916015625}, "domain": "pixel"}, {"position": {"minX": 453.25, "minY": 233.125, "maxX": 478.25, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.381103515625}, "domain": "pixel"}, {"position": {"minX": 302.5, "minY": 208.125, "maxX": 322.5, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.358642578125}, "domain": "pixel"}, {"position": {"minX": 172.625, "minY": 196.25, "maxX": 188.875, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.290", "scores": {"class_score": 0.289794921875}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 226.375, "maxX": 413.0, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.274", "scores": {"class_score": 0.274169921875}, "domain": "pixel"}, {"position": {"minX": 236.125, "minY": 199.0, "maxX": 255.125, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.268", "scores": {"class_score": 0.267578125}, "domain": "pixel"}, {"position": {"minX": 243.875, "minY": 202.125, "maxX": 262.75, "maxY": 227.625}, "class_id": 0, "box_caption": "coureur 0.058", "scores": {"class_score": 0.0577392578125}, "domain": "pixel"}, {"position": {"minX": 168.0, "minY": 194.125, "maxX": 184.75, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.0272064208984375}, "domain": "pixel"}, {"position": {"minX": 248.75, "minY": 206.625, "maxX": 265.25, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.022735595703125}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 223.0, "maxX": 411.75, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00745391845703125}, "domain": "pixel"}, {"position": {"minX": 398.75, "minY": 222.625, "maxX": 411.25, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005207061767578125}, "domain": "pixel"}, {"position": {"minX": 232.625, "minY": 200.0, "maxX": 249.625, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005023956298828125}, "domain": "pixel"}, {"position": {"minX": 298.25, "minY": 206.0, "maxX": 317.25, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002902984619140625}, "domain": "pixel"}, {"position": {"minX": 175.75, "minY": 195.625, "maxX": 191.75, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027332305908203125}, "domain": "pixel"}, {"position": {"minX": 308.25, "minY": 208.125, "maxX": 328.25, "maxY": 233.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023593902587890625}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 228.25, "maxX": 411.0, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014772415161132812}, "domain": "pixel"}, {"position": {"minX": 501.5, "minY": 210.375, "maxX": 515.0, "maxY": 234.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001232147216796875}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 244.5, "maxX": 613.5, "maxY": 283.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011758804321289062}, "domain": "pixel"}, {"position": {"minX": 592.0, "minY": 250.25, "maxX": 615.0, "maxY": 278.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011606216430664062}, "domain": "pixel"}, {"position": {"minX": 255.125, "minY": 206.875, "maxX": 272.25, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011043548583984375}, "domain": "pixel"}, {"position": {"minX": 237.625, "minY": 204.0, "maxX": 258.75, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001018524169921875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_2254b7cce7e6182f0596.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_2254b7cce7e6182f0596.boxes2D.json new file mode 100644 index 0000000..32c3d1a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_2254b7cce7e6182f0596.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 520.5, "minY": 238.5, "maxX": 545.5, "maxY": 268.25}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.40234375}, "domain": "pixel"}, {"position": {"minX": 578.0, "minY": 251.25, "maxX": 599.0, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.37890625}, "domain": "pixel"}, {"position": {"minX": 334.75, "minY": 216.5, "maxX": 355.25, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.3671875}, "domain": "pixel"}, {"position": {"minX": 447.75, "minY": 233.875, "maxX": 471.25, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.366943359375}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 223.25, "maxX": 406.75, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.343017578125}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 210.0, "maxX": 311.75, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.329", "scores": {"class_score": 0.328857421875}, "domain": "pixel"}, {"position": {"minX": 220.0, "minY": 204.5, "maxX": 236.5, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.306", "scores": {"class_score": 0.305908203125}, "domain": "pixel"}, {"position": {"minX": 156.5, "minY": 197.5, "maxX": 173.0, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.170", "scores": {"class_score": 0.1697998046875}, "domain": "pixel"}, {"position": {"minX": 161.0, "minY": 200.25, "maxX": 177.0, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.068", "scores": {"class_score": 0.06756591796875}, "domain": "pixel"}, {"position": {"minX": 216.75, "minY": 201.5, "maxX": 233.25, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.036", "scores": {"class_score": 0.035797119140625}, "domain": "pixel"}, {"position": {"minX": 223.0, "minY": 203.375, "maxX": 241.0, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.028", "scores": {"class_score": 0.02752685546875}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 200.75, "maxX": 188.0, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0158538818359375}, "domain": "pixel"}, {"position": {"minX": 178.375, "minY": 198.0, "maxX": 194.375, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0127105712890625}, "domain": "pixel"}, {"position": {"minX": 151.875, "minY": 194.75, "maxX": 169.625, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0079345703125}, "domain": "pixel"}, {"position": {"minX": 636.5, "minY": 230.25, "maxX": 651.5, "maxY": 255.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003326416015625}, "domain": "pixel"}, {"position": {"minX": 228.75, "minY": 203.875, "maxX": 246.0, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026912689208984375}, "domain": "pixel"}, {"position": {"minX": 155.5, "minY": 203.25, "maxX": 173.5, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001995086669921875}, "domain": "pixel"}, {"position": {"minX": 219.5, "minY": 211.5, "maxX": 235.0, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001995086669921875}, "domain": "pixel"}, {"position": {"minX": 184.125, "minY": 192.75, "maxX": 200.875, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00177001953125}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 218.875, "maxX": 409.25, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015707015991210938}, "domain": "pixel"}, {"position": {"minX": 328.25, "minY": 209.375, "maxX": 360.25, "maxY": 251.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015277862548828125}, "domain": "pixel"}, {"position": {"minX": 441.25, "minY": 228.0, "maxX": 474.25, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014371871948242188}, "domain": "pixel"}, {"position": {"minX": 518.0, "minY": 230.625, "maxX": 550.0, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00135040283203125}, "domain": "pixel"}, {"position": {"minX": 440.75, "minY": 232.75, "maxX": 465.25, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010423660278320312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_2ba0eca905624ad9ed01.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_2ba0eca905624ad9ed01.boxes2D.json new file mode 100644 index 0000000..f00b74e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_2ba0eca905624ad9ed01.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 572.5, "minY": 245.25, "maxX": 587.5, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.4033203125}, "domain": "pixel"}, {"position": {"minX": 330.5, "minY": 212.25, "maxX": 352.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.386962890625}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 229.375, "maxX": 464.0, "maxY": 257.25}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.378662109375}, "domain": "pixel"}, {"position": {"minX": 223.5, "minY": 193.75, "maxX": 242.5, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.365966796875}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 237.75, "maxX": 532.5, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.355", "scores": {"class_score": 0.355224609375}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 204.5, "maxX": 308.75, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.353515625}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 217.0, "maxX": 400.75, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.279", "scores": {"class_score": 0.27880859375}, "domain": "pixel"}, {"position": {"minX": 165.25, "minY": 194.25, "maxX": 180.75, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.048", "scores": {"class_score": 0.04791259765625}, "domain": "pixel"}, {"position": {"minX": 170.125, "minY": 198.125, "maxX": 183.375, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01241302490234375}, "domain": "pixel"}, {"position": {"minX": 226.0, "minY": 197.125, "maxX": 246.25, "maxY": 224.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00786590576171875}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 221.375, "maxX": 399.0, "maxY": 241.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00646209716796875}, "domain": "pixel"}, {"position": {"minX": 149.25, "minY": 190.5, "maxX": 167.0, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003223419189453125}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 215.5, "maxX": 406.0, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002910614013671875}, "domain": "pixel"}, {"position": {"minX": 155.375, "minY": 190.5, "maxX": 184.125, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023326873779296875}, "domain": "pixel"}, {"position": {"minX": 290.0, "minY": 200.25, "maxX": 306.5, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017528533935546875}, "domain": "pixel"}, {"position": {"minX": 214.25, "minY": 188.75, "maxX": 235.25, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016736984252929688}, "domain": "pixel"}, {"position": {"minX": 377.75, "minY": 217.25, "maxX": 395.75, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010929107666015625}, "domain": "pixel"}, {"position": {"minX": 215.375, "minY": 196.0, "maxX": 235.875, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010280609130859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_4a424d3f44ed91746656.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_4a424d3f44ed91746656.boxes2D.json new file mode 100644 index 0000000..c672b1f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_4a424d3f44ed91746656.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 218.0, "minY": 200.625, "maxX": 241.0, "maxY": 225.375}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.408935546875}, "domain": "pixel"}, {"position": {"minX": 288.25, "minY": 208.875, "maxX": 307.25, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.389404296875}, "domain": "pixel"}, {"position": {"minX": 520.0, "minY": 238.75, "maxX": 543.0, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.388671875}, "domain": "pixel"}, {"position": {"minX": 443.75, "minY": 233.5, "maxX": 468.25, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.37939453125}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 216.875, "maxX": 355.75, "maxY": 242.375}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 249.75, "maxX": 596.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.375244140625}, "domain": "pixel"}, {"position": {"minX": 385.5, "minY": 220.5, "maxX": 403.0, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.337", "scores": {"class_score": 0.3369140625}, "domain": "pixel"}, {"position": {"minX": 156.25, "minY": 197.25, "maxX": 171.75, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.337", "scores": {"class_score": 0.336669921875}, "domain": "pixel"}, {"position": {"minX": 223.375, "minY": 202.625, "maxX": 242.625, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0215301513671875}, "domain": "pixel"}, {"position": {"minX": 153.0, "minY": 192.375, "maxX": 169.5, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0089111328125}, "domain": "pixel"}, {"position": {"minX": 438.75, "minY": 228.5, "maxX": 471.75, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034008026123046875}, "domain": "pixel"}, {"position": {"minX": 159.75, "minY": 195.5, "maxX": 174.5, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027866363525390625}, "domain": "pixel"}, {"position": {"minX": 214.625, "minY": 204.125, "maxX": 233.625, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001888275146484375}, "domain": "pixel"}, {"position": {"minX": 327.0, "minY": 210.25, "maxX": 360.0, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018520355224609375}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 209.625, "maxX": 403.5, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016918182373046875}, "domain": "pixel"}, {"position": {"minX": 154.625, "minY": 202.625, "maxX": 171.375, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016880035400390625}, "domain": "pixel"}, {"position": {"minX": 470.0, "minY": 205.875, "maxX": 485.0, "maxY": 232.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016565322875976562}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 249.125, "maxX": 591.0, "maxY": 278.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014219284057617188}, "domain": "pixel"}, {"position": {"minX": 212.125, "minY": 192.625, "maxX": 248.375, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010461807250976562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_581964de0c31e2a1a60d.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_581964de0c31e2a1a60d.boxes2D.json new file mode 100644 index 0000000..79a9a65 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_581964de0c31e2a1a60d.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 587.0, "minY": 252.5, "maxX": 606.0, "maxY": 278.5}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.439453125}, "domain": "pixel"}, {"position": {"minX": 345.25, "minY": 217.75, "maxX": 364.25, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40576171875}, "domain": "pixel"}, {"position": {"minX": 454.75, "minY": 233.125, "maxX": 479.75, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.396728515625}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 241.5, "maxX": 550.5, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.390380859375}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 207.625, "maxX": 322.0, "maxY": 236.125}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.3896484375}, "domain": "pixel"}, {"position": {"minX": 228.75, "minY": 199.25, "maxX": 247.75, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.347", "scores": {"class_score": 0.346923828125}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 226.875, "maxX": 414.5, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.264", "scores": {"class_score": 0.264404296875}, "domain": "pixel"}, {"position": {"minX": 166.75, "minY": 196.875, "maxX": 182.75, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.188", "scores": {"class_score": 0.1875}, "domain": "pixel"}, {"position": {"minX": 122.5, "minY": 185.75, "maxX": 141.0, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.032", "scores": {"class_score": 0.032257080078125}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 223.5, "maxX": 412.5, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007007598876953125}, "domain": "pixel"}, {"position": {"minX": 155.875, "minY": 194.625, "maxX": 177.875, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006397247314453125}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 221.125, "maxX": 417.0, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00612640380859375}, "domain": "pixel"}, {"position": {"minX": 225.25, "minY": 198.25, "maxX": 243.0, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005893707275390625}, "domain": "pixel"}, {"position": {"minX": 171.75, "minY": 203.875, "maxX": 186.0, "maxY": 226.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024127960205078125}, "domain": "pixel"}, {"position": {"minX": 157.75, "minY": 194.0, "maxX": 187.25, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014696121215820312}, "domain": "pixel"}, {"position": {"minX": 402.25, "minY": 224.25, "maxX": 422.75, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012483596801757812}, "domain": "pixel"}, {"position": {"minX": 120.125, "minY": 191.5, "maxX": 137.375, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012197494506835938}, "domain": "pixel"}, {"position": {"minX": 451.0, "minY": 226.0, "maxX": 485.0, "maxY": 267.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011014938354492188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_5822045f61960ce9ef56.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_5822045f61960ce9ef56.boxes2D.json new file mode 100644 index 0000000..da432e3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_5822045f61960ce9ef56.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 456.5, "minY": 233.5, "maxX": 480.5, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.41796875}, "domain": "pixel"}, {"position": {"minX": 588.5, "minY": 252.625, "maxX": 604.5, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.405517578125}, "domain": "pixel"}, {"position": {"minX": 345.75, "minY": 214.875, "maxX": 367.25, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.39453125}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 242.125, "maxX": 551.0, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.38330078125}, "domain": "pixel"}, {"position": {"minX": 304.25, "minY": 207.875, "maxX": 322.25, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.376953125}, "domain": "pixel"}, {"position": {"minX": 233.75, "minY": 198.0, "maxX": 253.75, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.365966796875}, "domain": "pixel"}, {"position": {"minX": 400.0, "minY": 226.375, "maxX": 413.5, "maxY": 245.875}, "class_id": 0, "box_caption": "coureur 0.286", "scores": {"class_score": 0.28564453125}, "domain": "pixel"}, {"position": {"minX": 173.375, "minY": 196.25, "maxX": 191.875, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.148", "scores": {"class_score": 0.1475830078125}, "domain": "pixel"}, {"position": {"minX": 114.5, "minY": 191.875, "maxX": 133.625, "maxY": 214.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00791168212890625}, "domain": "pixel"}, {"position": {"minX": 395.25, "minY": 222.875, "maxX": 412.25, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006656646728515625}, "domain": "pixel"}, {"position": {"minX": 184.5, "minY": 196.75, "maxX": 203.0, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006244659423828125}, "domain": "pixel"}, {"position": {"minX": 297.75, "minY": 205.875, "maxX": 315.75, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005115509033203125}, "domain": "pixel"}, {"position": {"minX": 195.5, "minY": 198.625, "maxX": 209.25, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004886627197265625}, "domain": "pixel"}, {"position": {"minX": 169.125, "minY": 198.625, "maxX": 183.625, "maxY": 223.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004421234130859375}, "domain": "pixel"}, {"position": {"minX": 400.75, "minY": 221.125, "maxX": 415.75, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004146575927734375}, "domain": "pixel"}, {"position": {"minX": 552.0, "minY": 217.375, "maxX": 565.0, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031585693359375}, "domain": "pixel"}, {"position": {"minX": 167.625, "minY": 193.25, "maxX": 184.625, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003063201904296875}, "domain": "pixel"}, {"position": {"minX": 231.25, "minY": 202.0, "maxX": 250.5, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002819061279296875}, "domain": "pixel"}, {"position": {"minX": 308.0, "minY": 207.75, "maxX": 328.0, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00281524658203125}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 227.125, "maxX": 485.25, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020694732666015625}, "domain": "pixel"}, {"position": {"minX": 120.8125, "minY": 191.875, "maxX": 138.75, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001766204833984375}, "domain": "pixel"}, {"position": {"minX": 646.0, "minY": 257.25, "maxX": 656.0, "maxY": 274.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015106201171875}, "domain": "pixel"}, {"position": {"minX": 186.375, "minY": 197.25, "maxX": 201.625, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012788772583007812}, "domain": "pixel"}, {"position": {"minX": 340.5, "minY": 208.25, "maxX": 373.0, "maxY": 250.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010614395141601562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_61ac9a8da428469d11f9.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_61ac9a8da428469d11f9.boxes2D.json new file mode 100644 index 0000000..bfcc4ce --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_61ac9a8da428469d11f9.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 442.75, "minY": 225.0, "maxX": 461.25, "maxY": 250.75}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.40771484375}, "domain": "pixel"}, {"position": {"minX": 512.5, "minY": 235.625, "maxX": 533.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.389404296875}, "domain": "pixel"}, {"position": {"minX": 568.0, "minY": 243.625, "maxX": 588.0, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.378662109375}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 213.0, "maxX": 347.25, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.37109375}, "domain": "pixel"}, {"position": {"minX": 288.75, "minY": 201.625, "maxX": 307.75, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.348", "scores": {"class_score": 0.348388671875}, "domain": "pixel"}, {"position": {"minX": 224.25, "minY": 192.375, "maxX": 243.0, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.331", "scores": {"class_score": 0.330810546875}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 223.625, "maxX": 397.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.326416015625}, "domain": "pixel"}, {"position": {"minX": 159.375, "minY": 191.5, "maxX": 174.125, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.286", "scores": {"class_score": 0.285888671875}, "domain": "pixel"}, {"position": {"minX": 414.0, "minY": 209.375, "maxX": 426.0, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0195159912109375}, "domain": "pixel"}, {"position": {"minX": 151.25, "minY": 189.75, "maxX": 170.75, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01232147216796875}, "domain": "pixel"}, {"position": {"minX": 379.0, "minY": 221.125, "maxX": 394.0, "maxY": 242.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00670623779296875}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 227.75, "maxX": 396.5, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006561279296875}, "domain": "pixel"}, {"position": {"minX": 165.5, "minY": 190.875, "maxX": 182.0, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0056610107421875}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 216.5, "maxX": 398.5, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00525665283203125}, "domain": "pixel"}, {"position": {"minX": 473.5, "minY": 234.5, "maxX": 484.5, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003643035888671875}, "domain": "pixel"}, {"position": {"minX": 415.25, "minY": 205.75, "maxX": 425.75, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00185394287109375}, "domain": "pixel"}, {"position": {"minX": 476.0, "minY": 237.0, "maxX": 486.0, "maxY": 253.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001766204833984375}, "domain": "pixel"}, {"position": {"minX": 228.0, "minY": 197.125, "maxX": 247.0, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017175674438476562}, "domain": "pixel"}, {"position": {"minX": 282.75, "minY": 202.875, "maxX": 300.75, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016651153564453125}, "domain": "pixel"}, {"position": {"minX": 506.0, "minY": 227.375, "maxX": 538.0, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001537322998046875}, "domain": "pixel"}, {"position": {"minX": 413.0, "minY": 213.875, "maxX": 426.0, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014753341674804688}, "domain": "pixel"}, {"position": {"minX": 161.0, "minY": 197.5, "maxX": 176.5, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014591217041015625}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 220.5, "maxX": 346.75, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014295578002929688}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 222.875, "maxX": 401.5, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001338958740234375}, "domain": "pixel"}, {"position": {"minX": 180.25, "minY": 191.875, "maxX": 194.25, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013265609741210938}, "domain": "pixel"}, {"position": {"minX": 409.0, "minY": 209.875, "maxX": 423.5, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012378692626953125}, "domain": "pixel"}, {"position": {"minX": 161.5, "minY": 188.0, "maxX": 177.5, "maxY": 212.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011644363403320312}, "domain": "pixel"}, {"position": {"minX": 475.25, "minY": 239.5, "maxX": 487.75, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010128021240234375}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 220.0, "maxX": 406.25, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010013580322265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_6af258a22bd0fdbfe4ad.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_6af258a22bd0fdbfe4ad.boxes2D.json new file mode 100644 index 0000000..e9141b2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_6af258a22bd0fdbfe4ad.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.75, "minY": 216.25, "maxX": 357.25, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.4150390625}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 250.625, "maxX": 602.0, "maxY": 277.75}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.378173828125}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 232.125, "maxX": 473.5, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.37109375}, "domain": "pixel"}, {"position": {"minX": 222.875, "minY": 199.0, "maxX": 242.125, "maxY": 226.5}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.3662109375}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 209.625, "maxX": 312.0, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.357", "scores": {"class_score": 0.357421875}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 241.875, "maxX": 546.0, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.357", "scores": {"class_score": 0.357421875}, "domain": "pixel"}, {"position": {"minX": 392.75, "minY": 227.875, "maxX": 407.75, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.247", "scores": {"class_score": 0.2471923828125}, "domain": "pixel"}, {"position": {"minX": 164.0, "minY": 195.75, "maxX": 183.75, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.243", "scores": {"class_score": 0.2432861328125}, "domain": "pixel"}, {"position": {"minX": 393.0, "minY": 222.0, "maxX": 411.0, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01324462890625}, "domain": "pixel"}, {"position": {"minX": 188.0, "minY": 193.875, "maxX": 202.75, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00765228271484375}, "domain": "pixel"}, {"position": {"minX": 159.875, "minY": 194.25, "maxX": 178.875, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00670623779296875}, "domain": "pixel"}, {"position": {"minX": 116.0625, "minY": 199.625, "maxX": 128.25, "maxY": 219.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002437591552734375}, "domain": "pixel"}, {"position": {"minX": 606.0, "minY": 13.046875, "maxX": 635.0, "maxY": 60.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024280548095703125}, "domain": "pixel"}, {"position": {"minX": 111.875, "minY": 192.0, "maxX": 127.125, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020961761474609375}, "domain": "pixel"}, {"position": {"minX": 396.75, "minY": 226.0, "maxX": 417.75, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018978118896484375}, "domain": "pixel"}, {"position": {"minX": 442.25, "minY": 227.625, "maxX": 476.75, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001834869384765625}, "domain": "pixel"}, {"position": {"minX": 229.0, "minY": 199.25, "maxX": 246.75, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016965866088867188}, "domain": "pixel"}, {"position": {"minX": 637.0, "minY": 222.375, "maxX": 654.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011749267578125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_8c5a31efa0a57df1a66e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_8c5a31efa0a57df1a66e.boxes2D.json new file mode 100644 index 0000000..d6f53a3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_8c5a31efa0a57df1a66e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 346.0, "minY": 216.25, "maxX": 367.0, "maxY": 242.0}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.412353515625}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 249.75, "maxX": 603.0, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.386", "scores": {"class_score": 0.385986328125}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 240.25, "maxX": 552.0, "maxY": 267.75}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.383544921875}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 207.125, "maxX": 318.25, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.3671875}, "domain": "pixel"}, {"position": {"minX": 454.75, "minY": 230.25, "maxX": 472.25, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.353515625}, "domain": "pixel"}, {"position": {"minX": 232.875, "minY": 197.5, "maxX": 252.625, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.32275390625}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 225.125, "maxX": 410.25, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.243", "scores": {"class_score": 0.243408203125}, "domain": "pixel"}, {"position": {"minX": 174.125, "minY": 195.875, "maxX": 189.875, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.216", "scores": {"class_score": 0.2161865234375}, "domain": "pixel"}, {"position": {"minX": 177.375, "minY": 198.5, "maxX": 192.625, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.053", "scores": {"class_score": 0.05328369140625}, "domain": "pixel"}, {"position": {"minX": 140.75, "minY": 193.625, "maxX": 153.5, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01274871826171875}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 228.25, "maxX": 409.0, "maxY": 253.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007755279541015625}, "domain": "pixel"}, {"position": {"minX": 167.5, "minY": 192.0, "maxX": 185.0, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006984710693359375}, "domain": "pixel"}, {"position": {"minX": 169.75, "minY": 193.0, "maxX": 195.5, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0039520263671875}, "domain": "pixel"}, {"position": {"minX": 135.625, "minY": 191.25, "maxX": 150.125, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00301361083984375}, "domain": "pixel"}, {"position": {"minX": 229.625, "minY": 201.25, "maxX": 248.625, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00211334228515625}, "domain": "pixel"}, {"position": {"minX": 168.75, "minY": 198.5, "maxX": 183.75, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001708984375}, "domain": "pixel"}, {"position": {"minX": 139.375, "minY": 189.375, "maxX": 157.375, "maxY": 213.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010356903076171875}, "domain": "pixel"}, {"position": {"minX": 171.5, "minY": 187.25, "maxX": 190.5, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010328292846679688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_9e8758b9b8693649494e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_9e8758b9b8693649494e.boxes2D.json new file mode 100644 index 0000000..a59fcfd --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_9e8758b9b8693649494e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 331.75, "minY": 208.25, "maxX": 350.75, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.41357421875}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 223.125, "maxX": 461.25, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.376708984375}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 242.0, "maxX": 584.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.3720703125}, "domain": "pixel"}, {"position": {"minX": 512.0, "minY": 233.5, "maxX": 531.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.358", "scores": {"class_score": 0.35791015625}, "domain": "pixel"}, {"position": {"minX": 289.0, "minY": 200.25, "maxX": 306.0, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.326171875}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 216.875, "maxX": 399.25, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.318", "scores": {"class_score": 0.317626953125}, "domain": "pixel"}, {"position": {"minX": 224.875, "minY": 193.25, "maxX": 240.625, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.304", "scores": {"class_score": 0.3037109375}, "domain": "pixel"}, {"position": {"minX": 165.75, "minY": 189.125, "maxX": 182.25, "maxY": 212.875}, "class_id": 0, "box_caption": "coureur 0.193", "scores": {"class_score": 0.193115234375}, "domain": "pixel"}, {"position": {"minX": 161.875, "minY": 191.625, "maxX": 177.625, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00745391845703125}, "domain": "pixel"}, {"position": {"minX": 507.25, "minY": 234.0, "maxX": 525.5, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004058837890625}, "domain": "pixel"}, {"position": {"minX": 103.125, "minY": 192.5, "maxX": 114.25, "maxY": 211.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004039764404296875}, "domain": "pixel"}, {"position": {"minX": 163.0, "minY": 197.125, "maxX": 180.75, "maxY": 216.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022735595703125}, "domain": "pixel"}, {"position": {"minX": 377.0, "minY": 216.125, "maxX": 395.5, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016908645629882812}, "domain": "pixel"}, {"position": {"minX": 228.5, "minY": 191.375, "maxX": 245.0, "maxY": 216.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00135040283203125}, "domain": "pixel"}, {"position": {"minX": 100.625, "minY": 185.875, "maxX": 115.0, "maxY": 213.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012063980102539062}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 217.25, "maxX": 409.25, "maxY": 237.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010747909545898438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_bb58d3d18abd053e5bf2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_bb58d3d18abd053e5bf2.boxes2D.json new file mode 100644 index 0000000..29ce433 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_bb58d3d18abd053e5bf2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 450.25, "minY": 230.5, "maxX": 473.75, "maxY": 255.25}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.439453125}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 248.375, "maxX": 600.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.38330078125}, "domain": "pixel"}, {"position": {"minX": 340.25, "minY": 215.5, "maxX": 357.25, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.370", "scores": {"class_score": 0.370361328125}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 242.375, "maxX": 544.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.352783203125}, "domain": "pixel"}, {"position": {"minX": 298.25, "minY": 206.375, "maxX": 316.25, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.343017578125}, "domain": "pixel"}, {"position": {"minX": 230.875, "minY": 198.0, "maxX": 252.125, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.322", "scores": {"class_score": 0.322265625}, "domain": "pixel"}, {"position": {"minX": 394.25, "minY": 226.625, "maxX": 407.25, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.297", "scores": {"class_score": 0.296875}, "domain": "pixel"}, {"position": {"minX": 169.625, "minY": 193.0, "maxX": 184.625, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.282", "scores": {"class_score": 0.28173828125}, "domain": "pixel"}, {"position": {"minX": 166.625, "minY": 196.25, "maxX": 182.125, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006683349609375}, "domain": "pixel"}, {"position": {"minX": 392.0, "minY": 222.0, "maxX": 407.0, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005970001220703125}, "domain": "pixel"}, {"position": {"minX": 196.5, "minY": 199.5, "maxX": 209.25, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0054931640625}, "domain": "pixel"}, {"position": {"minX": 239.375, "minY": 206.5, "maxX": 256.75, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035457611083984375}, "domain": "pixel"}, {"position": {"minX": 175.125, "minY": 194.25, "maxX": 191.375, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00341033935546875}, "domain": "pixel"}, {"position": {"minX": 167.625, "minY": 189.125, "maxX": 183.125, "maxY": 213.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026702880859375}, "domain": "pixel"}, {"position": {"minX": 191.75, "minY": 198.5, "maxX": 205.25, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025577545166015625}, "domain": "pixel"}, {"position": {"minX": 494.5, "minY": 217.125, "maxX": 508.0, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021686553955078125}, "domain": "pixel"}, {"position": {"minX": 236.125, "minY": 200.125, "maxX": 256.25, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001514434814453125}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 247.625, "maxX": 596.0, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015001296997070312}, "domain": "pixel"}, {"position": {"minX": 189.375, "minY": 194.5, "maxX": 203.875, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012073516845703125}, "domain": "pixel"}, {"position": {"minX": 522.0, "minY": 245.0, "maxX": 540.0, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00119781494140625}, "domain": "pixel"}, {"position": {"minX": 162.375, "minY": 191.75, "maxX": 186.375, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011186599731445312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_dc8c4b5a06a190e60bf9.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_dc8c4b5a06a190e60bf9.boxes2D.json new file mode 100644 index 0000000..622f94c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_dc8c4b5a06a190e60bf9.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 442.0, "minY": 220.25, "maxX": 464.5, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.383544921875}, "domain": "pixel"}, {"position": {"minX": 566.5, "minY": 239.0, "maxX": 584.5, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.366943359375}, "domain": "pixel"}, {"position": {"minX": 511.75, "minY": 231.0, "maxX": 531.5, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.365", "scores": {"class_score": 0.36474609375}, "domain": "pixel"}, {"position": {"minX": 227.25, "minY": 191.0, "maxX": 246.5, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.357", "scores": {"class_score": 0.356689453125}, "domain": "pixel"}, {"position": {"minX": 291.25, "minY": 199.875, "maxX": 309.75, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.351", "scores": {"class_score": 0.3505859375}, "domain": "pixel"}, {"position": {"minX": 162.875, "minY": 183.25, "maxX": 180.625, "maxY": 208.0}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.32080078125}, "domain": "pixel"}, {"position": {"minX": 331.75, "minY": 211.125, "maxX": 347.75, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.315", "scores": {"class_score": 0.314697265625}, "domain": "pixel"}, {"position": {"minX": 381.25, "minY": 211.125, "maxX": 396.75, "maxY": 235.875}, "class_id": 0, "box_caption": "coureur 0.301", "scores": {"class_score": 0.300537109375}, "domain": "pixel"}, {"position": {"minX": 100.25, "minY": 184.0, "maxX": 113.0, "maxY": 206.25}, "class_id": 0, "box_caption": "coureur 0.174", "scores": {"class_score": 0.173828125}, "domain": "pixel"}, {"position": {"minX": 158.625, "minY": 178.625, "maxX": 182.125, "maxY": 210.125}, "class_id": 0, "box_caption": "coureur 0.048", "scores": {"class_score": 0.047698974609375}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 218.75, "maxX": 396.25, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006870269775390625}, "domain": "pixel"}, {"position": {"minX": 377.25, "minY": 206.75, "maxX": 393.75, "maxY": 232.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005558013916015625}, "domain": "pixel"}, {"position": {"minX": 506.75, "minY": 232.25, "maxX": 526.0, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003932952880859375}, "domain": "pixel"}, {"position": {"minX": 329.25, "minY": 215.125, "maxX": 344.75, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003452301025390625}, "domain": "pixel"}, {"position": {"minX": 102.6875, "minY": 184.375, "maxX": 117.5625, "maxY": 207.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032558441162109375}, "domain": "pixel"}, {"position": {"minX": 167.375, "minY": 188.875, "maxX": 184.875, "maxY": 212.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021800994873046875}, "domain": "pixel"}, {"position": {"minX": 230.75, "minY": 195.0, "maxX": 250.0, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021228790283203125}, "domain": "pixel"}, {"position": {"minX": 377.75, "minY": 214.375, "maxX": 394.75, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020294189453125}, "domain": "pixel"}, {"position": {"minX": 152.0, "minY": 185.0, "maxX": 169.5, "maxY": 210.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018310546875}, "domain": "pixel"}, {"position": {"minX": 160.5, "minY": 187.75, "maxX": 176.5, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017957687377929688}, "domain": "pixel"}, {"position": {"minX": 437.75, "minY": 213.5, "maxX": 470.25, "maxY": 252.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001495361328125}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 228.625, "maxX": 529.5, "maxY": 253.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011301040649414062}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_dfd9b8ca9e56447fc5c5.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_dfd9b8ca9e56447fc5c5.boxes2D.json new file mode 100644 index 0000000..67f99e3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_dfd9b8ca9e56447fc5c5.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 345.75, "minY": 220.5, "maxX": 369.25, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.411865234375}, "domain": "pixel"}, {"position": {"minX": 458.25, "minY": 234.25, "maxX": 476.25, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.4111328125}, "domain": "pixel"}, {"position": {"minX": 588.5, "minY": 252.75, "maxX": 605.5, "maxY": 279.25}, "class_id": 0, "box_caption": "coureur 0.382", "scores": {"class_score": 0.3818359375}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 241.875, "maxX": 556.5, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.38134765625}, "domain": "pixel"}, {"position": {"minX": 231.75, "minY": 201.5, "maxX": 251.5, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.357", "scores": {"class_score": 0.357421875}, "domain": "pixel"}, {"position": {"minX": 303.0, "minY": 208.0, "maxX": 320.0, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.32568359375}, "domain": "pixel"}, {"position": {"minX": 398.25, "minY": 225.875, "maxX": 413.25, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.299", "scores": {"class_score": 0.29931640625}, "domain": "pixel"}, {"position": {"minX": 174.625, "minY": 196.625, "maxX": 190.125, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.037506103515625}, "domain": "pixel"}, {"position": {"minX": 105.875, "minY": 182.0, "maxX": 126.625, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005710601806640625}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 206.125, "maxX": 315.25, "maxY": 232.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004459381103515625}, "domain": "pixel"}, {"position": {"minX": 164.625, "minY": 198.125, "maxX": 180.625, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020580291748046875}, "domain": "pixel"}, {"position": {"minX": 158.875, "minY": 200.125, "maxX": 170.875, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001495361328125}, "domain": "pixel"}, {"position": {"minX": 133.25, "minY": 192.125, "maxX": 148.75, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012960433959960938}, "domain": "pixel"}, {"position": {"minX": 304.25, "minY": 202.25, "maxX": 322.75, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 156.375, "minY": 194.25, "maxX": 170.375, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011892318725585938}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 229.0, "maxX": 411.25, "maxY": 253.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011243820190429688}, "domain": "pixel"}, {"position": {"minX": 300.5, "minY": 218.125, "maxX": 317.5, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00112152099609375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_e86e5061e6dbabca5ebf.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_e86e5061e6dbabca5ebf.boxes2D.json new file mode 100644 index 0000000..b77e64d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_e86e5061e6dbabca5ebf.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 120.4375, "minY": 258.5, "maxX": 182.125, "maxY": 333.5}, "class_id": 0, "box_caption": "coureur 0.376", "scores": {"class_score": 0.3759765625}, "domain": "pixel"}, {"position": {"minX": 428.5, "minY": 246.125, "maxX": 469.5, "maxY": 309.75}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.354248046875}, "domain": "pixel"}, {"position": {"minX": 211.125, "minY": 125.875, "maxX": 276.25, "maxY": 196.875}, "class_id": 0, "box_caption": "coureur 0.350", "scores": {"class_score": 0.350341796875}, "domain": "pixel"}, {"position": {"minX": 373.75, "minY": 167.375, "maxX": 399.25, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.342", "scores": {"class_score": 0.342041015625}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 126.25, "maxX": 379.75, "maxY": 179.0}, "class_id": 0, "box_caption": "coureur 0.306", "scores": {"class_score": 0.305908203125}, "domain": "pixel"}, {"position": {"minX": 434.5, "minY": 243.25, "maxX": 465.0, "maxY": 297.75}, "class_id": 0, "box_caption": "coureur 0.198", "scores": {"class_score": 0.197509765625}, "domain": "pixel"}, {"position": {"minX": 405.25, "minY": 187.875, "maxX": 481.75, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.164", "scores": {"class_score": 0.16357421875}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 206.75, "maxX": 472.0, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.146", "scores": {"class_score": 0.1456298828125}, "domain": "pixel"}, {"position": {"minX": 383.5, "minY": 221.125, "maxX": 460.0, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.138", "scores": {"class_score": 0.137939453125}, "domain": "pixel"}, {"position": {"minX": 512.0, "minY": 61.1875, "maxX": 532.0, "maxY": 89.4375}, "class_id": 0, "box_caption": "coureur 0.100", "scores": {"class_score": 0.0997314453125}, "domain": "pixel"}, {"position": {"minX": 413.25, "minY": 178.125, "maxX": 480.25, "maxY": 232.625}, "class_id": 0, "box_caption": "coureur 0.035", "scores": {"class_score": 0.034576416015625}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 234.25, "maxX": 443.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.0270538330078125}, "domain": "pixel"}, {"position": {"minX": 439.0, "minY": 250.5, "maxX": 481.0, "maxY": 306.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01151275634765625}, "domain": "pixel"}, {"position": {"minX": 510.25, "minY": 58.28125, "maxX": 538.5, "maxY": 94.125}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01122283935546875}, "domain": "pixel"}, {"position": {"minX": 436.0, "minY": 175.5, "maxX": 469.0, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.009857177734375}, "domain": "pixel"}, {"position": {"minX": 425.5, "minY": 192.625, "maxX": 463.0, "maxY": 247.125}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00675201416015625}, "domain": "pixel"}, {"position": {"minX": 422.0, "minY": 254.25, "maxX": 468.0, "maxY": 324.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0062408447265625}, "domain": "pixel"}, {"position": {"minX": 455.0, "minY": 236.125, "maxX": 478.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00621795654296875}, "domain": "pixel"}, {"position": {"minX": 416.25, "minY": 237.75, "maxX": 473.25, "maxY": 300.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00557708740234375}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 174.625, "maxX": 467.0, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004856109619140625}, "domain": "pixel"}, {"position": {"minX": 428.75, "minY": 170.5, "maxX": 480.75, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003986358642578125}, "domain": "pixel"}, {"position": {"minX": 392.0, "minY": 229.0, "maxX": 458.0, "maxY": 290.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00396728515625}, "domain": "pixel"}, {"position": {"minX": 430.0, "minY": 275.0, "maxX": 458.5, "maxY": 320.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038928985595703125}, "domain": "pixel"}, {"position": {"minX": 431.75, "minY": 227.0, "maxX": 481.75, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032711029052734375}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 229.875, "maxX": 486.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003139495849609375}, "domain": "pixel"}, {"position": {"minX": 451.25, "minY": 229.375, "maxX": 474.75, "maxY": 258.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00299835205078125}, "domain": "pixel"}, {"position": {"minX": 427.75, "minY": 269.75, "maxX": 450.25, "maxY": 317.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00267791748046875}, "domain": "pixel"}, {"position": {"minX": 406.0, "minY": 239.75, "maxX": 463.5, "maxY": 311.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024089813232421875}, "domain": "pixel"}, {"position": {"minX": 442.5, "minY": 236.25, "maxX": 482.0, "maxY": 281.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002384185791015625}, "domain": "pixel"}, {"position": {"minX": 347.0, "minY": 122.6875, "maxX": 383.0, "maxY": 161.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023555755615234375}, "domain": "pixel"}, {"position": {"minX": 378.25, "minY": 174.375, "maxX": 431.25, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021190643310546875}, "domain": "pixel"}, {"position": {"minX": 134.75, "minY": 250.625, "maxX": 176.0, "maxY": 317.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019626617431640625}, "domain": "pixel"}, {"position": {"minX": 505.0, "minY": 59.34375, "maxX": 537.0, "maxY": 111.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018186569213867188}, "domain": "pixel"}, {"position": {"minX": 378.5, "minY": 228.0, "maxX": 430.5, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017786026000976562}, "domain": "pixel"}, {"position": {"minX": 350.25, "minY": 121.8125, "maxX": 375.75, "maxY": 147.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017099380493164062}, "domain": "pixel"}, {"position": {"minX": 434.5, "minY": 238.125, "maxX": 458.0, "maxY": 287.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00168609619140625}, "domain": "pixel"}, {"position": {"minX": 504.5, "minY": 89.75, "maxX": 530.5, "maxY": 124.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016241073608398438}, "domain": "pixel"}, {"position": {"minX": 390.5, "minY": 233.125, "maxX": 421.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014514923095703125}, "domain": "pixel"}, {"position": {"minX": 347.75, "minY": 140.0, "maxX": 388.25, "maxY": 197.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014047622680664062}, "domain": "pixel"}, {"position": {"minX": 500.25, "minY": 79.6875, "maxX": 531.5, "maxY": 121.5625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012369155883789062}, "domain": "pixel"}, {"position": {"minX": 435.75, "minY": 279.5, "maxX": 465.75, "maxY": 319.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011873245239257812}, "domain": "pixel"}, {"position": {"minX": 364.75, "minY": 157.25, "maxX": 401.75, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001163482666015625}, "domain": "pixel"}, {"position": {"minX": 503.5, "minY": 65.3125, "maxX": 532.5, "maxY": 96.8125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011091232299804688}, "domain": "pixel"}, {"position": {"minX": 255.75, "minY": 167.5, "maxX": 276.25, "maxY": 205.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010766983032226562}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 265.25, "maxX": 483.0, "maxY": 317.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010423660278320312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_f0fb626ec66f2cdd4f4b.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_f0fb626ec66f2cdd4f4b.boxes2D.json new file mode 100644 index 0000000..c49da60 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_119_f0fb626ec66f2cdd4f4b.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 575.5, "minY": 248.625, "maxX": 596.5, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.393", "scores": {"class_score": 0.393310546875}, "domain": "pixel"}, {"position": {"minX": 519.5, "minY": 237.5, "maxX": 543.5, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.38134765625}, "domain": "pixel"}, {"position": {"minX": 336.75, "minY": 213.875, "maxX": 358.25, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.369", "scores": {"class_score": 0.36865234375}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 224.25, "maxX": 402.5, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.356", "scores": {"class_score": 0.355712890625}, "domain": "pixel"}, {"position": {"minX": 296.25, "minY": 207.25, "maxX": 313.25, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.351", "scores": {"class_score": 0.351318359375}, "domain": "pixel"}, {"position": {"minX": 450.75, "minY": 232.5, "maxX": 463.25, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.339", "scores": {"class_score": 0.339111328125}, "domain": "pixel"}, {"position": {"minX": 233.375, "minY": 198.125, "maxX": 254.125, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.252", "scores": {"class_score": 0.251708984375}, "domain": "pixel"}, {"position": {"minX": 174.125, "minY": 196.75, "maxX": 191.875, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.042", "scores": {"class_score": 0.042236328125}, "domain": "pixel"}, {"position": {"minX": 172.5, "minY": 198.0, "maxX": 186.0, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.038482666015625}, "domain": "pixel"}, {"position": {"minX": 187.375, "minY": 196.375, "maxX": 202.875, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0163726806640625}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 227.375, "maxX": 402.75, "maxY": 248.125}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0160980224609375}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 194.625, "maxX": 182.375, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0128326416015625}, "domain": "pixel"}, {"position": {"minX": 449.25, "minY": 236.0, "maxX": 463.75, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01052093505859375}, "domain": "pixel"}, {"position": {"minX": 451.75, "minY": 229.75, "maxX": 464.75, "maxY": 252.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00983428955078125}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 225.75, "maxX": 401.25, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006923675537109375}, "domain": "pixel"}, {"position": {"minX": 228.375, "minY": 196.0, "maxX": 249.375, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006763458251953125}, "domain": "pixel"}, {"position": {"minX": 238.375, "minY": 194.625, "maxX": 259.0, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0055694580078125}, "domain": "pixel"}, {"position": {"minX": 475.75, "minY": 214.875, "maxX": 492.75, "maxY": 237.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005313873291015625}, "domain": "pixel"}, {"position": {"minX": 178.625, "minY": 198.5, "maxX": 195.625, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003131866455078125}, "domain": "pixel"}, {"position": {"minX": 422.25, "minY": 208.125, "maxX": 434.75, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024547576904296875}, "domain": "pixel"}, {"position": {"minX": 570.0, "minY": 248.625, "maxX": 592.0, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00196075439453125}, "domain": "pixel"}, {"position": {"minX": 516.5, "minY": 230.0, "maxX": 550.5, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001537322998046875}, "domain": "pixel"}, {"position": {"minX": 481.75, "minY": 210.5, "maxX": 496.75, "maxY": 235.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015287399291992188}, "domain": "pixel"}, {"position": {"minX": 443.75, "minY": 234.375, "maxX": 458.75, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001216888427734375}, "domain": "pixel"}, {"position": {"minX": 170.375, "minY": 193.125, "maxX": 198.375, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010099411010742188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_231a2b5efb899bc4e1bd.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_231a2b5efb899bc4e1bd.boxes2D.json new file mode 100644 index 0000000..1d7510a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_231a2b5efb899bc4e1bd.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 575.5, "minY": 248.0, "maxX": 596.5, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.414794921875}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 237.875, "maxX": 543.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.41259765625}, "domain": "pixel"}, {"position": {"minX": 337.5, "minY": 214.0, "maxX": 358.0, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.390380859375}, "domain": "pixel"}, {"position": {"minX": 296.25, "minY": 209.0, "maxX": 313.25, "maxY": 231.5}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.3876953125}, "domain": "pixel"}, {"position": {"minX": 450.75, "minY": 230.625, "maxX": 463.25, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.3427734375}, "domain": "pixel"}, {"position": {"minX": 390.5, "minY": 225.25, "maxX": 402.5, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.310", "scores": {"class_score": 0.31005859375}, "domain": "pixel"}, {"position": {"minX": 228.125, "minY": 200.75, "maxX": 248.375, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.245", "scores": {"class_score": 0.2451171875}, "domain": "pixel"}, {"position": {"minX": 173.5, "minY": 201.5, "maxX": 184.5, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.068", "scores": {"class_score": 0.0679931640625}, "domain": "pixel"}, {"position": {"minX": 224.125, "minY": 199.75, "maxX": 243.375, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00872802734375}, "domain": "pixel"}, {"position": {"minX": 237.0, "minY": 200.5, "maxX": 258.0, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0062408447265625}, "domain": "pixel"}, {"position": {"minX": 175.125, "minY": 196.875, "maxX": 188.375, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00406646728515625}, "domain": "pixel"}, {"position": {"minX": 170.5, "minY": 200.875, "maxX": 182.0, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003936767578125}, "domain": "pixel"}, {"position": {"minX": 172.625, "minY": 204.0, "maxX": 186.625, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033321380615234375}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 234.375, "maxX": 462.5, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027103424072265625}, "domain": "pixel"}, {"position": {"minX": 386.25, "minY": 225.625, "maxX": 401.25, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025234222412109375}, "domain": "pixel"}, {"position": {"minX": 517.5, "minY": 231.375, "maxX": 547.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013275146484375}, "domain": "pixel"}, {"position": {"minX": 187.875, "minY": 198.125, "maxX": 202.375, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011987686157226562}, "domain": "pixel"}, {"position": {"minX": 189.875, "minY": 196.125, "maxX": 201.375, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001155853271484375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_26ee79519cf147676790.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_26ee79519cf147676790.boxes2D.json new file mode 100644 index 0000000..b44b2a6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_26ee79519cf147676790.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 568.5, "minY": 242.625, "maxX": 584.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.396728515625}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 209.25, "maxX": 352.0, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.3935546875}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 222.875, "maxX": 461.0, "maxY": 249.875}, "class_id": 0, "box_caption": "coureur 0.382", "scores": {"class_score": 0.38232421875}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 233.625, "maxX": 530.5, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380615234375}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 216.75, "maxX": 397.0, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.37451171875}, "domain": "pixel"}, {"position": {"minX": 290.0, "minY": 200.875, "maxX": 307.0, "maxY": 225.375}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.3525390625}, "domain": "pixel"}, {"position": {"minX": 162.875, "minY": 192.5, "maxX": 179.375, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.325", "scores": {"class_score": 0.3251953125}, "domain": "pixel"}, {"position": {"minX": 227.25, "minY": 195.125, "maxX": 240.0, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.288", "scores": {"class_score": 0.287841796875}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 192.0, "maxX": 244.5, "maxY": 215.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005161285400390625}, "domain": "pixel"}, {"position": {"minX": 378.5, "minY": 216.25, "maxX": 395.0, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003650665283203125}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 221.75, "maxX": 399.0, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024051666259765625}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 197.375, "maxX": 245.75, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022869110107421875}, "domain": "pixel"}, {"position": {"minX": 378.0, "minY": 211.5, "maxX": 393.5, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011644363403320312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_287a588a1837b5fb0e9e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_287a588a1837b5fb0e9e.boxes2D.json new file mode 100644 index 0000000..1761a7c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_287a588a1837b5fb0e9e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 332.5, "minY": 217.75, "maxX": 355.5, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.420166015625}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 249.875, "maxX": 596.5, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.39453125}, "domain": "pixel"}, {"position": {"minX": 445.25, "minY": 234.5, "maxX": 467.75, "maxY": 257.25}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.391357421875}, "domain": "pixel"}, {"position": {"minX": 520.0, "minY": 239.5, "maxX": 542.0, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.383544921875}, "domain": "pixel"}, {"position": {"minX": 218.5, "minY": 202.625, "maxX": 241.5, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.382", "scores": {"class_score": 0.3818359375}, "domain": "pixel"}, {"position": {"minX": 289.25, "minY": 209.625, "maxX": 307.75, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.37841796875}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 222.0, "maxX": 402.5, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.331", "scores": {"class_score": 0.330810546875}, "domain": "pixel"}, {"position": {"minX": 155.0, "minY": 198.125, "maxX": 171.25, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.098", "scores": {"class_score": 0.097900390625}, "domain": "pixel"}, {"position": {"minX": 152.0, "minY": 193.375, "maxX": 168.25, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.01715087890625}, "domain": "pixel"}, {"position": {"minX": 158.25, "minY": 200.75, "maxX": 174.25, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017480850219726562}, "domain": "pixel"}, {"position": {"minX": 214.25, "minY": 202.625, "maxX": 235.25, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015621185302734375}, "domain": "pixel"}, {"position": {"minX": 282.5, "minY": 207.375, "maxX": 299.5, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011415481567382812}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 248.625, "maxX": 591.0, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010824203491210938}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 211.0, "maxX": 402.5, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010576248168945312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_354bcd53a61961e3f1cc.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_354bcd53a61961e3f1cc.boxes2D.json new file mode 100644 index 0000000..5da3579 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_354bcd53a61961e3f1cc.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 513.0, "minY": 234.5, "maxX": 533.0, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.41796875}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 225.25, "maxX": 461.5, "maxY": 250.25}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.394287109375}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 203.5, "maxX": 309.0, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.38671875}, "domain": "pixel"}, {"position": {"minX": 568.0, "minY": 243.75, "maxX": 590.0, "maxY": 268.25}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.3720703125}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 214.5, "maxX": 346.75, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.351", "scores": {"class_score": 0.351318359375}, "domain": "pixel"}, {"position": {"minX": 225.5, "minY": 193.5, "maxX": 243.25, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.333", "scores": {"class_score": 0.332763671875}, "domain": "pixel"}, {"position": {"minX": 159.375, "minY": 190.5, "maxX": 175.625, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.332", "scores": {"class_score": 0.33203125}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 224.125, "maxX": 397.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.278", "scores": {"class_score": 0.2783203125}, "domain": "pixel"}, {"position": {"minX": 164.125, "minY": 190.875, "maxX": 181.375, "maxY": 212.375}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.0285186767578125}, "domain": "pixel"}, {"position": {"minX": 379.5, "minY": 222.25, "maxX": 394.0, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0120391845703125}, "domain": "pixel"}, {"position": {"minX": 228.125, "minY": 197.0, "maxX": 246.375, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003879547119140625}, "domain": "pixel"}, {"position": {"minX": 166.375, "minY": 193.625, "maxX": 186.375, "maxY": 213.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00231170654296875}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 217.875, "maxX": 398.25, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018987655639648438}, "domain": "pixel"}, {"position": {"minX": 179.5, "minY": 192.0, "maxX": 194.0, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013113021850585938}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_3daad9200fb081258e81.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_3daad9200fb081258e81.boxes2D.json new file mode 100644 index 0000000..87bd398 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_3daad9200fb081258e81.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.0, "minY": 216.5, "maxX": 360.5, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.42431640625}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 251.625, "maxX": 604.0, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.410", "scores": {"class_score": 0.40966796875}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 234.875, "maxX": 474.0, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.39208984375}, "domain": "pixel"}, {"position": {"minX": 293.25, "minY": 211.5, "maxX": 312.25, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.388916015625}, "domain": "pixel"}, {"position": {"minX": 223.375, "minY": 201.375, "maxX": 241.875, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.370849609375}, "domain": "pixel"}, {"position": {"minX": 525.5, "minY": 241.375, "maxX": 545.5, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.37060546875}, "domain": "pixel"}, {"position": {"minX": 163.0, "minY": 196.875, "maxX": 184.75, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.196", "scores": {"class_score": 0.19580078125}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 231.25, "maxX": 407.25, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.173", "scores": {"class_score": 0.1734619140625}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 242.5, "maxX": 550.5, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014591217041015625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_50cc95f8bf41fe40ae9a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_50cc95f8bf41fe40ae9a.boxes2D.json new file mode 100644 index 0000000..6ffb798 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_50cc95f8bf41fe40ae9a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 573.5, "minY": 245.0, "maxX": 587.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.4130859375}, "domain": "pixel"}, {"position": {"minX": 331.0, "minY": 212.375, "maxX": 352.5, "maxY": 237.625}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.402587890625}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 229.5, "maxX": 465.0, "maxY": 255.5}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.397705078125}, "domain": "pixel"}, {"position": {"minX": 516.5, "minY": 237.125, "maxX": 533.5, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.371826171875}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 206.625, "maxX": 309.5, "maxY": 230.375}, "class_id": 0, "box_caption": "coureur 0.369", "scores": {"class_score": 0.368896484375}, "domain": "pixel"}, {"position": {"minX": 223.25, "minY": 194.25, "maxX": 243.75, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.365", "scores": {"class_score": 0.364990234375}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 217.75, "maxX": 401.0, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.251", "scores": {"class_score": 0.251220703125}, "domain": "pixel"}, {"position": {"minX": 384.25, "minY": 221.625, "maxX": 399.75, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00397491455078125}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 201.25, "maxX": 307.5, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00342559814453125}, "domain": "pixel"}, {"position": {"minX": 518.0, "minY": 238.5, "maxX": 537.0, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017499923706054688}, "domain": "pixel"}, {"position": {"minX": 225.75, "minY": 200.375, "maxX": 244.5, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016231536865234375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_5f348320242f50e335c2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_5f348320242f50e335c2.boxes2D.json new file mode 100644 index 0000000..bfbfdc0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_5f348320242f50e335c2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 456.75, "minY": 235.0, "maxX": 480.25, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.43896484375}, "domain": "pixel"}, {"position": {"minX": 590.0, "minY": 251.875, "maxX": 605.0, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.4248046875}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 242.375, "maxX": 552.0, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.418212890625}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 216.5, "maxX": 367.25, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.403564453125}, "domain": "pixel"}, {"position": {"minX": 233.875, "minY": 198.75, "maxX": 253.375, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.394775390625}, "domain": "pixel"}, {"position": {"minX": 304.75, "minY": 208.875, "maxX": 323.25, "maxY": 233.125}, "class_id": 0, "box_caption": "coureur 0.360", "scores": {"class_score": 0.360107421875}, "domain": "pixel"}, {"position": {"minX": 173.5, "minY": 197.125, "maxX": 188.25, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.242", "scores": {"class_score": 0.2418212890625}, "domain": "pixel"}, {"position": {"minX": 400.5, "minY": 229.625, "maxX": 413.0, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.237", "scores": {"class_score": 0.2371826171875}, "domain": "pixel"}, {"position": {"minX": 169.5, "minY": 195.25, "maxX": 184.75, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00890350341796875}, "domain": "pixel"}, {"position": {"minX": 176.125, "minY": 199.0, "maxX": 192.125, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.008453369140625}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 224.25, "maxX": 413.0, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0077972412109375}, "domain": "pixel"}, {"position": {"minX": 188.625, "minY": 199.875, "maxX": 203.875, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034236907958984375}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 207.125, "maxX": 316.25, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00283050537109375}, "domain": "pixel"}, {"position": {"minX": 195.375, "minY": 200.25, "maxX": 209.375, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020351409912109375}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 204.0, "maxX": 187.5, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012664794921875}, "domain": "pixel"}, {"position": {"minX": 113.1875, "minY": 187.0, "maxX": 134.875, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012502670288085938}, "domain": "pixel"}, {"position": {"minX": 169.0, "minY": 200.25, "maxX": 183.5, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010623931884765625}, "domain": "pixel"}, {"position": {"minX": 229.875, "minY": 202.375, "maxX": 251.375, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010213851928710938}, "domain": "pixel"}, {"position": {"minX": 172.875, "minY": 190.75, "maxX": 188.375, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010099411010742188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_6102877fad4c41645660.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_6102877fad4c41645660.boxes2D.json new file mode 100644 index 0000000..d83a4e2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_6102877fad4c41645660.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 344.25, "minY": 215.875, "maxX": 366.75, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.41357421875}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 248.0, "maxX": 603.0, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.410", "scores": {"class_score": 0.40966796875}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 241.875, "maxX": 552.5, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.407958984375}, "domain": "pixel"}, {"position": {"minX": 234.125, "minY": 199.0, "maxX": 250.875, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380859375}, "domain": "pixel"}, {"position": {"minX": 454.0, "minY": 229.125, "maxX": 471.0, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.356", "scores": {"class_score": 0.35595703125}, "domain": "pixel"}, {"position": {"minX": 301.5, "minY": 209.125, "maxX": 317.5, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.353515625}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 227.875, "maxX": 411.25, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.303", "scores": {"class_score": 0.303466796875}, "domain": "pixel"}, {"position": {"minX": 173.5, "minY": 197.875, "maxX": 188.75, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.281", "scores": {"class_score": 0.28076171875}, "domain": "pixel"}, {"position": {"minX": 176.5, "minY": 200.375, "maxX": 190.75, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.042", "scores": {"class_score": 0.042205810546875}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 223.875, "maxX": 410.25, "maxY": 243.875}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01201629638671875}, "domain": "pixel"}, {"position": {"minX": 170.25, "minY": 194.125, "maxX": 192.75, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0081024169921875}, "domain": "pixel"}, {"position": {"minX": 391.5, "minY": 228.125, "maxX": 410.5, "maxY": 253.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00559234619140625}, "domain": "pixel"}, {"position": {"minX": 167.75, "minY": 192.875, "maxX": 186.25, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00511932373046875}, "domain": "pixel"}, {"position": {"minX": 168.5, "minY": 199.75, "maxX": 185.0, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020122528076171875}, "domain": "pixel"}, {"position": {"minX": 230.375, "minY": 196.75, "maxX": 249.125, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014829635620117188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_61f35ce394fc6dc26fe1.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_61f35ce394fc6dc26fe1.boxes2D.json new file mode 100644 index 0000000..85fcce1 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_61f35ce394fc6dc26fe1.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 527.5, "minY": 242.0, "maxX": 556.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.416259765625}, "domain": "pixel"}, {"position": {"minX": 456.75, "minY": 234.625, "maxX": 475.25, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.403564453125}, "domain": "pixel"}, {"position": {"minX": 345.5, "minY": 222.375, "maxX": 369.0, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.400", "scores": {"class_score": 0.39990234375}, "domain": "pixel"}, {"position": {"minX": 589.5, "minY": 252.375, "maxX": 605.5, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.38427734375}, "domain": "pixel"}, {"position": {"minX": 233.5, "minY": 204.25, "maxX": 249.5, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.312", "scores": {"class_score": 0.312255859375}, "domain": "pixel"}, {"position": {"minX": 303.25, "minY": 209.75, "maxX": 318.75, "maxY": 235.0}, "class_id": 0, "box_caption": "coureur 0.309", "scores": {"class_score": 0.30908203125}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 230.0, "maxX": 413.0, "maxY": 251.75}, "class_id": 0, "box_caption": "coureur 0.260", "scores": {"class_score": 0.259765625}, "domain": "pixel"}, {"position": {"minX": 176.5, "minY": 195.875, "maxX": 191.5, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.069", "scores": {"class_score": 0.06903076171875}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 207.0, "maxX": 314.0, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036907196044921875}, "domain": "pixel"}, {"position": {"minX": 394.25, "minY": 232.0, "maxX": 411.75, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002384185791015625}, "domain": "pixel"}, {"position": {"minX": 589.0, "minY": 15.0625, "maxX": 667.0, "maxY": 160.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019426345825195312}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 205.625, "maxX": 252.75, "maxY": 232.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012655258178710938}, "domain": "pixel"}, {"position": {"minX": 212.375, "minY": 200.25, "maxX": 225.375, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011892318725585938}, "domain": "pixel"}, {"position": {"minX": 173.875, "minY": 192.875, "maxX": 195.875, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010547637939453125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_6aba890600d02089125b.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_6aba890600d02089125b.boxes2D.json new file mode 100644 index 0000000..b1a033e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_6aba890600d02089125b.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 576.5, "minY": 251.125, "maxX": 599.5, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.412841796875}, "domain": "pixel"}, {"position": {"minX": 335.75, "minY": 218.125, "maxX": 355.25, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.393", "scores": {"class_score": 0.392578125}, "domain": "pixel"}, {"position": {"minX": 447.75, "minY": 235.25, "maxX": 469.25, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.391357421875}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 240.5, "maxX": 546.5, "maxY": 267.75}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.390869140625}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 210.0, "maxX": 312.0, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.373", "scores": {"class_score": 0.373046875}, "domain": "pixel"}, {"position": {"minX": 387.5, "minY": 226.25, "maxX": 405.5, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.365966796875}, "domain": "pixel"}, {"position": {"minX": 219.5, "minY": 205.875, "maxX": 233.25, "maxY": 225.125}, "class_id": 0, "box_caption": "coureur 0.290", "scores": {"class_score": 0.289794921875}, "domain": "pixel"}, {"position": {"minX": 158.375, "minY": 199.0, "maxX": 173.375, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.096", "scores": {"class_score": 0.09649658203125}, "domain": "pixel"}, {"position": {"minX": 220.0, "minY": 212.0, "maxX": 234.25, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005199432373046875}, "domain": "pixel"}, {"position": {"minX": 223.125, "minY": 209.25, "maxX": 237.625, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028781890869140625}, "domain": "pixel"}, {"position": {"minX": 441.0, "minY": 234.125, "maxX": 464.5, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012493133544921875}, "domain": "pixel"}, {"position": {"minX": 177.625, "minY": 200.125, "maxX": 197.375, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010585784912109375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_7e22d15bceeec9d50437.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_7e22d15bceeec9d50437.boxes2D.json new file mode 100644 index 0000000..b3d9b01 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_7e22d15bceeec9d50437.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 530.5, "minY": 241.625, "maxX": 551.5, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.424560546875}, "domain": "pixel"}, {"position": {"minX": 455.0, "minY": 232.75, "maxX": 478.0, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.424072265625}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 251.375, "maxX": 607.5, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.408203125}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 216.875, "maxX": 363.25, "maxY": 242.375}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.3662109375}, "domain": "pixel"}, {"position": {"minX": 303.0, "minY": 211.625, "maxX": 322.5, "maxY": 232.125}, "class_id": 0, "box_caption": "coureur 0.341", "scores": {"class_score": 0.3408203125}, "domain": "pixel"}, {"position": {"minX": 173.5, "minY": 196.875, "maxX": 188.0, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.277", "scores": {"class_score": 0.27685546875}, "domain": "pixel"}, {"position": {"minX": 238.125, "minY": 201.5, "maxX": 253.375, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.269", "scores": {"class_score": 0.26904296875}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 229.625, "maxX": 412.5, "maxY": 249.875}, "class_id": 0, "box_caption": "coureur 0.247", "scores": {"class_score": 0.24658203125}, "domain": "pixel"}, {"position": {"minX": 250.25, "minY": 211.75, "maxX": 264.25, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0199432373046875}, "domain": "pixel"}, {"position": {"minX": 242.25, "minY": 207.5, "maxX": 258.25, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0196075439453125}, "domain": "pixel"}, {"position": {"minX": 169.25, "minY": 195.5, "maxX": 185.0, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0117950439453125}, "domain": "pixel"}, {"position": {"minX": 235.0, "minY": 200.25, "maxX": 249.75, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01178741455078125}, "domain": "pixel"}, {"position": {"minX": 246.75, "minY": 205.5, "maxX": 261.75, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01148223876953125}, "domain": "pixel"}, {"position": {"minX": 170.25, "minY": 194.25, "maxX": 191.5, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00934600830078125}, "domain": "pixel"}, {"position": {"minX": 175.75, "minY": 200.375, "maxX": 191.25, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005504608154296875}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 224.625, "maxX": 410.5, "maxY": 247.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035114288330078125}, "domain": "pixel"}, {"position": {"minX": 298.0, "minY": 208.75, "maxX": 318.0, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030422210693359375}, "domain": "pixel"}, {"position": {"minX": 252.125, "minY": 214.5, "maxX": 266.75, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002208709716796875}, "domain": "pixel"}, {"position": {"minX": 591.5, "minY": 250.25, "maxX": 613.5, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00212860107421875}, "domain": "pixel"}, {"position": {"minX": 172.5, "minY": 204.125, "maxX": 189.75, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020885467529296875}, "domain": "pixel"}, {"position": {"minX": 394.0, "minY": 230.125, "maxX": 411.0, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018873214721679688}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 222.25, "maxX": 412.25, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001617431640625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_8163767f25841078f985.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_8163767f25841078f985.boxes2D.json new file mode 100644 index 0000000..4a17ffa --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_8163767f25841078f985.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 299.0, "minY": 209.125, "maxX": 318.5, "maxY": 230.375}, "class_id": 0, "box_caption": "coureur 0.436", "scores": {"class_score": 0.436279296875}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 232.0, "maxX": 473.5, "maxY": 255.75}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.422119140625}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 248.5, "maxX": 601.0, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.37744140625}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 241.875, "maxX": 544.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.357", "scores": {"class_score": 0.357421875}, "domain": "pixel"}, {"position": {"minX": 341.5, "minY": 214.5, "maxX": 359.0, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.343994140625}, "domain": "pixel"}, {"position": {"minX": 168.75, "minY": 193.0, "maxX": 183.75, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.319", "scores": {"class_score": 0.3193359375}, "domain": "pixel"}, {"position": {"minX": 234.0, "minY": 199.75, "maxX": 253.0, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.305", "scores": {"class_score": 0.304931640625}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 228.75, "maxX": 408.0, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.223", "scores": {"class_score": 0.223388671875}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 195.875, "maxX": 249.5, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002429962158203125}, "domain": "pixel"}, {"position": {"minX": 522.5, "minY": 239.125, "maxX": 540.5, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015773773193359375}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 243.5, "maxX": 549.5, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011997222900390625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_8c9ab32222a714ac2678.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_8c9ab32222a714ac2678.boxes2D.json new file mode 100644 index 0000000..18faca6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_8c9ab32222a714ac2678.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 371.25, "minY": 161.5, "maxX": 401.75, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.44140625}, "domain": "pixel"}, {"position": {"minX": 120.6875, "minY": 258.75, "maxX": 182.75, "maxY": 334.75}, "class_id": 0, "box_caption": "coureur 0.438", "scores": {"class_score": 0.43798828125}, "domain": "pixel"}, {"position": {"minX": 410.75, "minY": 185.75, "maxX": 478.25, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.417", "scores": {"class_score": 0.416748046875}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 126.125, "maxX": 379.0, "maxY": 177.625}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.397216796875}, "domain": "pixel"}, {"position": {"minX": 429.5, "minY": 245.75, "maxX": 468.5, "maxY": 313.75}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.375244140625}, "domain": "pixel"}, {"position": {"minX": 209.0, "minY": 125.75, "maxX": 275.75, "maxY": 198.75}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.359130859375}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 202.375, "maxX": 470.5, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.171", "scores": {"class_score": 0.1710205078125}, "domain": "pixel"}, {"position": {"minX": 254.0, "minY": 170.375, "maxX": 273.0, "maxY": 203.625}, "class_id": 0, "box_caption": "coureur 0.076", "scores": {"class_score": 0.07611083984375}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 219.875, "maxX": 463.75, "maxY": 267.25}, "class_id": 0, "box_caption": "coureur 0.058", "scores": {"class_score": 0.057769775390625}, "domain": "pixel"}, {"position": {"minX": 437.5, "minY": 246.75, "maxX": 465.0, "maxY": 301.75}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.0309600830078125}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 59.90625, "maxX": 533.5, "maxY": 94.125}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.030426025390625}, "domain": "pixel"}, {"position": {"minX": 397.0, "minY": 231.125, "maxX": 455.5, "maxY": 282.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0105133056640625}, "domain": "pixel"}, {"position": {"minX": 217.875, "minY": 139.625, "maxX": 270.0, "maxY": 204.625}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01029205322265625}, "domain": "pixel"}, {"position": {"minX": 509.0, "minY": 59.34375, "maxX": 535.0, "maxY": 106.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00824737548828125}, "domain": "pixel"}, {"position": {"minX": 249.625, "minY": 169.75, "maxX": 277.0, "maxY": 208.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0080413818359375}, "domain": "pixel"}, {"position": {"minX": 441.75, "minY": 248.0, "maxX": 476.25, "maxY": 310.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005462646484375}, "domain": "pixel"}, {"position": {"minX": 455.0, "minY": 237.75, "maxX": 477.0, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00298309326171875}, "domain": "pixel"}, {"position": {"minX": 436.25, "minY": 289.25, "maxX": 468.25, "maxY": 324.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002777099609375}, "domain": "pixel"}, {"position": {"minX": 240.75, "minY": 154.375, "maxX": 279.25, "maxY": 209.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002689361572265625}, "domain": "pixel"}, {"position": {"minX": 500.0, "minY": 67.875, "maxX": 534.0, "maxY": 118.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024929046630859375}, "domain": "pixel"}, {"position": {"minX": 430.5, "minY": 180.625, "maxX": 470.5, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020046234130859375}, "domain": "pixel"}, {"position": {"minX": 404.0, "minY": 177.5, "maxX": 463.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014171600341796875}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 122.125, "maxX": 383.25, "maxY": 163.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013933181762695312}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 58.9375, "maxX": 532.0, "maxY": 85.1875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001373291015625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_ab336664f790d969eb32.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_ab336664f790d969eb32.boxes2D.json new file mode 100644 index 0000000..984c825 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_ab336664f790d969eb32.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 442.75, "minY": 221.25, "maxX": 463.75, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.42333984375}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 239.375, "maxX": 584.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.409423828125}, "domain": "pixel"}, {"position": {"minX": 511.75, "minY": 230.0, "maxX": 531.5, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40625}, "domain": "pixel"}, {"position": {"minX": 290.0, "minY": 201.25, "maxX": 310.0, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.338", "scores": {"class_score": 0.338134765625}, "domain": "pixel"}, {"position": {"minX": 228.375, "minY": 192.0, "maxX": 244.625, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.329", "scores": {"class_score": 0.328857421875}, "domain": "pixel"}, {"position": {"minX": 161.625, "minY": 183.875, "maxX": 180.875, "maxY": 207.375}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.3232421875}, "domain": "pixel"}, {"position": {"minX": 380.75, "minY": 211.25, "maxX": 398.25, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.296", "scores": {"class_score": 0.29638671875}, "domain": "pixel"}, {"position": {"minX": 331.75, "minY": 214.75, "maxX": 345.25, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.294", "scores": {"class_score": 0.2939453125}, "domain": "pixel"}, {"position": {"minX": 157.0, "minY": 179.75, "maxX": 184.5, "maxY": 208.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01079559326171875}, "domain": "pixel"}, {"position": {"minX": 99.375, "minY": 185.75, "maxX": 111.875, "maxY": 204.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0049591064453125}, "domain": "pixel"}, {"position": {"minX": 98.3125, "minY": 181.5, "maxX": 113.0625, "maxY": 208.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002132415771484375}, "domain": "pixel"}, {"position": {"minX": 230.625, "minY": 194.5, "maxX": 249.125, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014791488647460938}, "domain": "pixel"}, {"position": {"minX": 506.75, "minY": 231.75, "maxX": 527.0, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011930465698242188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_f590a961c89d605e5a4f.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_f590a961c89d605e5a4f.boxes2D.json new file mode 100644 index 0000000..7df7476 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_f590a961c89d605e5a4f.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 585.0, "minY": 249.75, "maxX": 602.0, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.4296875}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 241.25, "maxX": 556.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.413818359375}, "domain": "pixel"}, {"position": {"minX": 340.0, "minY": 217.0, "maxX": 365.0, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.407470703125}, "domain": "pixel"}, {"position": {"minX": 297.75, "minY": 208.875, "maxX": 315.25, "maxY": 233.125}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.3896484375}, "domain": "pixel"}, {"position": {"minX": 226.25, "minY": 200.125, "maxX": 242.5, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.347", "scores": {"class_score": 0.3466796875}, "domain": "pixel"}, {"position": {"minX": 454.0, "minY": 234.75, "maxX": 470.5, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.34423828125}, "domain": "pixel"}, {"position": {"minX": 167.25, "minY": 196.75, "maxX": 183.75, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.308", "scores": {"class_score": 0.308349609375}, "domain": "pixel"}, {"position": {"minX": 392.5, "minY": 222.25, "maxX": 411.0, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.303", "scores": {"class_score": 0.302734375}, "domain": "pixel"}, {"position": {"minX": 622.0, "minY": 217.125, "maxX": 634.0, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.050", "scores": {"class_score": 0.0504150390625}, "domain": "pixel"}, {"position": {"minX": 394.0, "minY": 228.0, "maxX": 411.0, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030231475830078125}, "domain": "pixel"}, {"position": {"minX": 160.875, "minY": 193.375, "maxX": 185.125, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016260147094726562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_f7a157ff02cfb37af64b.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_f7a157ff02cfb37af64b.boxes2D.json new file mode 100644 index 0000000..a0917d4 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_149_f7a157ff02cfb37af64b.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 587.0, "minY": 252.75, "maxX": 607.0, "maxY": 277.75}, "class_id": 0, "box_caption": "coureur 0.460", "scores": {"class_score": 0.46044921875}, "domain": "pixel"}, {"position": {"minX": 455.0, "minY": 234.5, "maxX": 479.5, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.428955078125}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 240.75, "maxX": 550.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40625}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 218.375, "maxX": 363.75, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.3984375}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 209.875, "maxX": 322.0, "maxY": 235.375}, "class_id": 0, "box_caption": "coureur 0.373", "scores": {"class_score": 0.372802734375}, "domain": "pixel"}, {"position": {"minX": 229.375, "minY": 201.625, "maxX": 247.625, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.324", "scores": {"class_score": 0.324462890625}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 230.5, "maxX": 413.5, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.279", "scores": {"class_score": 0.27880859375}, "domain": "pixel"}, {"position": {"minX": 166.125, "minY": 198.5, "maxX": 182.875, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.163", "scores": {"class_score": 0.1629638671875}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 224.75, "maxX": 413.5, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006145477294921875}, "domain": "pixel"}, {"position": {"minX": 120.9375, "minY": 183.5, "maxX": 143.75, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003704071044921875}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 207.75, "maxX": 317.5, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00319671630859375}, "domain": "pixel"}, {"position": {"minX": 394.0, "minY": 225.75, "maxX": 411.0, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019989013671875}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 226.875, "maxX": 416.25, "maxY": 248.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017719268798828125}, "domain": "pixel"}, {"position": {"minX": 159.125, "minY": 192.375, "maxX": 185.875, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016393661499023438}, "domain": "pixel"}, {"position": {"minX": 171.75, "minY": 206.875, "maxX": 185.75, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013513565063476562}, "domain": "pixel"}, {"position": {"minX": 306.0, "minY": 212.25, "maxX": 328.0, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00118255615234375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_14021ed65a0cadde50cf.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_14021ed65a0cadde50cf.boxes2D.json new file mode 100644 index 0000000..cadc92d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_14021ed65a0cadde50cf.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 586.0, "minY": 252.625, "maxX": 607.0, "maxY": 278.5}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.442138671875}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 241.125, "maxX": 550.5, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.419677734375}, "domain": "pixel"}, {"position": {"minX": 453.5, "minY": 232.25, "maxX": 479.0, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.406494140625}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 217.875, "maxX": 363.25, "maxY": 243.875}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.39697265625}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 208.75, "maxX": 320.0, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.3916015625}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 201.125, "maxX": 246.5, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.329", "scores": {"class_score": 0.32861328125}, "domain": "pixel"}, {"position": {"minX": 398.75, "minY": 229.5, "maxX": 413.25, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.246", "scores": {"class_score": 0.2462158203125}, "domain": "pixel"}, {"position": {"minX": 168.625, "minY": 200.125, "maxX": 181.625, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.0266571044921875}, "domain": "pixel"}, {"position": {"minX": 171.625, "minY": 202.375, "maxX": 183.125, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.02386474609375}, "domain": "pixel"}, {"position": {"minX": 165.375, "minY": 197.875, "maxX": 179.875, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0077056884765625}, "domain": "pixel"}, {"position": {"minX": 226.25, "minY": 200.0, "maxX": 241.25, "maxY": 226.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00411224365234375}, "domain": "pixel"}, {"position": {"minX": 122.75, "minY": 190.25, "maxX": 138.75, "maxY": 212.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036945343017578125}, "domain": "pixel"}, {"position": {"minX": 394.0, "minY": 227.75, "maxX": 411.0, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030517578125}, "domain": "pixel"}, {"position": {"minX": 173.125, "minY": 206.5, "maxX": 185.625, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014066696166992188}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 225.0, "maxX": 413.5, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001087188720703125}, "domain": "pixel"}, {"position": {"minX": 120.125, "minY": 187.375, "maxX": 143.625, "maxY": 213.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010480880737304688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_14992734b95fdad2ff2b.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_14992734b95fdad2ff2b.boxes2D.json new file mode 100644 index 0000000..eec4938 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_14992734b95fdad2ff2b.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.25, "minY": 216.75, "maxX": 364.75, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.44580078125}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 242.0, "maxX": 557.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.4140625}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 250.375, "maxX": 601.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.412841796875}, "domain": "pixel"}, {"position": {"minX": 297.25, "minY": 207.875, "maxX": 315.25, "maxY": 234.625}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.4033203125}, "domain": "pixel"}, {"position": {"minX": 454.25, "minY": 233.75, "maxX": 469.75, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.381103515625}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 199.125, "maxX": 242.125, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.356", "scores": {"class_score": 0.35595703125}, "domain": "pixel"}, {"position": {"minX": 392.5, "minY": 224.0, "maxX": 411.0, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.3232421875}, "domain": "pixel"}, {"position": {"minX": 168.25, "minY": 195.375, "maxX": 183.0, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.291", "scores": {"class_score": 0.29052734375}, "domain": "pixel"}, {"position": {"minX": 623.0, "minY": 217.875, "maxX": 633.0, "maxY": 242.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005725860595703125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 226.0, "maxX": 415.0, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002208709716796875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_26b2bf98a348323f761f.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_26b2bf98a348323f761f.boxes2D.json new file mode 100644 index 0000000..75c5e1d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_26b2bf98a348323f761f.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 442.0, "minY": 230.125, "maxX": 465.0, "maxY": 255.125}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.424560546875}, "domain": "pixel"}, {"position": {"minX": 573.0, "minY": 244.625, "maxX": 587.0, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.424072265625}, "domain": "pixel"}, {"position": {"minX": 331.75, "minY": 211.125, "maxX": 351.25, "maxY": 237.375}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.401611328125}, "domain": "pixel"}, {"position": {"minX": 517.5, "minY": 237.0, "maxX": 533.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.396728515625}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 205.375, "maxX": 308.5, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.38720703125}, "domain": "pixel"}, {"position": {"minX": 223.625, "minY": 193.375, "maxX": 242.875, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380615234375}, "domain": "pixel"}, {"position": {"minX": 387.5, "minY": 215.0, "maxX": 403.0, "maxY": 237.5}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.343505859375}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 220.125, "maxX": 402.0, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0132904052734375}, "domain": "pixel"}, {"position": {"minX": 591.5, "minY": 45.71875, "maxX": 618.5, "maxY": 93.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020008087158203125}, "domain": "pixel"}, {"position": {"minX": 172.875, "minY": 196.375, "maxX": 187.375, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001033782958984375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_333c733db68072c142f8.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_333c733db68072c142f8.boxes2D.json new file mode 100644 index 0000000..3b178bf --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_333c733db68072c142f8.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 568.0, "minY": 244.5, "maxX": 590.0, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.3935546875}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 225.875, "maxX": 461.0, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.393", "scores": {"class_score": 0.392578125}, "domain": "pixel"}, {"position": {"minX": 512.5, "minY": 235.0, "maxX": 532.5, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.393", "scores": {"class_score": 0.392578125}, "domain": "pixel"}, {"position": {"minX": 385.5, "minY": 224.25, "maxX": 396.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.37158203125}, "domain": "pixel"}, {"position": {"minX": 289.75, "minY": 203.625, "maxX": 306.75, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.371337890625}, "domain": "pixel"}, {"position": {"minX": 161.125, "minY": 190.0, "maxX": 175.125, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.368", "scores": {"class_score": 0.3681640625}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 212.875, "maxX": 347.5, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.361", "scores": {"class_score": 0.361083984375}, "domain": "pixel"}, {"position": {"minX": 225.75, "minY": 193.75, "maxX": 241.0, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.291", "scores": {"class_score": 0.290771484375}, "domain": "pixel"}, {"position": {"minX": 548.5, "minY": 21.890625, "maxX": 578.5, "maxY": 60.6875}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0182037353515625}, "domain": "pixel"}, {"position": {"minX": 156.875, "minY": 191.0, "maxX": 172.625, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.010467529296875}, "domain": "pixel"}, {"position": {"minX": 381.0, "minY": 221.625, "maxX": 395.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007244110107421875}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 47.3125, "maxX": 592.5, "maxY": 91.1875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00211334228515625}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 217.375, "maxX": 397.0, "maxY": 240.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014514923095703125}, "domain": "pixel"}, {"position": {"minX": 229.5, "minY": 192.75, "maxX": 243.5, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001194000244140625}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 227.25, "maxX": 398.75, "maxY": 250.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010328292846679688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_3f10d1b8c13f8efd8925.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_3f10d1b8c13f8efd8925.boxes2D.json new file mode 100644 index 0000000..40deeb9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_3f10d1b8c13f8efd8925.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 449.25, "minY": 232.25, "maxX": 473.25, "maxY": 256.5}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.425537109375}, "domain": "pixel"}, {"position": {"minX": 582.0, "minY": 248.625, "maxX": 601.0, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.413330078125}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 207.625, "maxX": 317.25, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.401123046875}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 241.75, "maxX": 544.0, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.37158203125}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 200.0, "maxX": 252.0, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.365", "scores": {"class_score": 0.365478515625}, "domain": "pixel"}, {"position": {"minX": 341.25, "minY": 214.5, "maxX": 357.25, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.345", "scores": {"class_score": 0.34521484375}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 228.5, "maxX": 407.25, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.294", "scores": {"class_score": 0.293701171875}, "domain": "pixel"}, {"position": {"minX": 170.375, "minY": 194.625, "maxX": 183.125, "maxY": 216.375}, "class_id": 0, "box_caption": "coureur 0.242", "scores": {"class_score": 0.2415771484375}, "domain": "pixel"}, {"position": {"minX": 198.125, "minY": 203.0, "maxX": 207.625, "maxY": 220.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026149749755859375}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 223.875, "maxX": 407.5, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024871826171875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_4259dc2df27c29078c5c.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_4259dc2df27c29078c5c.boxes2D.json new file mode 100644 index 0000000..950d06d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_4259dc2df27c29078c5c.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 337.0, "minY": 212.75, "maxX": 357.0, "maxY": 242.0}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.438720703125}, "domain": "pixel"}, {"position": {"minX": 522.0, "minY": 237.0, "maxX": 543.0, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.410888671875}, "domain": "pixel"}, {"position": {"minX": 449.75, "minY": 231.625, "maxX": 462.25, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.4091796875}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 248.125, "maxX": 595.0, "maxY": 274.25}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.408447265625}, "domain": "pixel"}, {"position": {"minX": 297.0, "minY": 207.875, "maxX": 312.0, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.34619140625}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 225.375, "maxX": 402.25, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.319", "scores": {"class_score": 0.3193359375}, "domain": "pixel"}, {"position": {"minX": 233.0, "minY": 200.75, "maxX": 253.0, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.195", "scores": {"class_score": 0.1947021484375}, "domain": "pixel"}, {"position": {"minX": 173.875, "minY": 201.375, "maxX": 183.875, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.032", "scores": {"class_score": 0.0318603515625}, "domain": "pixel"}, {"position": {"minX": 236.75, "minY": 199.75, "maxX": 258.5, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.015777587890625}, "domain": "pixel"}, {"position": {"minX": 451.5, "minY": 232.875, "maxX": 467.0, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01242828369140625}, "domain": "pixel"}, {"position": {"minX": 445.5, "minY": 233.75, "maxX": 459.5, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007282257080078125}, "domain": "pixel"}, {"position": {"minX": 593.5, "minY": 22.03125, "maxX": 628.5, "maxY": 62.59375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00432586669921875}, "domain": "pixel"}, {"position": {"minX": 229.875, "minY": 198.0, "maxX": 248.625, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001949310302734375}, "domain": "pixel"}, {"position": {"minX": 170.625, "minY": 197.375, "maxX": 181.375, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012331008911132812}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_4f79b8def31460f69ba0.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_4f79b8def31460f69ba0.boxes2D.json new file mode 100644 index 0000000..e1cf726 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_4f79b8def31460f69ba0.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 590.0, "minY": 251.375, "maxX": 605.0, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.451", "scores": {"class_score": 0.450927734375}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 215.625, "maxX": 366.25, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.440673828125}, "domain": "pixel"}, {"position": {"minX": 530.5, "minY": 241.75, "maxX": 551.5, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.432", "scores": {"class_score": 0.431640625}, "domain": "pixel"}, {"position": {"minX": 456.0, "minY": 234.0, "maxX": 480.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.408203125}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 199.125, "maxX": 252.25, "maxY": 226.125}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.404052734375}, "domain": "pixel"}, {"position": {"minX": 305.0, "minY": 209.0, "maxX": 322.0, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.3798828125}, "domain": "pixel"}, {"position": {"minX": 400.0, "minY": 227.75, "maxX": 413.0, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.282", "scores": {"class_score": 0.282470703125}, "domain": "pixel"}, {"position": {"minX": 175.25, "minY": 197.375, "maxX": 188.5, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.136", "scores": {"class_score": 0.136474609375}, "domain": "pixel"}, {"position": {"minX": 171.5, "minY": 199.625, "maxX": 183.5, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004425048828125}, "domain": "pixel"}, {"position": {"minX": 396.0, "minY": 224.125, "maxX": 412.0, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0043182373046875}, "domain": "pixel"}, {"position": {"minX": 179.375, "minY": 199.5, "maxX": 191.875, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038013458251953125}, "domain": "pixel"}, {"position": {"minX": 299.25, "minY": 207.375, "maxX": 316.75, "maxY": 232.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020198822021484375}, "domain": "pixel"}, {"position": {"minX": 115.25, "minY": 194.375, "maxX": 130.25, "maxY": 212.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001983642578125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_6b38f38f89cf648367e4.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_6b38f38f89cf648367e4.boxes2D.json new file mode 100644 index 0000000..dacf8f2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_6b38f38f89cf648367e4.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 335.0, "minY": 216.25, "maxX": 353.5, "maxY": 242.25}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.413818359375}, "domain": "pixel"}, {"position": {"minX": 448.25, "minY": 234.625, "maxX": 468.75, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.41259765625}, "domain": "pixel"}, {"position": {"minX": 291.75, "minY": 209.25, "maxX": 311.25, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.410888671875}, "domain": "pixel"}, {"position": {"minX": 519.0, "minY": 241.5, "maxX": 546.0, "maxY": 268.25}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40625}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 252.375, "maxX": 601.0, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40625}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 225.0, "maxX": 406.25, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380859375}, "domain": "pixel"}, {"position": {"minX": 220.875, "minY": 207.5, "maxX": 233.125, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.257", "scores": {"class_score": 0.257080078125}, "domain": "pixel"}, {"position": {"minX": 159.25, "minY": 199.5, "maxX": 174.5, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.107", "scores": {"class_score": 0.10693359375}, "domain": "pixel"}, {"position": {"minX": 217.25, "minY": 203.0, "maxX": 231.75, "maxY": 225.5}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0224609375}, "domain": "pixel"}, {"position": {"minX": 223.875, "minY": 208.5, "maxX": 237.125, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01177215576171875}, "domain": "pixel"}, {"position": {"minX": 220.625, "minY": 201.125, "maxX": 235.875, "maxY": 223.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004180908203125}, "domain": "pixel"}, {"position": {"minX": 220.375, "minY": 212.5, "maxX": 233.875, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003398895263671875}, "domain": "pixel"}, {"position": {"minX": 157.75, "minY": 196.0, "maxX": 179.5, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025730133056640625}, "domain": "pixel"}, {"position": {"minX": 218.25, "minY": 205.75, "maxX": 238.0, "maxY": 226.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020236968994140625}, "domain": "pixel"}, {"position": {"minX": 168.5, "minY": 202.5, "maxX": 185.75, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00121307373046875}, "domain": "pixel"}, {"position": {"minX": 153.625, "minY": 198.875, "maxX": 172.125, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001178741455078125}, "domain": "pixel"}, {"position": {"minX": 409.5, "minY": -1.3125, "maxX": 502.5, "maxY": 194.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010824203491210938}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_6bc7c5bbef6a5be6ba98.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_6bc7c5bbef6a5be6ba98.boxes2D.json new file mode 100644 index 0000000..c97692e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_6bc7c5bbef6a5be6ba98.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.0, "minY": 215.625, "maxX": 357.5, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.432", "scores": {"class_score": 0.431640625}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 251.5, "maxX": 603.0, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.41259765625}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 210.875, "maxX": 311.25, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.411865234375}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 234.375, "maxX": 474.0, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.4052734375}, "domain": "pixel"}, {"position": {"minX": 222.875, "minY": 198.625, "maxX": 240.625, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.383544921875}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 241.75, "maxX": 545.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.37158203125}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 231.625, "maxX": 405.75, "maxY": 250.875}, "class_id": 0, "box_caption": "coureur 0.340", "scores": {"class_score": 0.340087890625}, "domain": "pixel"}, {"position": {"minX": 163.75, "minY": 197.75, "maxX": 182.5, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.123", "scores": {"class_score": 0.12261962890625}, "domain": "pixel"}, {"position": {"minX": 159.625, "minY": 200.125, "maxX": 177.875, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020923614501953125}, "domain": "pixel"}, {"position": {"minX": 166.875, "minY": 200.125, "maxX": 186.125, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019178390502929688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_77e1e6da5bfb30e2db47.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_77e1e6da5bfb30e2db47.boxes2D.json new file mode 100644 index 0000000..2feeb05 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_77e1e6da5bfb30e2db47.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 345.75, "minY": 223.125, "maxX": 368.25, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.427490234375}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 242.5, "maxX": 557.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.4140625}, "domain": "pixel"}, {"position": {"minX": 590.0, "minY": 252.125, "maxX": 606.0, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.40087890625}, "domain": "pixel"}, {"position": {"minX": 456.25, "minY": 233.375, "maxX": 474.25, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.3662109375}, "domain": "pixel"}, {"position": {"minX": 304.25, "minY": 208.75, "maxX": 318.25, "maxY": 235.0}, "class_id": 0, "box_caption": "coureur 0.349", "scores": {"class_score": 0.349365234375}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 230.125, "maxX": 412.5, "maxY": 249.375}, "class_id": 0, "box_caption": "coureur 0.337", "scores": {"class_score": 0.3369140625}, "domain": "pixel"}, {"position": {"minX": 234.0, "minY": 205.0, "maxX": 249.5, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.313", "scores": {"class_score": 0.3134765625}, "domain": "pixel"}, {"position": {"minX": 395.25, "minY": 228.375, "maxX": 410.25, "maxY": 248.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005397796630859375}, "domain": "pixel"}, {"position": {"minX": 178.875, "minY": 197.0, "maxX": 191.875, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004077911376953125}, "domain": "pixel"}, {"position": {"minX": 299.75, "minY": 206.375, "maxX": 314.25, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037631988525390625}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 224.0, "maxX": 412.0, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003467559814453125}, "domain": "pixel"}, {"position": {"minX": 176.25, "minY": 198.375, "maxX": 188.75, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002777099609375}, "domain": "pixel"}, {"position": {"minX": 238.625, "minY": 204.625, "maxX": 252.875, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014677047729492188}, "domain": "pixel"}, {"position": {"minX": 235.5, "minY": 206.625, "maxX": 252.25, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010137557983398438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_7b0d63edc05e142deeec.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_7b0d63edc05e142deeec.boxes2D.json new file mode 100644 index 0000000..bce00b2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_7b0d63edc05e142deeec.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 343.0, "minY": 214.5, "maxX": 364.0, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.42041015625}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 206.375, "maxX": 317.5, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.40478515625}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 249.125, "maxX": 602.0, "maxY": 273.75}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.396484375}, "domain": "pixel"}, {"position": {"minX": 454.0, "minY": 229.5, "maxX": 470.5, "maxY": 256.25}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.390625}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 243.25, "maxX": 553.5, "maxY": 267.25}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.3896484375}, "domain": "pixel"}, {"position": {"minX": 235.5, "minY": 199.375, "maxX": 250.75, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.376", "scores": {"class_score": 0.375732421875}, "domain": "pixel"}, {"position": {"minX": 395.75, "minY": 226.25, "maxX": 410.25, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.331", "scores": {"class_score": 0.33056640625}, "domain": "pixel"}, {"position": {"minX": 176.25, "minY": 199.0, "maxX": 188.25, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.186", "scores": {"class_score": 0.186279296875}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 223.625, "maxX": 409.75, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.025909423828125}, "domain": "pixel"}, {"position": {"minX": 392.75, "minY": 228.875, "maxX": 408.75, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0087127685546875}, "domain": "pixel"}, {"position": {"minX": 587.0, "minY": 252.375, "maxX": 605.0, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001220703125}, "domain": "pixel"}, {"position": {"minX": 232.0, "minY": 197.625, "maxX": 247.5, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00118255615234375}, "domain": "pixel"}, {"position": {"minX": 96.25, "minY": 95.6875, "maxX": 121.625, "maxY": 137.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010929107666015625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_7d818714e4b362fe9f78.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_7d818714e4b362fe9f78.boxes2D.json new file mode 100644 index 0000000..67ea6ad --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_7d818714e4b362fe9f78.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 218.0, "minY": 201.25, "maxX": 239.75, "maxY": 226.75}, "class_id": 0, "box_caption": "coureur 0.432", "scores": {"class_score": 0.432373046875}, "domain": "pixel"}, {"position": {"minX": 332.0, "minY": 216.0, "maxX": 354.0, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.4296875}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 250.625, "maxX": 596.0, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.395751953125}, "domain": "pixel"}, {"position": {"minX": 289.25, "minY": 208.875, "maxX": 306.75, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.390869140625}, "domain": "pixel"}, {"position": {"minX": 519.5, "minY": 239.75, "maxX": 541.5, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.3876953125}, "domain": "pixel"}, {"position": {"minX": 445.5, "minY": 235.75, "maxX": 467.5, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.376", "scores": {"class_score": 0.37646484375}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 221.0, "maxX": 402.75, "maxY": 245.75}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.3525390625}, "domain": "pixel"}, {"position": {"minX": 156.5, "minY": 197.125, "maxX": 169.5, "maxY": 218.375}, "class_id": 0, "box_caption": "coureur 0.237", "scores": {"class_score": 0.2374267578125}, "domain": "pixel"}, {"position": {"minX": 386.25, "minY": 216.625, "maxX": 400.75, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.057", "scores": {"class_score": 0.05731201171875}, "domain": "pixel"}, {"position": {"minX": 158.875, "minY": 199.875, "maxX": 173.375, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0047607421875}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 211.5, "maxX": 402.5, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00261688232421875}, "domain": "pixel"}, {"position": {"minX": 283.25, "minY": 207.125, "maxX": 300.75, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016689300537109375}, "domain": "pixel"}, {"position": {"minX": 569.5, "minY": 249.5, "maxX": 591.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012874603271484375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_86449b083bb152c5e354.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_86449b083bb152c5e354.boxes2D.json new file mode 100644 index 0000000..c810234 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_86449b083bb152c5e354.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 530.5, "minY": 241.875, "maxX": 551.5, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.4306640625}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 252.125, "maxX": 608.5, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.4140625}, "domain": "pixel"}, {"position": {"minX": 454.75, "minY": 232.0, "maxX": 475.75, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.403564453125}, "domain": "pixel"}, {"position": {"minX": 345.5, "minY": 216.25, "maxX": 361.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.378662109375}, "domain": "pixel"}, {"position": {"minX": 304.0, "minY": 210.0, "maxX": 321.0, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.37451171875}, "domain": "pixel"}, {"position": {"minX": 398.75, "minY": 230.0, "maxX": 412.75, "maxY": 251.5}, "class_id": 0, "box_caption": "coureur 0.332", "scores": {"class_score": 0.33203125}, "domain": "pixel"}, {"position": {"minX": 237.0, "minY": 200.25, "maxX": 251.25, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.288", "scores": {"class_score": 0.288330078125}, "domain": "pixel"}, {"position": {"minX": 175.375, "minY": 199.125, "maxX": 187.625, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.141", "scores": {"class_score": 0.1405029296875}, "domain": "pixel"}, {"position": {"minX": 395.75, "minY": 225.25, "maxX": 411.25, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003490447998046875}, "domain": "pixel"}, {"position": {"minX": 242.375, "minY": 207.125, "maxX": 257.0, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024585723876953125}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 200.25, "maxX": 184.375, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021648406982421875}, "domain": "pixel"}, {"position": {"minX": 240.5, "minY": 202.875, "maxX": 254.0, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019178390502929688}, "domain": "pixel"}, {"position": {"minX": 250.5, "minY": 209.875, "maxX": 264.0, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017299652099609375}, "domain": "pixel"}, {"position": {"minX": 264.75, "minY": 44.625, "maxX": 299.25, "maxY": 91.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016956329345703125}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 207.625, "maxX": 317.25, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015878677368164062}, "domain": "pixel"}, {"position": {"minX": 309.0, "minY": 210.25, "maxX": 326.5, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00145721435546875}, "domain": "pixel"}, {"position": {"minX": 232.5, "minY": 197.125, "maxX": 247.5, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012264251708984375}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 196.0, "maxX": 182.375, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010538101196289062}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_b5544825300eed5953de.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_b5544825300eed5953de.boxes2D.json new file mode 100644 index 0000000..9500ec0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_b5544825300eed5953de.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 512.0, "minY": 230.0, "maxX": 531.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.426513671875}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 220.25, "maxX": 462.75, "maxY": 247.5}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.39599609375}, "domain": "pixel"}, {"position": {"minX": 566.5, "minY": 240.75, "maxX": 583.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.386", "scores": {"class_score": 0.3857421875}, "domain": "pixel"}, {"position": {"minX": 379.75, "minY": 212.5, "maxX": 397.75, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.358", "scores": {"class_score": 0.357666015625}, "domain": "pixel"}, {"position": {"minX": 162.25, "minY": 184.625, "maxX": 181.75, "maxY": 208.875}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.320556640625}, "domain": "pixel"}, {"position": {"minX": 228.25, "minY": 192.0, "maxX": 243.5, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.318", "scores": {"class_score": 0.318115234375}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 202.0, "maxX": 307.0, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.295", "scores": {"class_score": 0.294677734375}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 213.375, "maxX": 345.0, "maxY": 232.375}, "class_id": 0, "box_caption": "coureur 0.272", "scores": {"class_score": 0.27197265625}, "domain": "pixel"}, {"position": {"minX": 100.25, "minY": 186.625, "maxX": 111.75, "maxY": 204.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00328826904296875}, "domain": "pixel"}, {"position": {"minX": 506.75, "minY": 13.90625, "maxX": 541.5, "maxY": 58.90625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001827239990234375}, "domain": "pixel"}, {"position": {"minX": 560.5, "minY": 241.25, "maxX": 580.5, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014982223510742188}, "domain": "pixel"}, {"position": {"minX": 98.8125, "minY": 182.0, "maxX": 112.6875, "maxY": 207.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014390945434570312}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 205.75, "maxX": 346.0, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013570785522460938}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_cba15fedc15ee10a9cdc.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_cba15fedc15ee10a9cdc.boxes2D.json new file mode 100644 index 0000000..5b59399 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_cba15fedc15ee10a9cdc.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 332.25, "minY": 209.375, "maxX": 351.75, "maxY": 233.375}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.423583984375}, "domain": "pixel"}, {"position": {"minX": 444.75, "minY": 221.25, "maxX": 460.25, "maxY": 249.0}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.394775390625}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 233.0, "maxX": 529.5, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.394775390625}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 242.625, "maxX": 584.0, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.385", "scores": {"class_score": 0.385009765625}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 216.375, "maxX": 396.0, "maxY": 237.625}, "class_id": 0, "box_caption": "coureur 0.376", "scores": {"class_score": 0.37646484375}, "domain": "pixel"}, {"position": {"minX": 290.75, "minY": 200.5, "maxX": 304.75, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.348", "scores": {"class_score": 0.34765625}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 191.125, "maxX": 178.375, "maxY": 212.875}, "class_id": 0, "box_caption": "coureur 0.290", "scores": {"class_score": 0.290283203125}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 195.5, "maxX": 240.125, "maxY": 220.25}, "class_id": 0, "box_caption": "coureur 0.290", "scores": {"class_score": 0.2900390625}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 21.125, "maxX": 562.5, "maxY": 61.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004085540771484375}, "domain": "pixel"}, {"position": {"minX": 384.25, "minY": 221.5, "maxX": 398.75, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002285003662109375}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 199.25, "maxX": 245.0, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020751953125}, "domain": "pixel"}, {"position": {"minX": 507.75, "minY": 233.625, "maxX": 525.0, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001575469970703125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_ec04028656d4b118c9ad.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_ec04028656d4b118c9ad.boxes2D.json new file mode 100644 index 0000000..d793d10 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_179_ec04028656d4b118c9ad.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 334.0, "minY": 123.3125, "maxX": 378.0, "maxY": 185.125}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.430419921875}, "domain": "pixel"}, {"position": {"minX": 120.0, "minY": 258.0, "maxX": 183.0, "maxY": 334.5}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.42626953125}, "domain": "pixel"}, {"position": {"minX": 372.0, "minY": 163.25, "maxX": 401.5, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.421142578125}, "domain": "pixel"}, {"position": {"minX": 407.5, "minY": 190.25, "maxX": 477.5, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.398681640625}, "domain": "pixel"}, {"position": {"minX": 434.25, "minY": 247.25, "maxX": 464.75, "maxY": 307.75}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.372314453125}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 222.375, "maxX": 461.5, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.3671875}, "domain": "pixel"}, {"position": {"minX": 204.25, "minY": 130.5, "maxX": 280.0, "maxY": 202.25}, "class_id": 0, "box_caption": "coureur 0.311", "scores": {"class_score": 0.31103515625}, "domain": "pixel"}, {"position": {"minX": 388.25, "minY": 207.375, "maxX": 468.25, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.185", "scores": {"class_score": 0.1854248046875}, "domain": "pixel"}, {"position": {"minX": 429.25, "minY": 257.0, "maxX": 461.75, "maxY": 318.5}, "class_id": 0, "box_caption": "coureur 0.055", "scores": {"class_score": 0.05548095703125}, "domain": "pixel"}, {"position": {"minX": 388.25, "minY": 231.5, "maxX": 453.25, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.052", "scores": {"class_score": 0.05206298828125}, "domain": "pixel"}, {"position": {"minX": 432.25, "minY": 279.0, "maxX": 458.25, "maxY": 319.0}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.019134521484375}, "domain": "pixel"}, {"position": {"minX": 135.25, "minY": 257.5, "maxX": 174.0, "maxY": 318.0}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01493072509765625}, "domain": "pixel"}, {"position": {"minX": 421.75, "minY": 181.125, "maxX": 479.75, "maxY": 232.125}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0133514404296875}, "domain": "pixel"}, {"position": {"minX": 455.5, "minY": 235.875, "maxX": 475.0, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00786590576171875}, "domain": "pixel"}, {"position": {"minX": 255.0, "minY": 167.5, "maxX": 275.5, "maxY": 205.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006084442138671875}, "domain": "pixel"}, {"position": {"minX": 425.5, "minY": 193.25, "maxX": 464.5, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005992889404296875}, "domain": "pixel"}, {"position": {"minX": 228.25, "minY": 125.875, "maxX": 272.5, "maxY": 192.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005283355712890625}, "domain": "pixel"}, {"position": {"minX": 507.25, "minY": 63.875, "maxX": 536.5, "maxY": 119.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004913330078125}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 59.5, "maxX": 533.0, "maxY": 93.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0045318603515625}, "domain": "pixel"}, {"position": {"minX": 438.5, "minY": 280.25, "maxX": 465.0, "maxY": 323.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038967132568359375}, "domain": "pixel"}, {"position": {"minX": 401.25, "minY": 178.625, "maxX": 463.75, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00225830078125}, "domain": "pixel"}, {"position": {"minX": 452.75, "minY": 227.75, "maxX": 472.25, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002044677734375}, "domain": "pixel"}, {"position": {"minX": 442.25, "minY": 249.5, "maxX": 467.75, "maxY": 301.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015850067138671875}, "domain": "pixel"}, {"position": {"minX": 436.75, "minY": 244.5, "maxX": 460.25, "maxY": 295.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014619827270507812}, "domain": "pixel"}, {"position": {"minX": 511.5, "minY": 59.375, "maxX": 534.5, "maxY": 106.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014352798461914062}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 252.125, "maxX": 474.5, "maxY": 304.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001384735107421875}, "domain": "pixel"}, {"position": {"minX": 438.75, "minY": 175.0, "maxX": 492.75, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010328292846679688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_10fe6d93e52b63f77af6.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_10fe6d93e52b63f77af6.boxes2D.json new file mode 100644 index 0000000..ef9672b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_10fe6d93e52b63f77af6.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 586.5, "minY": 252.375, "maxX": 606.5, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.42578125}, "domain": "pixel"}, {"position": {"minX": 454.5, "minY": 231.5, "maxX": 480.5, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.423583984375}, "domain": "pixel"}, {"position": {"minX": 345.25, "minY": 216.5, "maxX": 363.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.4208984375}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 240.375, "maxX": 551.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.418212890625}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 208.75, "maxX": 321.5, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.394287109375}, "domain": "pixel"}, {"position": {"minX": 229.875, "minY": 200.75, "maxX": 248.125, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.379638671875}, "domain": "pixel"}, {"position": {"minX": 398.75, "minY": 230.75, "maxX": 414.25, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.315", "scores": {"class_score": 0.314697265625}, "domain": "pixel"}, {"position": {"minX": 163.75, "minY": 196.5, "maxX": 180.25, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.133", "scores": {"class_score": 0.133056640625}, "domain": "pixel"}, {"position": {"minX": 169.25, "minY": 200.875, "maxX": 182.0, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.0227203369140625}, "domain": "pixel"}, {"position": {"minX": 120.625, "minY": 191.0, "maxX": 139.125, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.02044677734375}, "domain": "pixel"}, {"position": {"minX": 159.0, "minY": 194.75, "maxX": 177.0, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007778167724609375}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 225.625, "maxX": 412.0, "maxY": 247.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001621246337890625}, "domain": "pixel"}, {"position": {"minX": 226.25, "minY": 199.875, "maxX": 242.75, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013074874877929688}, "domain": "pixel"}, {"position": {"minX": 394.25, "minY": 230.5, "maxX": 411.25, "maxY": 253.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00102996826171875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_1619c22998f0ca3a6ca6.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_1619c22998f0ca3a6ca6.boxes2D.json new file mode 100644 index 0000000..431dc41 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_1619c22998f0ca3a6ca6.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 513.5, "minY": 233.375, "maxX": 533.5, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.438", "scores": {"class_score": 0.4384765625}, "domain": "pixel"}, {"position": {"minX": 444.25, "minY": 224.875, "maxX": 461.25, "maxY": 250.125}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.417724609375}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 243.25, "maxX": 589.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.41357421875}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 212.75, "maxX": 347.25, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.412841796875}, "domain": "pixel"}, {"position": {"minX": 159.875, "minY": 189.75, "maxX": 174.375, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.407470703125}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 203.0, "maxX": 309.0, "maxY": 229.25}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.401611328125}, "domain": "pixel"}, {"position": {"minX": 226.75, "minY": 192.5, "maxX": 240.25, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.333", "scores": {"class_score": 0.33251953125}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 223.375, "maxX": 395.75, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.324", "scores": {"class_score": 0.32373046875}, "domain": "pixel"}, {"position": {"minX": 381.0, "minY": 220.75, "maxX": 394.0, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.008331298828125}, "domain": "pixel"}, {"position": {"minX": 165.5, "minY": 190.75, "maxX": 180.75, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006198883056640625}, "domain": "pixel"}, {"position": {"minX": 182.875, "minY": 193.25, "maxX": 195.375, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0040740966796875}, "domain": "pixel"}, {"position": {"minX": 384.25, "minY": 217.0, "maxX": 396.25, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027065277099609375}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 228.75, "maxX": 395.0, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00128173828125}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 215.0, "maxX": 394.5, "maxY": 235.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011205673217773438}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 227.25, "maxX": 398.0, "maxY": 250.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010747909545898438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_183590520041fe6ae227.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_183590520041fe6ae227.boxes2D.json new file mode 100644 index 0000000..3299e34 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_183590520041fe6ae227.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 450.25, "minY": 229.5, "maxX": 473.75, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.440", "scores": {"class_score": 0.439697265625}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 247.125, "maxX": 600.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.426025390625}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 207.0, "maxX": 317.5, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.417", "scores": {"class_score": 0.41748046875}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 241.5, "maxX": 544.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.38916015625}, "domain": "pixel"}, {"position": {"minX": 235.625, "minY": 199.625, "maxX": 251.125, "maxY": 224.875}, "class_id": 0, "box_caption": "coureur 0.362", "scores": {"class_score": 0.362060546875}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 193.25, "maxX": 183.125, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.325927734375}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 229.0, "maxX": 407.25, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.299", "scores": {"class_score": 0.299072265625}, "domain": "pixel"}, {"position": {"minX": 342.5, "minY": 214.0, "maxX": 356.5, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.250", "scores": {"class_score": 0.24951171875}, "domain": "pixel"}, {"position": {"minX": 190.875, "minY": 196.0, "maxX": 202.375, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00814056396484375}, "domain": "pixel"}, {"position": {"minX": 195.125, "minY": 200.875, "maxX": 206.125, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002407073974609375}, "domain": "pixel"}, {"position": {"minX": 177.25, "minY": 196.0, "maxX": 189.5, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020503997802734375}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 224.5, "maxX": 407.5, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019855499267578125}, "domain": "pixel"}, {"position": {"minX": 532.5, "minY": 239.0, "maxX": 548.5, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015811920166015625}, "domain": "pixel"}, {"position": {"minX": 344.0, "minY": 210.5, "maxX": 359.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011196136474609375}, "domain": "pixel"}, {"position": {"minX": 232.0, "minY": 196.0, "maxX": 248.75, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001117706298828125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_281919b5c35bdc20d728.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_281919b5c35bdc20d728.boxes2D.json new file mode 100644 index 0000000..ca52ef7 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_281919b5c35bdc20d728.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 344.5, "minY": 214.0, "maxX": 368.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.42529296875}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 247.875, "maxX": 602.0, "maxY": 274.75}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.421142578125}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 205.0, "maxX": 318.75, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.4130859375}, "domain": "pixel"}, {"position": {"minX": 454.75, "minY": 227.5, "maxX": 471.25, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.403076171875}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 242.0, "maxX": 553.5, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.39892578125}, "domain": "pixel"}, {"position": {"minX": 234.625, "minY": 198.625, "maxX": 249.125, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.391845703125}, "domain": "pixel"}, {"position": {"minX": 395.75, "minY": 227.5, "maxX": 410.25, "maxY": 249.5}, "class_id": 0, "box_caption": "coureur 0.334", "scores": {"class_score": 0.334228515625}, "domain": "pixel"}, {"position": {"minX": 173.875, "minY": 199.625, "maxX": 186.875, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.121", "scores": {"class_score": 0.12127685546875}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 223.875, "maxX": 410.25, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.01776123046875}, "domain": "pixel"}, {"position": {"minX": 237.625, "minY": 201.25, "maxX": 252.375, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005626678466796875}, "domain": "pixel"}, {"position": {"minX": 176.5, "minY": 201.875, "maxX": 190.0, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005146026611328125}, "domain": "pixel"}, {"position": {"minX": 169.625, "minY": 196.5, "maxX": 184.625, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00458526611328125}, "domain": "pixel"}, {"position": {"minX": 135.0, "minY": 194.875, "maxX": 146.0, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002223968505859375}, "domain": "pixel"}, {"position": {"minX": 225.125, "minY": 202.125, "maxX": 238.875, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010118484497070312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_30db06adde2c06afa243.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_30db06adde2c06afa243.boxes2D.json new file mode 100644 index 0000000..cf429e7 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_30db06adde2c06afa243.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 579.5, "minY": 250.125, "maxX": 604.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.42724609375}, "domain": "pixel"}, {"position": {"minX": 339.5, "minY": 214.625, "maxX": 360.5, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.4228515625}, "domain": "pixel"}, {"position": {"minX": 451.0, "minY": 231.75, "maxX": 476.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.410888671875}, "domain": "pixel"}, {"position": {"minX": 223.125, "minY": 199.75, "maxX": 242.875, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.40185546875}, "domain": "pixel"}, {"position": {"minX": 160.75, "minY": 196.75, "maxX": 183.0, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.4013671875}, "domain": "pixel"}, {"position": {"minX": 292.75, "minY": 210.875, "maxX": 312.75, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.3740234375}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 232.25, "maxX": 405.75, "maxY": 251.25}, "class_id": 0, "box_caption": "coureur 0.369", "scores": {"class_score": 0.369140625}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 240.25, "maxX": 545.5, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.361", "scores": {"class_score": 0.36083984375}, "domain": "pixel"}, {"position": {"minX": 392.25, "minY": 235.0, "maxX": 404.75, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00434112548828125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_3ceb56c5cb7a9a7a64c3.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_3ceb56c5cb7a9a7a64c3.boxes2D.json new file mode 100644 index 0000000..7dedd73 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_3ceb56c5cb7a9a7a64c3.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 512.5, "minY": 229.5, "maxX": 531.5, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.44091796875}, "domain": "pixel"}, {"position": {"minX": 443.75, "minY": 218.75, "maxX": 463.25, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.435302734375}, "domain": "pixel"}, {"position": {"minX": 381.75, "minY": 210.5, "maxX": 396.25, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.3828125}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 239.375, "maxX": 583.0, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.369", "scores": {"class_score": 0.36865234375}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 212.25, "maxX": 346.75, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.355", "scores": {"class_score": 0.354736328125}, "domain": "pixel"}, {"position": {"minX": 162.5, "minY": 185.0, "maxX": 181.25, "maxY": 207.25}, "class_id": 0, "box_caption": "coureur 0.350", "scores": {"class_score": 0.35009765625}, "domain": "pixel"}, {"position": {"minX": 229.125, "minY": 190.5, "maxX": 242.875, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.327", "scores": {"class_score": 0.326904296875}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 202.125, "maxX": 308.25, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.305", "scores": {"class_score": 0.305419921875}, "domain": "pixel"}, {"position": {"minX": 560.5, "minY": 239.875, "maxX": 580.5, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016584396362304688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_3f86cf87447d623ebdf8.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_3f86cf87447d623ebdf8.boxes2D.json new file mode 100644 index 0000000..f6d89bc --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_3f86cf87447d623ebdf8.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 445.25, "minY": 220.75, "maxX": 459.25, "maxY": 247.5}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.426513671875}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 200.25, "maxX": 306.5, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.417724609375}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 208.625, "maxX": 351.75, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.41455078125}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 232.25, "maxX": 529.5, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.407958984375}, "domain": "pixel"}, {"position": {"minX": 164.0, "minY": 190.25, "maxX": 181.0, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.3955078125}, "domain": "pixel"}, {"position": {"minX": 383.75, "minY": 213.25, "maxX": 395.25, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.37890625}, "domain": "pixel"}, {"position": {"minX": 568.5, "minY": 242.375, "maxX": 583.5, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.363", "scores": {"class_score": 0.36279296875}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 195.125, "maxX": 241.125, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.340", "scores": {"class_score": 0.340087890625}, "domain": "pixel"}, {"position": {"minX": 379.5, "minY": 212.5, "maxX": 393.5, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0105133056640625}, "domain": "pixel"}, {"position": {"minX": 382.0, "minY": 208.875, "maxX": 395.0, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006500244140625}, "domain": "pixel"}, {"position": {"minX": 229.125, "minY": 197.5, "maxX": 244.125, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031528472900390625}, "domain": "pixel"}, {"position": {"minX": 229.0, "minY": 192.25, "maxX": 244.5, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025424957275390625}, "domain": "pixel"}, {"position": {"minX": 162.75, "minY": 185.25, "maxX": 178.75, "maxY": 210.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019073486328125}, "domain": "pixel"}, {"position": {"minX": 138.625, "minY": 187.25, "maxX": 150.625, "maxY": 205.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015048980712890625}, "domain": "pixel"}, {"position": {"minX": 383.0, "minY": 218.375, "maxX": 395.5, "maxY": 242.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012941360473632812}, "domain": "pixel"}, {"position": {"minX": 508.25, "minY": 232.625, "maxX": 526.0, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010776519775390625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_4826b3c23138a2c569cd.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_4826b3c23138a2c569cd.boxes2D.json new file mode 100644 index 0000000..d495152 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_4826b3c23138a2c569cd.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 220.5, "minY": 201.0, "maxX": 242.0, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.451", "scores": {"class_score": 0.450927734375}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 215.75, "maxX": 356.5, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.44580078125}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 209.75, "maxX": 306.5, "maxY": 235.75}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.402587890625}, "domain": "pixel"}, {"position": {"minX": 447.0, "minY": 233.5, "maxX": 468.5, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.397216796875}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 238.625, "maxX": 541.5, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.390380859375}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 249.75, "maxX": 594.5, "maxY": 273.75}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.3876953125}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 221.25, "maxX": 403.0, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.38427734375}, "domain": "pixel"}, {"position": {"minX": 155.25, "minY": 196.625, "maxX": 168.25, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.308", "scores": {"class_score": 0.308349609375}, "domain": "pixel"}, {"position": {"minX": 217.75, "minY": 202.0, "maxX": 235.25, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00945281982421875}, "domain": "pixel"}, {"position": {"minX": 571.0, "minY": 249.5, "maxX": 590.0, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018815994262695312}, "domain": "pixel"}, {"position": {"minX": 158.875, "minY": 201.0, "maxX": 173.625, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010528564453125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_59b47c63c3a9fa75cfc8.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_59b47c63c3a9fa75cfc8.boxes2D.json new file mode 100644 index 0000000..ec1873b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_59b47c63c3a9fa75cfc8.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 336.25, "minY": 216.0, "maxX": 355.25, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.4072265625}, "domain": "pixel"}, {"position": {"minX": 448.25, "minY": 232.75, "maxX": 468.75, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.4072265625}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 239.75, "maxX": 547.5, "maxY": 267.75}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.398681640625}, "domain": "pixel"}, {"position": {"minX": 386.5, "minY": 223.625, "maxX": 405.0, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.39404296875}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 252.375, "maxX": 601.0, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.3896484375}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 209.75, "maxX": 312.0, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.383056640625}, "domain": "pixel"}, {"position": {"minX": 221.5, "minY": 207.625, "maxX": 234.0, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.354248046875}, "domain": "pixel"}, {"position": {"minX": 163.75, "minY": 203.5, "maxX": 181.5, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.114", "scores": {"class_score": 0.1143798828125}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 204.125, "maxX": 189.125, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.098", "scores": {"class_score": 0.09832763671875}, "domain": "pixel"}, {"position": {"minX": 218.75, "minY": 203.625, "maxX": 232.25, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.077", "scores": {"class_score": 0.0771484375}, "domain": "pixel"}, {"position": {"minX": 160.0, "minY": 201.375, "maxX": 176.0, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.054", "scores": {"class_score": 0.0535888671875}, "domain": "pixel"}, {"position": {"minX": 174.375, "minY": 202.0, "maxX": 193.125, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.0291595458984375}, "domain": "pixel"}, {"position": {"minX": 222.875, "minY": 204.5, "maxX": 238.125, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.0240478515625}, "domain": "pixel"}, {"position": {"minX": 221.0, "minY": 214.0, "maxX": 233.25, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0122833251953125}, "domain": "pixel"}, {"position": {"minX": 158.5, "minY": 198.75, "maxX": 173.0, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0050811767578125}, "domain": "pixel"}, {"position": {"minX": 162.0, "minY": 207.375, "maxX": 184.75, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030307769775390625}, "domain": "pixel"}, {"position": {"minX": 480.25, "minY": -1.71875, "maxX": 558.0, "maxY": 103.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002147674560546875}, "domain": "pixel"}, {"position": {"minX": 168.625, "minY": 208.625, "maxX": 188.625, "maxY": 223.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001209259033203125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_5d73eaaf9f3a87477d50.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_5d73eaaf9f3a87477d50.boxes2D.json new file mode 100644 index 0000000..e590d1f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_5d73eaaf9f3a87477d50.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 434.25, "minY": 244.125, "maxX": 468.25, "maxY": 311.25}, "class_id": 0, "box_caption": "coureur 0.460", "scores": {"class_score": 0.46044921875}, "domain": "pixel"}, {"position": {"minX": 114.75, "minY": 257.0, "maxX": 186.25, "maxY": 339.0}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.448974609375}, "domain": "pixel"}, {"position": {"minX": 408.25, "minY": 187.0, "maxX": 484.75, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.429443359375}, "domain": "pixel"}, {"position": {"minX": 369.75, "minY": 159.375, "maxX": 402.75, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.422607421875}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 122.25, "maxX": 378.0, "maxY": 185.75}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.408935546875}, "domain": "pixel"}, {"position": {"minX": 382.5, "minY": 224.625, "maxX": 461.0, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.396484375}, "domain": "pixel"}, {"position": {"minX": 207.5, "minY": 124.25, "maxX": 279.5, "maxY": 202.0}, "class_id": 0, "box_caption": "coureur 0.341", "scores": {"class_score": 0.3408203125}, "domain": "pixel"}, {"position": {"minX": 505.0, "minY": 60.125, "maxX": 542.0, "maxY": 123.0}, "class_id": 0, "box_caption": "coureur 0.107", "scores": {"class_score": 0.10650634765625}, "domain": "pixel"}, {"position": {"minX": 428.5, "minY": 182.875, "maxX": 471.0, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.039", "scores": {"class_score": 0.038665771484375}, "domain": "pixel"}, {"position": {"minX": 255.375, "minY": 167.375, "maxX": 276.75, "maxY": 205.625}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006572723388671875}, "domain": "pixel"}, {"position": {"minX": 382.5, "minY": 235.625, "maxX": 448.5, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025272369384765625}, "domain": "pixel"}, {"position": {"minX": 401.5, "minY": 179.625, "maxX": 465.0, "maxY": 239.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013227462768554688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_7dd5a995994543f85dc5.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_7dd5a995994543f85dc5.boxes2D.json new file mode 100644 index 0000000..b2d626b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_7dd5a995994543f85dc5.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 455.0, "minY": 231.0, "maxX": 478.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.430908203125}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 251.5, "maxX": 609.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.42529296875}, "domain": "pixel"}, {"position": {"minX": 532.0, "minY": 241.375, "maxX": 551.0, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.415771484375}, "domain": "pixel"}, {"position": {"minX": 304.75, "minY": 212.0, "maxX": 320.75, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.388427734375}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 215.625, "maxX": 361.75, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.380126953125}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 229.625, "maxX": 413.0, "maxY": 253.125}, "class_id": 0, "box_caption": "coureur 0.361", "scores": {"class_score": 0.36083984375}, "domain": "pixel"}, {"position": {"minX": 236.625, "minY": 200.75, "maxX": 250.125, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.312", "scores": {"class_score": 0.31201171875}, "domain": "pixel"}, {"position": {"minX": 174.875, "minY": 196.125, "maxX": 189.375, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.237", "scores": {"class_score": 0.237060546875}, "domain": "pixel"}, {"position": {"minX": 239.125, "minY": 203.875, "maxX": 252.625, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0254364013671875}, "domain": "pixel"}, {"position": {"minX": 233.125, "minY": 196.75, "maxX": 247.875, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030460357666015625}, "domain": "pixel"}, {"position": {"minX": 170.125, "minY": 194.125, "maxX": 185.125, "maxY": 216.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002780914306640625}, "domain": "pixel"}, {"position": {"minX": 306.0, "minY": 208.875, "maxX": 326.5, "maxY": 233.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013532638549804688}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 224.625, "maxX": 411.0, "maxY": 249.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013523101806640625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_80cb833bd370128880c3.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_80cb833bd370128880c3.boxes2D.json new file mode 100644 index 0000000..a09d277 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_80cb833bd370128880c3.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 521.5, "minY": 236.75, "maxX": 543.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.436", "scores": {"class_score": 0.436279296875}, "domain": "pixel"}, {"position": {"minX": 336.25, "minY": 212.125, "maxX": 358.75, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.434814453125}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 247.25, "maxX": 594.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.4287109375}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 230.75, "maxX": 463.5, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.41552734375}, "domain": "pixel"}, {"position": {"minX": 296.75, "minY": 206.5, "maxX": 313.25, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.383544921875}, "domain": "pixel"}, {"position": {"minX": 233.5, "minY": 198.875, "maxX": 255.75, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.36572265625}, "domain": "pixel"}, {"position": {"minX": 388.25, "minY": 225.25, "maxX": 401.75, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.32568359375}, "domain": "pixel"}, {"position": {"minX": 174.0, "minY": 201.5, "maxX": 184.0, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007099151611328125}, "domain": "pixel"}, {"position": {"minX": 445.25, "minY": 231.25, "maxX": 459.75, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004047393798828125}, "domain": "pixel"}, {"position": {"minX": 189.5, "minY": 196.125, "maxX": 201.25, "maxY": 214.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023746490478515625}, "domain": "pixel"}, {"position": {"minX": 169.125, "minY": 196.75, "maxX": 180.125, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013790130615234375}, "domain": "pixel"}, {"position": {"minX": 390.5, "minY": 227.75, "maxX": 405.5, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011501312255859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_c66315f8db88de5bea6a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_c66315f8db88de5bea6a.boxes2D.json new file mode 100644 index 0000000..24fb753 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_c66315f8db88de5bea6a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 234.625, "minY": 198.5, "maxX": 253.625, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.443", "scores": {"class_score": 0.44287109375}, "domain": "pixel"}, {"position": {"minX": 590.0, "minY": 250.875, "maxX": 604.0, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.4345703125}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 214.375, "maxX": 366.75, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.4345703125}, "domain": "pixel"}, {"position": {"minX": 305.75, "minY": 208.25, "maxX": 322.75, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.407958984375}, "domain": "pixel"}, {"position": {"minX": 457.0, "minY": 233.5, "maxX": 481.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.4072265625}, "domain": "pixel"}, {"position": {"minX": 532.0, "minY": 240.625, "maxX": 551.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.392333984375}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 226.75, "maxX": 414.0, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.347", "scores": {"class_score": 0.347412109375}, "domain": "pixel"}, {"position": {"minX": 175.125, "minY": 196.0, "maxX": 187.375, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.337", "scores": {"class_score": 0.337158203125}, "domain": "pixel"}, {"position": {"minX": 114.0, "minY": 190.0, "maxX": 132.625, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.033721923828125}, "domain": "pixel"}, {"position": {"minX": 171.375, "minY": 194.125, "maxX": 184.625, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.025482177734375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_dae928b23b157de55f6f.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_dae928b23b157de55f6f.boxes2D.json new file mode 100644 index 0000000..b9b5982 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_dae928b23b157de55f6f.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 304.25, "minY": 207.375, "maxX": 319.25, "maxY": 237.125}, "class_id": 0, "box_caption": "coureur 0.438", "scores": {"class_score": 0.437744140625}, "domain": "pixel"}, {"position": {"minX": 347.0, "minY": 224.5, "maxX": 369.0, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.431396484375}, "domain": "pixel"}, {"position": {"minX": 525.5, "minY": 242.0, "maxX": 558.5, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.424072265625}, "domain": "pixel"}, {"position": {"minX": 590.0, "minY": 251.625, "maxX": 605.0, "maxY": 278.25}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.39794921875}, "domain": "pixel"}, {"position": {"minX": 456.75, "minY": 233.375, "maxX": 474.25, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.362", "scores": {"class_score": 0.36181640625}, "domain": "pixel"}, {"position": {"minX": 233.75, "minY": 206.375, "maxX": 248.5, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.341", "scores": {"class_score": 0.34130859375}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 230.75, "maxX": 412.5, "maxY": 250.0}, "class_id": 0, "box_caption": "coureur 0.319", "scores": {"class_score": 0.318603515625}, "domain": "pixel"}, {"position": {"minX": 134.625, "minY": 194.0, "maxX": 145.625, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01151275634765625}, "domain": "pixel"}, {"position": {"minX": 176.5, "minY": 194.875, "maxX": 188.75, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0064544677734375}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 205.375, "maxX": 315.25, "maxY": 233.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00321197509765625}, "domain": "pixel"}, {"position": {"minX": 235.25, "minY": 206.875, "maxX": 251.75, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025920867919921875}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 225.625, "maxX": 411.5, "maxY": 249.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00222015380859375}, "domain": "pixel"}, {"position": {"minX": 178.25, "minY": 197.625, "maxX": 191.5, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021991729736328125}, "domain": "pixel"}, {"position": {"minX": 398.25, "minY": 233.375, "maxX": 411.75, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016355514526367188}, "domain": "pixel"}, {"position": {"minX": 307.25, "minY": 203.375, "maxX": 323.75, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015106201171875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_f2dd817c65c068794b6a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_f2dd817c65c068794b6a.boxes2D.json new file mode 100644 index 0000000..11166ef --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_f2dd817c65c068794b6a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 572.5, "minY": 244.875, "maxX": 586.5, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.455", "scores": {"class_score": 0.455322265625}, "domain": "pixel"}, {"position": {"minX": 443.5, "minY": 228.0, "maxX": 465.0, "maxY": 255.0}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.430419921875}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 235.375, "maxX": 534.0, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.41845703125}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 214.125, "maxX": 402.75, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.414306640625}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 210.375, "maxX": 353.0, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.405029296875}, "domain": "pixel"}, {"position": {"minX": 221.25, "minY": 193.25, "maxX": 243.0, "maxY": 220.25}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.40087890625}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 205.625, "maxX": 310.5, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.37353515625}, "domain": "pixel"}, {"position": {"minX": 218.0, "minY": 192.0, "maxX": 238.0, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006114959716796875}, "domain": "pixel"}, {"position": {"minX": 225.5, "minY": 196.5, "maxX": 246.0, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017061233520507812}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 208.25, "maxX": 406.0, "maxY": 235.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014295578002929688}, "domain": "pixel"}, {"position": {"minX": 94.375, "minY": 126.125, "maxX": 123.125, "maxY": 185.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013484954833984375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_f3b2f9d76e43849126d2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_f3b2f9d76e43849126d2.boxes2D.json new file mode 100644 index 0000000..6bb8d4f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_209_f3b2f9d76e43849126d2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 340.75, "minY": 216.25, "maxX": 365.75, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.454", "scores": {"class_score": 0.453857421875}, "domain": "pixel"}, {"position": {"minX": 227.0, "minY": 198.875, "maxX": 242.5, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.4267578125}, "domain": "pixel"}, {"position": {"minX": 584.5, "minY": 249.375, "maxX": 600.5, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.42529296875}, "domain": "pixel"}, {"position": {"minX": 297.0, "minY": 206.875, "maxX": 315.5, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.40673828125}, "domain": "pixel"}, {"position": {"minX": 169.25, "minY": 194.125, "maxX": 183.25, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.402587890625}, "domain": "pixel"}, {"position": {"minX": 454.75, "minY": 232.375, "maxX": 470.75, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.3798828125}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 241.375, "maxX": 560.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.370849609375}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 223.875, "maxX": 411.5, "maxY": 244.875}, "class_id": 0, "box_caption": "coureur 0.365", "scores": {"class_score": 0.365478515625}, "domain": "pixel"}, {"position": {"minX": 622.5, "minY": 217.75, "maxX": 633.5, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.035", "scores": {"class_score": 0.0345458984375}, "domain": "pixel"}, {"position": {"minX": 143.125, "minY": 191.0, "maxX": 156.875, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0179595947265625}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 216.375, "maxX": 413.0, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004180908203125}, "domain": "pixel"}, {"position": {"minX": 144.0, "minY": 192.375, "maxX": 161.5, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015306472778320312}, "domain": "pixel"}, {"position": {"minX": 434.75, "minY": -3.15625, "maxX": 507.75, "maxY": 104.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011148452758789062}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_005db52b3af30dd1d68b.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_005db52b3af30dd1d68b.boxes2D.json new file mode 100644 index 0000000..5cc56b9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_005db52b3af30dd1d68b.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 585.0, "minY": 251.625, "maxX": 610.0, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.4208984375}, "domain": "pixel"}, {"position": {"minX": 455.0, "minY": 231.25, "maxX": 477.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.41357421875}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 241.5, "maxX": 552.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.4130859375}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 228.375, "maxX": 413.0, "maxY": 253.375}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.395751953125}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 216.0, "maxX": 360.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.382", "scores": {"class_score": 0.381591796875}, "domain": "pixel"}, {"position": {"minX": 304.75, "minY": 211.0, "maxX": 322.25, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.38037109375}, "domain": "pixel"}, {"position": {"minX": 236.875, "minY": 199.875, "maxX": 248.875, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.284", "scores": {"class_score": 0.2841796875}, "domain": "pixel"}, {"position": {"minX": 175.375, "minY": 196.5, "maxX": 189.625, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.271", "scores": {"class_score": 0.2705078125}, "domain": "pixel"}, {"position": {"minX": 240.375, "minY": 202.5, "maxX": 252.125, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.017303466796875}, "domain": "pixel"}, {"position": {"minX": 233.875, "minY": 197.5, "maxX": 246.375, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01309967041015625}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 194.125, "maxX": 184.375, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004207611083984375}, "domain": "pixel"}, {"position": {"minX": 170.75, "minY": 198.875, "maxX": 185.75, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013637542724609375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_2b769058a931263a7571.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_2b769058a931263a7571.boxes2D.json new file mode 100644 index 0000000..9ddd4f9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_2b769058a931263a7571.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 344.25, "minY": 214.125, "maxX": 367.75, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.445", "scores": {"class_score": 0.4453125}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 205.75, "maxX": 318.25, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.43115234375}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 248.75, "maxX": 603.5, "maxY": 274.75}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.430908203125}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 242.0, "maxX": 553.0, "maxY": 268.25}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.425048828125}, "domain": "pixel"}, {"position": {"minX": 234.625, "minY": 198.25, "maxX": 248.875, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.418212890625}, "domain": "pixel"}, {"position": {"minX": 453.5, "minY": 228.375, "maxX": 471.0, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.41455078125}, "domain": "pixel"}, {"position": {"minX": 396.0, "minY": 226.0, "maxX": 410.0, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.346435546875}, "domain": "pixel"}, {"position": {"minX": 174.25, "minY": 198.5, "maxX": 186.25, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.311", "scores": {"class_score": 0.31103515625}, "domain": "pixel"}, {"position": {"minX": 176.875, "minY": 200.625, "maxX": 188.625, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01226806640625}, "domain": "pixel"}, {"position": {"minX": 170.875, "minY": 195.375, "maxX": 185.125, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.008758544921875}, "domain": "pixel"}, {"position": {"minX": 238.125, "minY": 200.5, "maxX": 251.625, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0085296630859375}, "domain": "pixel"}, {"position": {"minX": 172.0, "minY": 200.0, "maxX": 183.0, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00444793701171875}, "domain": "pixel"}, {"position": {"minX": 133.5, "minY": 195.25, "maxX": 143.75, "maxY": 211.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004364013671875}, "domain": "pixel"}, {"position": {"minX": 129.25, "minY": 192.125, "maxX": 140.75, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026111602783203125}, "domain": "pixel"}, {"position": {"minX": 173.625, "minY": 192.5, "maxX": 186.875, "maxY": 212.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001987457275390625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_32e239a4a0fa40ac664a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_32e239a4a0fa40ac664a.boxes2D.json new file mode 100644 index 0000000..67db3c3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_32e239a4a0fa40ac664a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 525.5, "minY": 241.875, "maxX": 557.5, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.4462890625}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 223.125, "maxX": 369.75, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.428", "scores": {"class_score": 0.427734375}, "domain": "pixel"}, {"position": {"minX": 304.0, "minY": 207.375, "maxX": 318.5, "maxY": 237.375}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.426513671875}, "domain": "pixel"}, {"position": {"minX": 589.5, "minY": 251.5, "maxX": 605.5, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.4052734375}, "domain": "pixel"}, {"position": {"minX": 457.0, "minY": 233.0, "maxX": 473.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 233.5, "minY": 205.125, "maxX": 248.25, "maxY": 225.125}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.3525390625}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 230.0, "maxX": 412.5, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.350", "scores": {"class_score": 0.35009765625}, "domain": "pixel"}, {"position": {"minX": 178.0, "minY": 197.25, "maxX": 189.5, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.089", "scores": {"class_score": 0.08856201171875}, "domain": "pixel"}, {"position": {"minX": 135.5, "minY": 193.875, "maxX": 145.75, "maxY": 212.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00476837158203125}, "domain": "pixel"}, {"position": {"minX": 235.0, "minY": 206.75, "maxX": 251.25, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024509429931640625}, "domain": "pixel"}, {"position": {"minX": 307.25, "minY": 203.625, "maxX": 323.25, "maxY": 233.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020694732666015625}, "domain": "pixel"}, {"position": {"minX": 398.25, "minY": 225.375, "maxX": 412.25, "maxY": 243.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00200653076171875}, "domain": "pixel"}, {"position": {"minX": 157.5, "minY": 194.375, "maxX": 169.0, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00102996826171875}, "domain": "pixel"}, {"position": {"minX": 139.5, "minY": 193.25, "maxX": 151.5, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010023117065429688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_3fee58f3789a78ad1bab.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_3fee58f3789a78ad1bab.boxes2D.json new file mode 100644 index 0000000..8bff251 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_3fee58f3789a78ad1bab.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 336.75, "minY": 212.375, "maxX": 358.25, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.453", "scores": {"class_score": 0.452880859375}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 230.625, "maxX": 462.5, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.433", "scores": {"class_score": 0.433349609375}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 237.75, "maxX": 544.5, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.425537109375}, "domain": "pixel"}, {"position": {"minX": 575.0, "minY": 248.875, "maxX": 596.0, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.417724609375}, "domain": "pixel"}, {"position": {"minX": 389.75, "minY": 224.75, "maxX": 401.25, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.406982421875}, "domain": "pixel"}, {"position": {"minX": 296.0, "minY": 206.125, "maxX": 313.5, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.394287109375}, "domain": "pixel"}, {"position": {"minX": 233.75, "minY": 199.25, "maxX": 255.0, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.300", "scores": {"class_score": 0.2998046875}, "domain": "pixel"}, {"position": {"minX": 174.0, "minY": 200.5, "maxX": 183.75, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.042", "scores": {"class_score": 0.04248046875}, "domain": "pixel"}, {"position": {"minX": 171.375, "minY": 197.5, "maxX": 180.625, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0178985595703125}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 231.75, "maxX": 459.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0083770751953125}, "domain": "pixel"}, {"position": {"minX": 176.0, "minY": 195.625, "maxX": 187.5, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005401611328125}, "domain": "pixel"}, {"position": {"minX": 189.75, "minY": 197.625, "maxX": 200.75, "maxY": 213.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004337310791015625}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 226.625, "maxX": 404.25, "maxY": 243.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017251968383789062}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 209.125, "maxX": 361.75, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014562606811523438}, "domain": "pixel"}, {"position": {"minX": 168.0, "minY": 193.625, "maxX": 180.25, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012483596801757812}, "domain": "pixel"}, {"position": {"minX": 180.5, "minY": 197.75, "maxX": 193.25, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010967254638671875}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 218.375, "maxX": 402.0, "maxY": 240.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010471343994140625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_46d62705438476c3df91.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_46d62705438476c3df91.boxes2D.json new file mode 100644 index 0000000..38188df --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_46d62705438476c3df91.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 512.5, "minY": 234.75, "maxX": 533.5, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.434814453125}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 241.875, "maxX": 591.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.43017578125}, "domain": "pixel"}, {"position": {"minX": 443.5, "minY": 225.375, "maxX": 461.5, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.410", "scores": {"class_score": 0.41015625}, "domain": "pixel"}, {"position": {"minX": 289.25, "minY": 203.875, "maxX": 308.75, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.40771484375}, "domain": "pixel"}, {"position": {"minX": 159.875, "minY": 189.5, "maxX": 174.625, "maxY": 212.25}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.399169921875}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 212.25, "maxX": 347.75, "maxY": 236.75}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.393798828125}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 222.875, "maxX": 395.75, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.35400390625}, "domain": "pixel"}, {"position": {"minX": 226.5, "minY": 193.875, "maxX": 239.75, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.299", "scores": {"class_score": 0.298828125}, "domain": "pixel"}, {"position": {"minX": 542.0, "minY": 19.84375, "maxX": 574.0, "maxY": 57.84375}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0074920654296875}, "domain": "pixel"}, {"position": {"minX": 229.375, "minY": 192.0, "maxX": 242.375, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0063629150390625}, "domain": "pixel"}, {"position": {"minX": 163.625, "minY": 190.375, "maxX": 177.875, "maxY": 212.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0059814453125}, "domain": "pixel"}, {"position": {"minX": 220.375, "minY": 192.5, "maxX": 233.375, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022640228271484375}, "domain": "pixel"}, {"position": {"minX": 380.25, "minY": 223.75, "maxX": 393.75, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020160675048828125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_4b86bbaa768750e4d28e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_4b86bbaa768750e4d28e.boxes2D.json new file mode 100644 index 0000000..aedd948 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_4b86bbaa768750e4d28e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 511.0, "minY": 228.625, "maxX": 532.0, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.440", "scores": {"class_score": 0.439697265625}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 220.125, "maxX": 463.0, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.422119140625}, "domain": "pixel"}, {"position": {"minX": 380.75, "minY": 212.125, "maxX": 397.25, "maxY": 234.625}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.413818359375}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 239.5, "maxX": 583.0, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.391845703125}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 213.625, "maxX": 346.25, "maxY": 232.625}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.378662109375}, "domain": "pixel"}, {"position": {"minX": 161.25, "minY": 184.75, "maxX": 181.5, "maxY": 208.5}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 229.875, "minY": 193.25, "maxX": 243.375, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.362", "scores": {"class_score": 0.36181640625}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 200.5, "maxX": 308.5, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.288", "scores": {"class_score": 0.28759765625}, "domain": "pixel"}, {"position": {"minX": 99.625, "minY": 186.625, "maxX": 111.375, "maxY": 204.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005657196044921875}, "domain": "pixel"}, {"position": {"minX": 98.0625, "minY": 180.375, "maxX": 112.4375, "maxY": 203.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00434112548828125}, "domain": "pixel"}, {"position": {"minX": 561.0, "minY": 239.25, "maxX": 580.0, "maxY": 265.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002391815185546875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_673ba90365165cf8d718.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_673ba90365165cf8d718.boxes2D.json new file mode 100644 index 0000000..d50cda2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_673ba90365165cf8d718.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.75, "minY": 215.25, "maxX": 365.25, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.463", "scores": {"class_score": 0.46337890625}, "domain": "pixel"}, {"position": {"minX": 583.0, "minY": 249.75, "maxX": 601.0, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.42041015625}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 223.0, "maxX": 413.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.415771484375}, "domain": "pixel"}, {"position": {"minX": 226.5, "minY": 197.25, "maxX": 241.75, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.41162109375}, "domain": "pixel"}, {"position": {"minX": 454.0, "minY": 233.25, "maxX": 469.5, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.408935546875}, "domain": "pixel"}, {"position": {"minX": 297.0, "minY": 206.875, "maxX": 315.5, "maxY": 235.375}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.4033203125}, "domain": "pixel"}, {"position": {"minX": 168.75, "minY": 194.375, "maxX": 184.75, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.376", "scores": {"class_score": 0.376220703125}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 242.125, "maxX": 557.5, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.361", "scores": {"class_score": 0.36083984375}, "domain": "pixel"}, {"position": {"minX": 143.5, "minY": 193.25, "maxX": 155.5, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00262451171875}, "domain": "pixel"}, {"position": {"minX": 145.25, "minY": 190.125, "maxX": 161.0, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012111663818359375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_87d52bfec8e8fd4bf9d1.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_87d52bfec8e8fd4bf9d1.boxes2D.json new file mode 100644 index 0000000..16c9cef --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_87d52bfec8e8fd4bf9d1.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 234.25, "minY": 197.625, "maxX": 255.0, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.460", "scores": {"class_score": 0.4599609375}, "domain": "pixel"}, {"position": {"minX": 589.5, "minY": 251.0, "maxX": 604.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.454", "scores": {"class_score": 0.4541015625}, "domain": "pixel"}, {"position": {"minX": 346.5, "minY": 214.75, "maxX": 367.0, "maxY": 243.75}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.44140625}, "domain": "pixel"}, {"position": {"minX": 305.5, "minY": 208.0, "maxX": 322.5, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.43017578125}, "domain": "pixel"}, {"position": {"minX": 457.25, "minY": 233.5, "maxX": 478.75, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.422119140625}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 240.5, "maxX": 551.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.40380859375}, "domain": "pixel"}, {"position": {"minX": 398.75, "minY": 225.875, "maxX": 413.25, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.387939453125}, "domain": "pixel"}, {"position": {"minX": 174.5, "minY": 195.75, "maxX": 187.0, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.375244140625}, "domain": "pixel"}, {"position": {"minX": 115.3125, "minY": 193.25, "maxX": 130.5, "maxY": 212.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0112152099609375}, "domain": "pixel"}, {"position": {"minX": 172.25, "minY": 197.125, "maxX": 184.0, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027370452880859375}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 206.75, "maxX": 316.25, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001239776611328125}, "domain": "pixel"}, {"position": {"minX": 110.0625, "minY": 189.75, "maxX": 135.75, "maxY": 212.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012388229370117188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_8ca40f682d5be0963e9e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_8ca40f682d5be0963e9e.boxes2D.json new file mode 100644 index 0000000..2a3207c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_8ca40f682d5be0963e9e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 442.5, "minY": 227.25, "maxX": 464.5, "maxY": 255.5}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.439208984375}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 243.375, "maxX": 587.0, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.438720703125}, "domain": "pixel"}, {"position": {"minX": 222.875, "minY": 193.375, "maxX": 244.125, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.424560546875}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 216.25, "maxX": 402.5, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.423583984375}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 236.25, "maxX": 534.0, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.4208984375}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 209.875, "maxX": 351.75, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.407470703125}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 206.625, "maxX": 311.0, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.40234375}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 202.375, "maxX": 308.75, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023345947265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_90768f363c5fee693eaf.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_90768f363c5fee693eaf.boxes2D.json new file mode 100644 index 0000000..3a2fc3c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_90768f363c5fee693eaf.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 117.25, "minY": 256.25, "maxX": 185.25, "maxY": 337.75}, "class_id": 0, "box_caption": "coureur 0.462", "scores": {"class_score": 0.46240234375}, "domain": "pixel"}, {"position": {"minX": 407.5, "minY": 188.5, "maxX": 481.5, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.452", "scores": {"class_score": 0.451904296875}, "domain": "pixel"}, {"position": {"minX": 435.25, "minY": 245.75, "maxX": 465.25, "maxY": 310.25}, "class_id": 0, "box_caption": "coureur 0.434", "scores": {"class_score": 0.43408203125}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 126.3125, "maxX": 373.75, "maxY": 187.125}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.426025390625}, "domain": "pixel"}, {"position": {"minX": 381.0, "minY": 225.875, "maxX": 465.0, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.421875}, "domain": "pixel"}, {"position": {"minX": 370.75, "minY": 162.5, "maxX": 400.75, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.417724609375}, "domain": "pixel"}, {"position": {"minX": 211.625, "minY": 127.625, "maxX": 277.0, "maxY": 199.625}, "class_id": 0, "box_caption": "coureur 0.314", "scores": {"class_score": 0.313720703125}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 232.625, "maxX": 457.0, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.125", "scores": {"class_score": 0.125}, "domain": "pixel"}, {"position": {"minX": 256.25, "minY": 168.75, "maxX": 275.25, "maxY": 205.0}, "class_id": 0, "box_caption": "coureur 0.036", "scores": {"class_score": 0.036224365234375}, "domain": "pixel"}, {"position": {"minX": 505.75, "minY": 63.46875, "maxX": 536.5, "maxY": 121.625}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.03021240234375}, "domain": "pixel"}, {"position": {"minX": 430.5, "minY": 253.375, "maxX": 461.5, "maxY": 321.25}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01323699951171875}, "domain": "pixel"}, {"position": {"minX": 426.75, "minY": 187.875, "maxX": 471.25, "maxY": 247.375}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00672149658203125}, "domain": "pixel"}, {"position": {"minX": 394.0, "minY": 227.75, "maxX": 446.0, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00266265869140625}, "domain": "pixel"}, {"position": {"minX": 404.25, "minY": 180.5, "maxX": 462.25, "maxY": 237.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002521514892578125}, "domain": "pixel"}, {"position": {"minX": 134.0, "minY": 253.375, "maxX": 176.75, "maxY": 322.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001850128173828125}, "domain": "pixel"}, {"position": {"minX": 431.25, "minY": 277.25, "maxX": 456.25, "maxY": 322.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00171661376953125}, "domain": "pixel"}, {"position": {"minX": 423.5, "minY": 243.875, "maxX": 469.0, "maxY": 299.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00151824951171875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_94dea2b1b7b8eb14fc71.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_94dea2b1b7b8eb14fc71.boxes2D.json new file mode 100644 index 0000000..6962204 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_94dea2b1b7b8eb14fc71.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 585.5, "minY": 252.125, "maxX": 607.5, "maxY": 280.75}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.441650390625}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 218.25, "maxX": 364.75, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.433", "scores": {"class_score": 0.4326171875}, "domain": "pixel"}, {"position": {"minX": 453.75, "minY": 231.625, "maxX": 478.75, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.423583984375}, "domain": "pixel"}, {"position": {"minX": 229.5, "minY": 200.25, "maxX": 249.0, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.40380859375}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 208.25, "maxX": 323.0, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.40185546875}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 241.375, "maxX": 551.0, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.39892578125}, "domain": "pixel"}, {"position": {"minX": 399.25, "minY": 229.5, "maxX": 414.25, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.329", "scores": {"class_score": 0.32861328125}, "domain": "pixel"}, {"position": {"minX": 167.5, "minY": 198.25, "maxX": 180.5, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.266", "scores": {"class_score": 0.266357421875}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 225.75, "maxX": 412.0, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006458282470703125}, "domain": "pixel"}, {"position": {"minX": 161.375, "minY": 196.875, "maxX": 176.125, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003261566162109375}, "domain": "pixel"}, {"position": {"minX": 122.25, "minY": 191.875, "maxX": 139.75, "maxY": 213.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012836456298828125}, "domain": "pixel"}, {"position": {"minX": 172.875, "minY": 204.75, "maxX": 184.625, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012254714965820312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_9cae6897b9dad84802b5.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_9cae6897b9dad84802b5.boxes2D.json new file mode 100644 index 0000000..73f7b50 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_9cae6897b9dad84802b5.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 160.375, "minY": 195.75, "maxX": 184.125, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.438", "scores": {"class_score": 0.4375}, "domain": "pixel"}, {"position": {"minX": 340.0, "minY": 215.125, "maxX": 361.5, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.421142578125}, "domain": "pixel"}, {"position": {"minX": 450.75, "minY": 233.125, "maxX": 473.75, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.412353515625}, "domain": "pixel"}, {"position": {"minX": 578.0, "minY": 249.75, "maxX": 604.0, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.412353515625}, "domain": "pixel"}, {"position": {"minX": 291.75, "minY": 211.5, "maxX": 311.75, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.40673828125}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 233.5, "maxX": 405.25, "maxY": 253.0}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.390869140625}, "domain": "pixel"}, {"position": {"minX": 223.75, "minY": 199.25, "maxX": 242.75, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.382", "scores": {"class_score": 0.381591796875}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 241.875, "maxX": 544.5, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.362", "scores": {"class_score": 0.36181640625}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 239.125, "maxX": 541.5, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034198760986328125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_a64d633d72fb209bd7f3.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_a64d633d72fb209bd7f3.boxes2D.json new file mode 100644 index 0000000..2815dd8 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_a64d633d72fb209bd7f3.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 451.0, "minY": 231.0, "maxX": 474.0, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.448", "scores": {"class_score": 0.447509765625}, "domain": "pixel"}, {"position": {"minX": 299.25, "minY": 208.25, "maxX": 317.25, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.41357421875}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 241.25, "maxX": 545.5, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.411376953125}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 247.625, "maxX": 602.0, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.405029296875}, "domain": "pixel"}, {"position": {"minX": 236.125, "minY": 198.375, "maxX": 249.875, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.370", "scores": {"class_score": 0.369873046875}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 228.75, "maxX": 406.25, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.347", "scores": {"class_score": 0.347412109375}, "domain": "pixel"}, {"position": {"minX": 170.0, "minY": 193.625, "maxX": 182.5, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.347", "scores": {"class_score": 0.346923828125}, "domain": "pixel"}, {"position": {"minX": 342.5, "minY": 213.625, "maxX": 357.0, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.285", "scores": {"class_score": 0.284912109375}, "domain": "pixel"}, {"position": {"minX": 192.25, "minY": 195.125, "maxX": 203.25, "maxY": 213.875}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0056304931640625}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 224.625, "maxX": 406.5, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024967193603515625}, "domain": "pixel"}, {"position": {"minX": 524.0, "minY": 239.0, "maxX": 542.0, "maxY": 267.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023632049560546875}, "domain": "pixel"}, {"position": {"minX": 196.625, "minY": 196.25, "maxX": 206.375, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022907257080078125}, "domain": "pixel"}, {"position": {"minX": 177.125, "minY": 195.875, "maxX": 188.625, "maxY": 213.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014276504516601562}, "domain": "pixel"}, {"position": {"minX": 196.875, "minY": 200.0, "maxX": 207.375, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012617111206054688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_cd1ec39a211a09286979.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_cd1ec39a211a09286979.boxes2D.json new file mode 100644 index 0000000..e6494b1 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_cd1ec39a211a09286979.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 331.25, "minY": 209.0, "maxX": 352.25, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.434", "scores": {"class_score": 0.43408203125}, "domain": "pixel"}, {"position": {"minX": 445.5, "minY": 220.25, "maxX": 459.0, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.429443359375}, "domain": "pixel"}, {"position": {"minX": 384.25, "minY": 214.625, "maxX": 397.25, "maxY": 236.625}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.420166015625}, "domain": "pixel"}, {"position": {"minX": 568.0, "minY": 241.875, "maxX": 585.0, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.418212890625}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 234.0, "maxX": 529.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40625}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 201.125, "maxX": 306.0, "maxY": 224.875}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.39501953125}, "domain": "pixel"}, {"position": {"minX": 163.5, "minY": 189.5, "maxX": 181.75, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.379638671875}, "domain": "pixel"}, {"position": {"minX": 227.0, "minY": 196.875, "maxX": 241.0, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.309", "scores": {"class_score": 0.30908203125}, "domain": "pixel"}, {"position": {"minX": 380.25, "minY": 215.25, "maxX": 395.25, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00681304931640625}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 221.0, "maxX": 396.5, "maxY": 240.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003955841064453125}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 208.875, "maxX": 393.75, "maxY": 232.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00180816650390625}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 16.9375, "maxX": 561.5, "maxY": 59.3125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014247894287109375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_ce315768bb4ed450bd6e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_ce315768bb4ed450bd6e.boxes2D.json new file mode 100644 index 0000000..e85bc1b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_ce315768bb4ed450bd6e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 333.0, "minY": 215.5, "maxX": 357.0, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.453", "scores": {"class_score": 0.453369140625}, "domain": "pixel"}, {"position": {"minX": 158.25, "minY": 196.625, "maxX": 169.5, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.437", "scores": {"class_score": 0.4365234375}, "domain": "pixel"}, {"position": {"minX": 220.5, "minY": 201.25, "maxX": 242.25, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.421630859375}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 209.5, "maxX": 306.5, "maxY": 236.75}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.421142578125}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 235.0, "maxX": 467.5, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.403076171875}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 222.375, "maxX": 403.0, "maxY": 247.125}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.401611328125}, "domain": "pixel"}, {"position": {"minX": 521.0, "minY": 239.875, "maxX": 540.0, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.3974609375}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 251.25, "maxX": 594.5, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.391845703125}, "domain": "pixel"}, {"position": {"minX": 571.0, "minY": 250.875, "maxX": 589.0, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023593902587890625}, "domain": "pixel"}, {"position": {"minX": 157.375, "minY": 190.125, "maxX": 169.625, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023212432861328125}, "domain": "pixel"}, {"position": {"minX": 284.75, "minY": 207.25, "maxX": 300.75, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018434524536132812}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_e7bcdf54b592c45cec00.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_e7bcdf54b592c45cec00.boxes2D.json new file mode 100644 index 0000000..596fb6a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_239_e7bcdf54b592c45cec00.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 290.75, "minY": 211.0, "maxX": 312.75, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.432", "scores": {"class_score": 0.432373046875}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 224.375, "maxX": 406.5, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.429443359375}, "domain": "pixel"}, {"position": {"minX": 336.5, "minY": 217.0, "maxX": 355.5, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.424", "scores": {"class_score": 0.42431640625}, "domain": "pixel"}, {"position": {"minX": 449.25, "minY": 234.25, "maxX": 469.25, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.421", "scores": {"class_score": 0.4208984375}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 252.75, "maxX": 601.0, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.40478515625}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 240.375, "maxX": 545.5, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.396728515625}, "domain": "pixel"}, {"position": {"minX": 222.125, "minY": 209.125, "maxX": 233.875, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380859375}, "domain": "pixel"}, {"position": {"minX": 159.75, "minY": 196.375, "maxX": 172.0, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.0372314453125}, "domain": "pixel"}, {"position": {"minX": 222.0, "minY": 213.25, "maxX": 234.0, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0205230712890625}, "domain": "pixel"}, {"position": {"minX": 218.875, "minY": 205.25, "maxX": 232.375, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0198822021484375}, "domain": "pixel"}, {"position": {"minX": 223.625, "minY": 206.125, "maxX": 237.375, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0167694091796875}, "domain": "pixel"}, {"position": {"minX": 163.375, "minY": 200.625, "maxX": 180.375, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01519775390625}, "domain": "pixel"}, {"position": {"minX": 170.875, "minY": 202.25, "maxX": 191.125, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01483917236328125}, "domain": "pixel"}, {"position": {"minX": 175.25, "minY": 200.25, "maxX": 195.0, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.010498046875}, "domain": "pixel"}, {"position": {"minX": 169.5, "minY": 197.375, "maxX": 188.5, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00319671630859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_04f94a4d8ffcc0d938c9.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_04f94a4d8ffcc0d938c9.boxes2D.json new file mode 100644 index 0000000..c3b8cb8 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_04f94a4d8ffcc0d938c9.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 333.25, "minY": 216.0, "maxX": 356.75, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.458", "scores": {"class_score": 0.457763671875}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 223.125, "maxX": 403.25, "maxY": 247.375}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.441650390625}, "domain": "pixel"}, {"position": {"minX": 220.125, "minY": 200.75, "maxX": 241.625, "maxY": 226.5}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.425537109375}, "domain": "pixel"}, {"position": {"minX": 288.25, "minY": 208.75, "maxX": 305.75, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.41162109375}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 239.25, "maxX": 540.5, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.405517578125}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 235.25, "maxX": 467.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.3935546875}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 251.0, "maxX": 594.0, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.393", "scores": {"class_score": 0.392578125}, "domain": "pixel"}, {"position": {"minX": 157.5, "minY": 196.625, "maxX": 169.5, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.368", "scores": {"class_score": 0.368408203125}, "domain": "pixel"}, {"position": {"minX": 285.25, "minY": 207.0, "maxX": 301.75, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006381988525390625}, "domain": "pixel"}, {"position": {"minX": 572.5, "minY": 251.125, "maxX": 589.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00484466552734375}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 248.875, "maxX": 599.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002323150634765625}, "domain": "pixel"}, {"position": {"minX": 416.0, "minY": 132.125, "maxX": 453.5, "maxY": 199.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013027191162109375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_28794543c7e6862d239a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_28794543c7e6862d239a.boxes2D.json new file mode 100644 index 0000000..a4a15b0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_28794543c7e6862d239a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 511.0, "minY": 229.375, "maxX": 533.0, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.457", "scores": {"class_score": 0.45703125}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 220.25, "maxX": 463.0, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.440", "scores": {"class_score": 0.439697265625}, "domain": "pixel"}, {"position": {"minX": 566.5, "minY": 239.25, "maxX": 582.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.4306640625}, "domain": "pixel"}, {"position": {"minX": 379.5, "minY": 213.375, "maxX": 397.0, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.395263671875}, "domain": "pixel"}, {"position": {"minX": 162.375, "minY": 184.125, "maxX": 182.375, "maxY": 208.625}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.3837890625}, "domain": "pixel"}, {"position": {"minX": 331.75, "minY": 212.625, "maxX": 345.25, "maxY": 232.375}, "class_id": 0, "box_caption": "coureur 0.358", "scores": {"class_score": 0.35791015625}, "domain": "pixel"}, {"position": {"minX": 229.625, "minY": 192.75, "maxX": 243.125, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.335", "scores": {"class_score": 0.33544921875}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 200.75, "maxX": 308.0, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.32275390625}, "domain": "pixel"}, {"position": {"minX": 333.0, "minY": 207.0, "maxX": 346.5, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017881393432617188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_37bd5df14881c2348aab.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_37bd5df14881c2348aab.boxes2D.json new file mode 100644 index 0000000..fce69ca --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_37bd5df14881c2348aab.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 114.75, "minY": 256.75, "maxX": 186.0, "maxY": 341.25}, "class_id": 0, "box_caption": "coureur 0.465", "scores": {"class_score": 0.464599609375}, "domain": "pixel"}, {"position": {"minX": 382.25, "minY": 226.25, "maxX": 465.75, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.461", "scores": {"class_score": 0.4609375}, "domain": "pixel"}, {"position": {"minX": 371.75, "minY": 159.125, "maxX": 401.25, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.458", "scores": {"class_score": 0.457763671875}, "domain": "pixel"}, {"position": {"minX": 433.5, "minY": 243.75, "maxX": 467.0, "maxY": 312.75}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.44140625}, "domain": "pixel"}, {"position": {"minX": 410.25, "minY": 186.75, "maxX": 481.25, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.439208984375}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 124.8125, "maxX": 375.0, "maxY": 187.25}, "class_id": 0, "box_caption": "coureur 0.436", "scores": {"class_score": 0.43603515625}, "domain": "pixel"}, {"position": {"minX": 211.5, "minY": 124.125, "maxX": 277.5, "maxY": 204.875}, "class_id": 0, "box_caption": "coureur 0.198", "scores": {"class_score": 0.1976318359375}, "domain": "pixel"}, {"position": {"minX": 505.0, "minY": 62.125, "maxX": 541.0, "maxY": 122.0}, "class_id": 0, "box_caption": "coureur 0.079", "scores": {"class_score": 0.07904052734375}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 197.75, "maxX": 476.75, "maxY": 253.75}, "class_id": 0, "box_caption": "coureur 0.064", "scores": {"class_score": 0.0643310546875}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 231.875, "maxX": 457.5, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.014617919921875}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 228.0, "maxX": 448.5, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00323486328125}, "domain": "pixel"}, {"position": {"minX": 416.75, "minY": 241.5, "maxX": 470.25, "maxY": 298.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025386810302734375}, "domain": "pixel"}, {"position": {"minX": 427.75, "minY": 182.625, "maxX": 471.25, "maxY": 248.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002033233642578125}, "domain": "pixel"}, {"position": {"minX": 255.625, "minY": 166.25, "maxX": 277.0, "maxY": 206.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001613616943359375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_388a952555842a70061e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_388a952555842a70061e.boxes2D.json new file mode 100644 index 0000000..c4fd955 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_388a952555842a70061e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 570.5, "minY": 244.0, "maxX": 586.5, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.455", "scores": {"class_score": 0.455078125}, "domain": "pixel"}, {"position": {"minX": 442.75, "minY": 227.75, "maxX": 464.25, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.451", "scores": {"class_score": 0.45068359375}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 235.375, "maxX": 533.5, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.447", "scores": {"class_score": 0.44677734375}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 193.0, "maxX": 244.375, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.423095703125}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 217.25, "maxX": 402.0, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.419", "scores": {"class_score": 0.41943359375}, "domain": "pixel"}, {"position": {"minX": 292.75, "minY": 206.125, "maxX": 310.75, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.419", "scores": {"class_score": 0.418701171875}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 209.5, "maxX": 352.25, "maxY": 236.5}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_3ef87633f940b47d7b3a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_3ef87633f940b47d7b3a.boxes2D.json new file mode 100644 index 0000000..7783266 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_3ef87633f940b47d7b3a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 455.5, "minY": 231.25, "maxX": 476.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.428955078125}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 250.875, "maxX": 610.5, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.427001953125}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 243.125, "maxX": 552.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.419", "scores": {"class_score": 0.419189453125}, "domain": "pixel"}, {"position": {"minX": 305.0, "minY": 210.625, "maxX": 320.5, "maxY": 232.875}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.415771484375}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 228.875, "maxX": 412.0, "maxY": 253.125}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.3935546875}, "domain": "pixel"}, {"position": {"minX": 345.75, "minY": 216.125, "maxX": 360.25, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.322", "scores": {"class_score": 0.321533203125}, "domain": "pixel"}, {"position": {"minX": 235.75, "minY": 200.375, "maxX": 248.75, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.288", "scores": {"class_score": 0.2880859375}, "domain": "pixel"}, {"position": {"minX": 173.875, "minY": 195.625, "maxX": 188.625, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.164", "scores": {"class_score": 0.1636962890625}, "domain": "pixel"}, {"position": {"minX": 169.75, "minY": 197.375, "maxX": 186.5, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00762176513671875}, "domain": "pixel"}, {"position": {"minX": 239.875, "minY": 203.25, "maxX": 252.125, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00754547119140625}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 208.75, "maxX": 317.25, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003231048583984375}, "domain": "pixel"}, {"position": {"minX": 168.125, "minY": 192.125, "maxX": 184.125, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030612945556640625}, "domain": "pixel"}, {"position": {"minX": 251.125, "minY": 208.375, "maxX": 264.75, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013179779052734375}, "domain": "pixel"}, {"position": {"minX": 307.5, "minY": 210.5, "maxX": 327.0, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011234283447265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_53cbfd6c8d4dfd3d44b9.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_53cbfd6c8d4dfd3d44b9.boxes2D.json new file mode 100644 index 0000000..037f745 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_53cbfd6c8d4dfd3d44b9.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 337.25, "minY": 212.625, "maxX": 358.75, "maxY": 245.375}, "class_id": 0, "box_caption": "coureur 0.470", "scores": {"class_score": 0.470458984375}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 237.0, "maxX": 545.5, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.44921875}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 248.625, "maxX": 595.0, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.443", "scores": {"class_score": 0.443115234375}, "domain": "pixel"}, {"position": {"minX": 449.75, "minY": 232.25, "maxX": 462.75, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.417", "scores": {"class_score": 0.417236328125}, "domain": "pixel"}, {"position": {"minX": 296.25, "minY": 205.5, "maxX": 312.25, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.413818359375}, "domain": "pixel"}, {"position": {"minX": 389.5, "minY": 225.0, "maxX": 401.0, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.379638671875}, "domain": "pixel"}, {"position": {"minX": 232.75, "minY": 199.875, "maxX": 254.0, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.344482421875}, "domain": "pixel"}, {"position": {"minX": 446.25, "minY": 233.375, "maxX": 459.75, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0222930908203125}, "domain": "pixel"}, {"position": {"minX": 174.25, "minY": 201.875, "maxX": 184.5, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00775909423828125}, "domain": "pixel"}, {"position": {"minX": 589.5, "minY": 24.921875, "maxX": 623.5, "maxY": 64.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002353668212890625}, "domain": "pixel"}, {"position": {"minX": 170.125, "minY": 200.5, "maxX": 181.875, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015268325805664062}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 227.25, "maxX": 404.25, "maxY": 243.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013647079467773438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_6142c4c5c8251451c5e5.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_6142c4c5c8251451c5e5.boxes2D.json new file mode 100644 index 0000000..77be138 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_6142c4c5c8251451c5e5.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 331.5, "minY": 209.125, "maxX": 352.0, "maxY": 236.625}, "class_id": 0, "box_caption": "coureur 0.447", "scores": {"class_score": 0.44677734375}, "domain": "pixel"}, {"position": {"minX": 444.25, "minY": 220.625, "maxX": 459.25, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.431396484375}, "domain": "pixel"}, {"position": {"minX": 291.25, "minY": 200.25, "maxX": 305.75, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.4306640625}, "domain": "pixel"}, {"position": {"minX": 512.5, "minY": 233.0, "maxX": 529.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.428955078125}, "domain": "pixel"}, {"position": {"minX": 568.0, "minY": 241.375, "maxX": 585.0, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.4267578125}, "domain": "pixel"}, {"position": {"minX": 383.75, "minY": 214.5, "maxX": 395.75, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.4228515625}, "domain": "pixel"}, {"position": {"minX": 162.625, "minY": 189.125, "maxX": 181.125, "maxY": 214.625}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.415771484375}, "domain": "pixel"}, {"position": {"minX": 226.375, "minY": 196.25, "maxX": 240.875, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.280", "scores": {"class_score": 0.27978515625}, "domain": "pixel"}, {"position": {"minX": 383.0, "minY": 218.0, "maxX": 396.5, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00818634033203125}, "domain": "pixel"}, {"position": {"minX": 379.5, "minY": 210.0, "maxX": 393.5, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00725555419921875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_695fc857cbb2c84f6973.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_695fc857cbb2c84f6973.boxes2D.json new file mode 100644 index 0000000..d1ea5bc --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_695fc857cbb2c84f6973.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 343.75, "minY": 213.875, "maxX": 367.25, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.458", "scores": {"class_score": 0.45849609375}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 205.0, "maxX": 316.0, "maxY": 234.75}, "class_id": 0, "box_caption": "coureur 0.452", "scores": {"class_score": 0.4521484375}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 248.375, "maxX": 603.0, "maxY": 274.75}, "class_id": 0, "box_caption": "coureur 0.447", "scores": {"class_score": 0.44677734375}, "domain": "pixel"}, {"position": {"minX": 452.75, "minY": 228.0, "maxX": 470.25, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.4462890625}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 241.25, "maxX": 553.5, "maxY": 268.75}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.428955078125}, "domain": "pixel"}, {"position": {"minX": 234.625, "minY": 197.625, "maxX": 248.375, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.422607421875}, "domain": "pixel"}, {"position": {"minX": 395.25, "minY": 226.0, "maxX": 410.75, "maxY": 248.75}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.37548828125}, "domain": "pixel"}, {"position": {"minX": 173.875, "minY": 199.125, "maxX": 186.375, "maxY": 216.625}, "class_id": 0, "box_caption": "coureur 0.304", "scores": {"class_score": 0.30419921875}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 195.375, "maxX": 185.625, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01447296142578125}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 200.25, "maxX": 183.75, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01444244384765625}, "domain": "pixel"}, {"position": {"minX": 176.125, "minY": 201.0, "maxX": 188.625, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0119171142578125}, "domain": "pixel"}, {"position": {"minX": 238.25, "minY": 200.25, "maxX": 251.5, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0052490234375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_a177f2b2c83c2b9276cd.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_a177f2b2c83c2b9276cd.boxes2D.json new file mode 100644 index 0000000..4cb9a3d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_a177f2b2c83c2b9276cd.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 525.0, "minY": 241.375, "maxX": 556.0, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.450", "scores": {"class_score": 0.4501953125}, "domain": "pixel"}, {"position": {"minX": 347.5, "minY": 224.625, "maxX": 369.5, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.438720703125}, "domain": "pixel"}, {"position": {"minX": 588.5, "minY": 252.375, "maxX": 605.5, "maxY": 279.25}, "class_id": 0, "box_caption": "coureur 0.428", "scores": {"class_score": 0.428466796875}, "domain": "pixel"}, {"position": {"minX": 304.25, "minY": 207.5, "maxX": 317.25, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.403564453125}, "domain": "pixel"}, {"position": {"minX": 457.25, "minY": 232.25, "maxX": 473.25, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.389404296875}, "domain": "pixel"}, {"position": {"minX": 398.25, "minY": 230.375, "maxX": 412.75, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.357", "scores": {"class_score": 0.357421875}, "domain": "pixel"}, {"position": {"minX": 232.375, "minY": 204.25, "maxX": 248.125, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.35205078125}, "domain": "pixel"}, {"position": {"minX": 174.875, "minY": 197.75, "maxX": 188.375, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003879547119140625}, "domain": "pixel"}, {"position": {"minX": 305.25, "minY": 202.875, "maxX": 320.25, "maxY": 233.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002361297607421875}, "domain": "pixel"}, {"position": {"minX": 300.0, "minY": 212.125, "maxX": 315.0, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00115203857421875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_a2908fa033e21e04788c.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_a2908fa033e21e04788c.boxes2D.json new file mode 100644 index 0000000..31c83df --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_a2908fa033e21e04788c.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 450.75, "minY": 231.875, "maxX": 472.25, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.456", "scores": {"class_score": 0.455810546875}, "domain": "pixel"}, {"position": {"minX": 236.75, "minY": 199.0, "maxX": 251.75, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.447", "scores": {"class_score": 0.447021484375}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 241.375, "maxX": 546.0, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.433", "scores": {"class_score": 0.433349609375}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 247.875, "maxX": 601.5, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.433", "scores": {"class_score": 0.4326171875}, "domain": "pixel"}, {"position": {"minX": 298.5, "minY": 207.875, "maxX": 315.0, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.373", "scores": {"class_score": 0.37255859375}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 229.0, "maxX": 406.25, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.365", "scores": {"class_score": 0.36474609375}, "domain": "pixel"}, {"position": {"minX": 169.125, "minY": 193.625, "maxX": 182.625, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.332", "scores": {"class_score": 0.33203125}, "domain": "pixel"}, {"position": {"minX": 342.25, "minY": 213.5, "maxX": 355.75, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.260", "scores": {"class_score": 0.260009765625}, "domain": "pixel"}, {"position": {"minX": 344.25, "minY": 210.25, "maxX": 357.75, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002109527587890625}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 224.5, "maxX": 407.25, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014495849609375}, "domain": "pixel"}, {"position": {"minX": 340.75, "minY": 218.375, "maxX": 355.25, "maxY": 252.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011606216430664062}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_b0ad9d97216567f552cb.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_b0ad9d97216567f552cb.boxes2D.json new file mode 100644 index 0000000..38353d5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_b0ad9d97216567f552cb.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 585.5, "minY": 251.75, "maxX": 606.5, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.442138671875}, "domain": "pixel"}, {"position": {"minX": 453.75, "minY": 232.0, "maxX": 478.75, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.427001953125}, "domain": "pixel"}, {"position": {"minX": 345.25, "minY": 217.75, "maxX": 363.25, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.42529296875}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 240.375, "maxX": 551.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.419", "scores": {"class_score": 0.419189453125}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 201.25, "maxX": 248.75, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.41455078125}, "domain": "pixel"}, {"position": {"minX": 301.5, "minY": 208.125, "maxX": 322.0, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.409423828125}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 231.0, "maxX": 416.0, "maxY": 247.5}, "class_id": 0, "box_caption": "coureur 0.368", "scores": {"class_score": 0.367919921875}, "domain": "pixel"}, {"position": {"minX": 166.875, "minY": 199.0, "maxX": 181.125, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.131", "scores": {"class_score": 0.130859375}, "domain": "pixel"}, {"position": {"minX": 160.5, "minY": 198.875, "maxX": 176.0, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018053054809570312}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 231.25, "maxX": 413.75, "maxY": 253.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00165557861328125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_c7974941984e7515af22.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_c7974941984e7515af22.boxes2D.json new file mode 100644 index 0000000..019cdee --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_c7974941984e7515af22.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 449.75, "minY": 234.5, "maxX": 469.25, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.444", "scores": {"class_score": 0.443603515625}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 225.625, "maxX": 406.25, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.437", "scores": {"class_score": 0.436767578125}, "domain": "pixel"}, {"position": {"minX": 337.0, "minY": 217.125, "maxX": 354.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.431396484375}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 212.5, "maxX": 312.0, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.427490234375}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 251.625, "maxX": 601.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.419", "scores": {"class_score": 0.419189453125}, "domain": "pixel"}, {"position": {"minX": 520.0, "minY": 239.375, "maxX": 546.0, "maxY": 268.75}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.407958984375}, "domain": "pixel"}, {"position": {"minX": 221.0, "minY": 208.875, "maxX": 233.5, "maxY": 226.375}, "class_id": 0, "box_caption": "coureur 0.358", "scores": {"class_score": 0.3583984375}, "domain": "pixel"}, {"position": {"minX": 163.625, "minY": 197.875, "maxX": 179.875, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.169", "scores": {"class_score": 0.1689453125}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 199.75, "maxX": 187.125, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.053", "scores": {"class_score": 0.05267333984375}, "domain": "pixel"}, {"position": {"minX": 161.125, "minY": 196.0, "maxX": 174.625, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.043914794921875}, "domain": "pixel"}, {"position": {"minX": 175.75, "minY": 199.75, "maxX": 193.0, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0078125}, "domain": "pixel"}, {"position": {"minX": 330.0, "minY": 217.0, "maxX": 349.0, "maxY": 245.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034198760986328125}, "domain": "pixel"}, {"position": {"minX": 222.25, "minY": 206.0, "maxX": 238.0, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028438568115234375}, "domain": "pixel"}, {"position": {"minX": 221.25, "minY": 214.5, "maxX": 233.75, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002315521240234375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_d80083c26a21180cdaab.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_d80083c26a21180cdaab.boxes2D.json new file mode 100644 index 0000000..585d7bf --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_d80083c26a21180cdaab.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 233.0, "minY": 197.0, "maxX": 255.25, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.468", "scores": {"class_score": 0.467529296875}, "domain": "pixel"}, {"position": {"minX": 589.5, "minY": 250.5, "maxX": 604.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.445", "scores": {"class_score": 0.444580078125}, "domain": "pixel"}, {"position": {"minX": 306.75, "minY": 207.5, "maxX": 322.75, "maxY": 233.75}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.441162109375}, "domain": "pixel"}, {"position": {"minX": 346.0, "minY": 215.125, "maxX": 366.0, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.434", "scores": {"class_score": 0.43408203125}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 241.625, "maxX": 550.0, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.423095703125}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 226.5, "maxX": 413.25, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.41064453125}, "domain": "pixel"}, {"position": {"minX": 458.25, "minY": 234.75, "maxX": 479.75, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.405517578125}, "domain": "pixel"}, {"position": {"minX": 174.25, "minY": 194.75, "maxX": 187.75, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.38037109375}, "domain": "pixel"}, {"position": {"minX": 114.625, "minY": 192.625, "maxX": 130.625, "maxY": 213.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018568038940429688}, "domain": "pixel"}, {"position": {"minX": 171.375, "minY": 195.625, "maxX": 185.125, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011415481567382812}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_e64d86848316f1ecdefb.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_e64d86848316f1ecdefb.boxes2D.json new file mode 100644 index 0000000..49ca351 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_e64d86848316f1ecdefb.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.25, "minY": 214.25, "maxX": 361.25, "maxY": 248.75}, "class_id": 0, "box_caption": "coureur 0.448", "scores": {"class_score": 0.447998046875}, "domain": "pixel"}, {"position": {"minX": 160.25, "minY": 196.25, "maxX": 184.5, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.4306640625}, "domain": "pixel"}, {"position": {"minX": 291.25, "minY": 211.5, "maxX": 310.25, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.42529296875}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 249.875, "maxX": 603.5, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.422607421875}, "domain": "pixel"}, {"position": {"minX": 222.625, "minY": 199.5, "maxX": 242.875, "maxY": 227.25}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.42041015625}, "domain": "pixel"}, {"position": {"minX": 451.25, "minY": 232.75, "maxX": 474.25, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.413", "scores": {"class_score": 0.41259765625}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 233.25, "maxX": 404.25, "maxY": 253.0}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.387451171875}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 241.5, "maxX": 543.5, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.358", "scores": {"class_score": 0.357666015625}, "domain": "pixel"}, {"position": {"minX": 525.0, "minY": 238.25, "maxX": 541.0, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004955291748046875}, "domain": "pixel"}, {"position": {"minX": 530.5, "minY": 243.25, "maxX": 547.5, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002033233642578125}, "domain": "pixel"}, {"position": {"minX": 387.75, "minY": 232.75, "maxX": 402.25, "maxY": 255.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014247894287109375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_e919f18c3e79c87ed7b8.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_e919f18c3e79c87ed7b8.boxes2D.json new file mode 100644 index 0000000..6e8f231 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_e919f18c3e79c87ed7b8.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 513.5, "minY": 234.375, "maxX": 533.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.456", "scores": {"class_score": 0.456298828125}, "domain": "pixel"}, {"position": {"minX": 290.0, "minY": 203.875, "maxX": 308.0, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.427490234375}, "domain": "pixel"}, {"position": {"minX": 443.75, "minY": 224.75, "maxX": 460.75, "maxY": 249.5}, "class_id": 0, "box_caption": "coureur 0.427", "scores": {"class_score": 0.427490234375}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 241.75, "maxX": 590.0, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.422119140625}, "domain": "pixel"}, {"position": {"minX": 159.25, "minY": 189.25, "maxX": 174.5, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.413818359375}, "domain": "pixel"}, {"position": {"minX": 334.0, "minY": 214.25, "maxX": 347.5, "maxY": 236.75}, "class_id": 0, "box_caption": "coureur 0.373", "scores": {"class_score": 0.37255859375}, "domain": "pixel"}, {"position": {"minX": 225.375, "minY": 193.25, "maxX": 239.625, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.340", "scores": {"class_score": 0.340087890625}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 223.875, "maxX": 395.75, "maxY": 244.875}, "class_id": 0, "box_caption": "coureur 0.314", "scores": {"class_score": 0.31396484375}, "domain": "pixel"}, {"position": {"minX": 220.375, "minY": 191.375, "maxX": 234.875, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01345062255859375}, "domain": "pixel"}, {"position": {"minX": 163.25, "minY": 189.5, "maxX": 178.0, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01093292236328125}, "domain": "pixel"}, {"position": {"minX": 228.375, "minY": 192.0, "maxX": 242.125, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007488250732421875}, "domain": "pixel"}, {"position": {"minX": 380.0, "minY": 224.5, "maxX": 394.0, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026340484619140625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_ebdae69f887393f76fee.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_ebdae69f887393f76fee.boxes2D.json new file mode 100644 index 0000000..151a45f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_269_ebdae69f887393f76fee.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 340.5, "minY": 216.5, "maxX": 366.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.455", "scores": {"class_score": 0.455322265625}, "domain": "pixel"}, {"position": {"minX": 226.75, "minY": 198.0, "maxX": 242.0, "maxY": 226.5}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.445556640625}, "domain": "pixel"}, {"position": {"minX": 583.5, "minY": 250.0, "maxX": 600.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.444", "scores": {"class_score": 0.44384765625}, "domain": "pixel"}, {"position": {"minX": 296.0, "minY": 205.25, "maxX": 314.0, "maxY": 235.0}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.421630859375}, "domain": "pixel"}, {"position": {"minX": 453.75, "minY": 233.0, "maxX": 469.25, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.4150390625}, "domain": "pixel"}, {"position": {"minX": 394.25, "minY": 224.625, "maxX": 414.25, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.4013671875}, "domain": "pixel"}, {"position": {"minX": 168.125, "minY": 194.375, "maxX": 183.875, "maxY": 218.375}, "class_id": 0, "box_caption": "coureur 0.389", "scores": {"class_score": 0.38916015625}, "domain": "pixel"}, {"position": {"minX": 530.5, "minY": 241.125, "maxX": 559.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.3720703125}, "domain": "pixel"}, {"position": {"minX": 142.75, "minY": 193.375, "maxX": 155.75, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005001068115234375}, "domain": "pixel"}, {"position": {"minX": 143.25, "minY": 193.875, "maxX": 161.75, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014581680297851562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_0f2b78fbfc7770769e80.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_0f2b78fbfc7770769e80.boxes2D.json new file mode 100644 index 0000000..1e0a47a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_0f2b78fbfc7770769e80.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 512.5, "minY": 233.5, "maxX": 533.5, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.458", "scores": {"class_score": 0.45849609375}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 204.875, "maxX": 309.0, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.437", "scores": {"class_score": 0.4365234375}, "domain": "pixel"}, {"position": {"minX": 443.0, "minY": 225.375, "maxX": 461.5, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.43505859375}, "domain": "pixel"}, {"position": {"minX": 566.0, "minY": 241.875, "maxX": 590.0, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.432", "scores": {"class_score": 0.43212890625}, "domain": "pixel"}, {"position": {"minX": 160.5, "minY": 189.875, "maxX": 174.25, "maxY": 213.375}, "class_id": 0, "box_caption": "coureur 0.408", "scores": {"class_score": 0.407958984375}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 213.125, "maxX": 347.5, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40576171875}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 223.125, "maxX": 396.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.361", "scores": {"class_score": 0.360595703125}, "domain": "pixel"}, {"position": {"minX": 225.75, "minY": 194.125, "maxX": 239.5, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.337", "scores": {"class_score": 0.337158203125}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 190.5, "maxX": 177.625, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017974853515625}, "domain": "pixel"}, {"position": {"minX": 169.625, "minY": 15.6875, "maxX": 205.375, "maxY": 86.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007808685302734375}, "domain": "pixel"}, {"position": {"minX": 220.625, "minY": 192.375, "maxX": 234.375, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006229400634765625}, "domain": "pixel"}, {"position": {"minX": 228.5, "minY": 192.5, "maxX": 242.25, "maxY": 215.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00550079345703125}, "domain": "pixel"}, {"position": {"minX": 380.0, "minY": 223.875, "maxX": 394.0, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022220611572265625}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 197.75, "maxX": 243.5, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013856887817382812}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_13ae1b998c39bc6d6672.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_13ae1b998c39bc6d6672.boxes2D.json new file mode 100644 index 0000000..490eba2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_13ae1b998c39bc6d6672.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 586.5, "minY": 248.5, "maxX": 603.5, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.459", "scores": {"class_score": 0.458984375}, "domain": "pixel"}, {"position": {"minX": 300.25, "minY": 206.5, "maxX": 315.75, "maxY": 235.25}, "class_id": 0, "box_caption": "coureur 0.457", "scores": {"class_score": 0.457275390625}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 241.625, "maxX": 554.0, "maxY": 268.75}, "class_id": 0, "box_caption": "coureur 0.455", "scores": {"class_score": 0.454833984375}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 227.75, "maxX": 470.25, "maxY": 258.5}, "class_id": 0, "box_caption": "coureur 0.453", "scores": {"class_score": 0.45263671875}, "domain": "pixel"}, {"position": {"minX": 342.25, "minY": 214.375, "maxX": 366.75, "maxY": 243.875}, "class_id": 0, "box_caption": "coureur 0.451", "scores": {"class_score": 0.451416015625}, "domain": "pixel"}, {"position": {"minX": 234.375, "minY": 198.0, "maxX": 248.375, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.441650390625}, "domain": "pixel"}, {"position": {"minX": 395.25, "minY": 226.375, "maxX": 411.25, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.374267578125}, "domain": "pixel"}, {"position": {"minX": 174.125, "minY": 198.75, "maxX": 185.625, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.323486328125}, "domain": "pixel"}, {"position": {"minX": 172.25, "minY": 200.375, "maxX": 183.0, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0298004150390625}, "domain": "pixel"}, {"position": {"minX": 176.375, "minY": 201.125, "maxX": 188.125, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.01995849609375}, "domain": "pixel"}, {"position": {"minX": 170.875, "minY": 195.75, "maxX": 184.375, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0095672607421875}, "domain": "pixel"}, {"position": {"minX": 134.375, "minY": 193.0, "maxX": 145.125, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00769805908203125}, "domain": "pixel"}, {"position": {"minX": 238.25, "minY": 200.125, "maxX": 251.25, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00617218017578125}, "domain": "pixel"}, {"position": {"minX": 173.625, "minY": 191.625, "maxX": 186.125, "maxY": 212.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00103759765625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_176bb733a349f2d75970.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_176bb733a349f2d75970.boxes2D.json new file mode 100644 index 0000000..d5d447a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_176bb733a349f2d75970.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 226.5, "minY": 198.375, "maxX": 242.25, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.466", "scores": {"class_score": 0.46630859375}, "domain": "pixel"}, {"position": {"minX": 340.25, "minY": 216.625, "maxX": 366.25, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.455", "scores": {"class_score": 0.45458984375}, "domain": "pixel"}, {"position": {"minX": 583.5, "minY": 250.0, "maxX": 599.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.44873046875}, "domain": "pixel"}, {"position": {"minX": 453.25, "minY": 232.375, "maxX": 469.75, "maxY": 265.25}, "class_id": 0, "box_caption": "coureur 0.423", "scores": {"class_score": 0.4228515625}, "domain": "pixel"}, {"position": {"minX": 297.25, "minY": 206.875, "maxX": 314.75, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.417", "scores": {"class_score": 0.4169921875}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 194.875, "maxX": 184.375, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.401123046875}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 241.875, "maxX": 558.0, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.3935546875}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 226.125, "maxX": 413.5, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.385", "scores": {"class_score": 0.385009765625}, "domain": "pixel"}, {"position": {"minX": 142.875, "minY": 194.375, "maxX": 154.875, "maxY": 216.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0040740966796875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_452f2bf4326c12b84fad.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_452f2bf4326c12b84fad.boxes2D.json new file mode 100644 index 0000000..bdf783f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_452f2bf4326c12b84fad.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 529.0, "minY": 242.125, "maxX": 553.0, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.445", "scores": {"class_score": 0.4453125}, "domain": "pixel"}, {"position": {"minX": 455.25, "minY": 231.25, "maxX": 477.75, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.443", "scores": {"class_score": 0.443359375}, "domain": "pixel"}, {"position": {"minX": 585.5, "minY": 251.25, "maxX": 610.5, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.441162109375}, "domain": "pixel"}, {"position": {"minX": 303.75, "minY": 212.375, "maxX": 320.75, "maxY": 233.125}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.419677734375}, "domain": "pixel"}, {"position": {"minX": 345.5, "minY": 216.625, "maxX": 359.5, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.369", "scores": {"class_score": 0.369140625}, "domain": "pixel"}, {"position": {"minX": 399.25, "minY": 230.375, "maxX": 413.75, "maxY": 252.875}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.34326171875}, "domain": "pixel"}, {"position": {"minX": 235.625, "minY": 200.0, "maxX": 247.875, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.324", "scores": {"class_score": 0.324462890625}, "domain": "pixel"}, {"position": {"minX": 174.5, "minY": 196.0, "maxX": 189.75, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.295", "scores": {"class_score": 0.29541015625}, "domain": "pixel"}, {"position": {"minX": 239.625, "minY": 203.0, "maxX": 252.125, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0204620361328125}, "domain": "pixel"}, {"position": {"minX": 236.625, "minY": 204.25, "maxX": 249.625, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006443023681640625}, "domain": "pixel"}, {"position": {"minX": 251.625, "minY": 208.0, "maxX": 265.0, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030059814453125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 226.0, "maxX": 412.0, "maxY": 250.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00247955322265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_5150556da992116fb9bc.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_5150556da992116fb9bc.boxes2D.json new file mode 100644 index 0000000..2cc82cb --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_5150556da992116fb9bc.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 442.25, "minY": 227.75, "maxX": 463.75, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.463", "scores": {"class_score": 0.462890625}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 244.0, "maxX": 586.5, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.457", "scores": {"class_score": 0.457275390625}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 235.875, "maxX": 534.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.448974609375}, "domain": "pixel"}, {"position": {"minX": 221.625, "minY": 193.625, "maxX": 243.125, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.434", "scores": {"class_score": 0.43359375}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 210.5, "maxX": 352.75, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.4248046875}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 206.75, "maxX": 311.25, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.412109375}, "domain": "pixel"}, {"position": {"minX": 386.25, "minY": 217.5, "maxX": 402.25, "maxY": 240.25}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.41064453125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_51f7582c4e712e6ac2dd.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_51f7582c4e712e6ac2dd.boxes2D.json new file mode 100644 index 0000000..e4806e3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_51f7582c4e712e6ac2dd.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 444.0, "minY": 220.375, "maxX": 462.5, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.478", "scores": {"class_score": 0.4775390625}, "domain": "pixel"}, {"position": {"minX": 510.5, "minY": 229.25, "maxX": 532.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.459", "scores": {"class_score": 0.459228515625}, "domain": "pixel"}, {"position": {"minX": 565.5, "minY": 239.625, "maxX": 583.5, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.44189453125}, "domain": "pixel"}, {"position": {"minX": 379.75, "minY": 212.625, "maxX": 397.75, "maxY": 233.875}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.396240234375}, "domain": "pixel"}, {"position": {"minX": 331.25, "minY": 213.125, "maxX": 345.75, "maxY": 232.875}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.395751953125}, "domain": "pixel"}, {"position": {"minX": 290.25, "minY": 200.375, "maxX": 308.25, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.394775390625}, "domain": "pixel"}, {"position": {"minX": 161.875, "minY": 184.75, "maxX": 181.125, "maxY": 207.75}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.3798828125}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 193.375, "maxX": 243.5, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.3779296875}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 207.5, "maxX": 346.5, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012903213500976562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_67755158ba869f11c893.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_67755158ba869f11c893.boxes2D.json new file mode 100644 index 0000000..13f3370 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_67755158ba869f11c893.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 233.75, "minY": 198.0, "maxX": 254.0, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.469", "scores": {"class_score": 0.468994140625}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 214.25, "maxX": 367.25, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.468", "scores": {"class_score": 0.46826171875}, "domain": "pixel"}, {"position": {"minX": 589.0, "minY": 251.0, "maxX": 604.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.458", "scores": {"class_score": 0.458251953125}, "domain": "pixel"}, {"position": {"minX": 306.25, "minY": 207.125, "maxX": 323.75, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.456", "scores": {"class_score": 0.456298828125}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 240.25, "maxX": 550.5, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.443", "scores": {"class_score": 0.443359375}, "domain": "pixel"}, {"position": {"minX": 457.5, "minY": 234.5, "maxX": 481.5, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.442", "scores": {"class_score": 0.441650390625}, "domain": "pixel"}, {"position": {"minX": 174.25, "minY": 195.375, "maxX": 188.5, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.408935546875}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 226.75, "maxX": 414.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.39697265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_a0d2de0c3c8d7590b33c.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_a0d2de0c3c8d7590b33c.boxes2D.json new file mode 100644 index 0000000..548373b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_a0d2de0c3c8d7590b33c.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 585.0, "minY": 251.75, "maxX": 607.0, "maxY": 279.25}, "class_id": 0, "box_caption": "coureur 0.454", "scores": {"class_score": 0.4541015625}, "domain": "pixel"}, {"position": {"minX": 345.0, "minY": 218.375, "maxX": 364.0, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.449462890625}, "domain": "pixel"}, {"position": {"minX": 453.75, "minY": 232.375, "maxX": 479.25, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.445", "scores": {"class_score": 0.4453125}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 240.75, "maxX": 552.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.44091796875}, "domain": "pixel"}, {"position": {"minX": 228.5, "minY": 200.375, "maxX": 249.75, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.4287109375}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 208.25, "maxX": 323.25, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.42041015625}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 231.625, "maxX": 416.5, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.34619140625}, "domain": "pixel"}, {"position": {"minX": 168.0, "minY": 200.75, "maxX": 181.0, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.215", "scores": {"class_score": 0.21533203125}, "domain": "pixel"}, {"position": {"minX": 161.5, "minY": 200.75, "maxX": 175.25, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00266265869140625}, "domain": "pixel"}, {"position": {"minX": 172.375, "minY": 205.125, "maxX": 184.625, "maxY": 223.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017347335815429688}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 227.125, "maxX": 414.5, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010929107666015625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_ac52c6519e561fce491e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_ac52c6519e561fce491e.boxes2D.json new file mode 100644 index 0000000..5fc79f0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_ac52c6519e561fce491e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 335.5, "minY": 212.875, "maxX": 360.0, "maxY": 245.875}, "class_id": 0, "box_caption": "coureur 0.477", "scores": {"class_score": 0.476806640625}, "domain": "pixel"}, {"position": {"minX": 521.0, "minY": 237.0, "maxX": 545.0, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.461", "scores": {"class_score": 0.4609375}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 248.0, "maxX": 595.0, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.448974609375}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 231.875, "maxX": 462.75, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.437", "scores": {"class_score": 0.4365234375}, "domain": "pixel"}, {"position": {"minX": 296.0, "minY": 206.0, "maxX": 313.0, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.406", "scores": {"class_score": 0.40576171875}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 224.375, "maxX": 401.25, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.4013671875}, "domain": "pixel"}, {"position": {"minX": 233.375, "minY": 200.0, "maxX": 252.125, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.316", "scores": {"class_score": 0.315673828125}, "domain": "pixel"}, {"position": {"minX": 173.375, "minY": 201.0, "maxX": 184.125, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.120", "scores": {"class_score": 0.1202392578125}, "domain": "pixel"}, {"position": {"minX": 447.25, "minY": 233.0, "maxX": 459.75, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.0273895263671875}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 198.375, "maxX": 181.5, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.016693115234375}, "domain": "pixel"}, {"position": {"minX": 174.25, "minY": 196.625, "maxX": 186.25, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036029815673828125}, "domain": "pixel"}, {"position": {"minX": 176.5, "minY": 201.75, "maxX": 190.5, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002590179443359375}, "domain": "pixel"}, {"position": {"minX": 173.125, "minY": 203.125, "maxX": 186.125, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011262893676757812}, "domain": "pixel"}, {"position": {"minX": 167.625, "minY": 194.125, "maxX": 181.375, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010251998901367188}, "domain": "pixel"}, {"position": {"minX": 169.625, "minY": 199.25, "maxX": 182.875, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010175704956054688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_acd9bfee71c52aabb807.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_acd9bfee71c52aabb807.boxes2D.json new file mode 100644 index 0000000..7392b10 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_acd9bfee71c52aabb807.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 115.125, "minY": 258.0, "maxX": 186.625, "maxY": 340.0}, "class_id": 0, "box_caption": "coureur 0.470", "scores": {"class_score": 0.47021484375}, "domain": "pixel"}, {"position": {"minX": 409.0, "minY": 188.625, "maxX": 482.5, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.464", "scores": {"class_score": 0.4638671875}, "domain": "pixel"}, {"position": {"minX": 334.0, "minY": 125.125, "maxX": 375.0, "maxY": 190.125}, "class_id": 0, "box_caption": "coureur 0.452", "scores": {"class_score": 0.452392578125}, "domain": "pixel"}, {"position": {"minX": 432.0, "minY": 243.125, "maxX": 463.0, "maxY": 315.0}, "class_id": 0, "box_caption": "coureur 0.448", "scores": {"class_score": 0.4482421875}, "domain": "pixel"}, {"position": {"minX": 372.0, "minY": 159.625, "maxX": 399.0, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.446044921875}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 226.5, "maxX": 468.25, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.436", "scores": {"class_score": 0.436279296875}, "domain": "pixel"}, {"position": {"minX": 206.25, "minY": 130.75, "maxX": 280.25, "maxY": 204.25}, "class_id": 0, "box_caption": "coureur 0.294", "scores": {"class_score": 0.2939453125}, "domain": "pixel"}, {"position": {"minX": 505.25, "minY": 61.875, "maxX": 539.0, "maxY": 122.25}, "class_id": 0, "box_caption": "coureur 0.063", "scores": {"class_score": 0.06268310546875}, "domain": "pixel"}, {"position": {"minX": 389.75, "minY": 232.625, "maxX": 458.75, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.039", "scores": {"class_score": 0.0389404296875}, "domain": "pixel"}, {"position": {"minX": 418.75, "minY": 243.5, "maxX": 466.75, "maxY": 303.0}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.0148162841796875}, "domain": "pixel"}, {"position": {"minX": 392.75, "minY": 229.0, "maxX": 447.75, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019044876098632812}, "domain": "pixel"}, {"position": {"minX": 439.75, "minY": 244.875, "maxX": 469.25, "maxY": 306.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001468658447265625}, "domain": "pixel"}, {"position": {"minX": 255.375, "minY": 168.625, "maxX": 276.5, "maxY": 205.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011777877807617188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_adfe8194207a5ff92dd7.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_adfe8194207a5ff92dd7.boxes2D.json new file mode 100644 index 0000000..03086e2 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_adfe8194207a5ff92dd7.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 290.75, "minY": 212.25, "maxX": 312.25, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.446", "scores": {"class_score": 0.445556640625}, "domain": "pixel"}, {"position": {"minX": 337.0, "minY": 217.375, "maxX": 354.0, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.439", "scores": {"class_score": 0.43896484375}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 226.0, "maxX": 406.0, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.436", "scores": {"class_score": 0.43603515625}, "domain": "pixel"}, {"position": {"minX": 448.25, "minY": 234.625, "maxX": 468.75, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.434", "scores": {"class_score": 0.43408203125}, "domain": "pixel"}, {"position": {"minX": 520.0, "minY": 239.0, "maxX": 547.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.42919921875}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 251.875, "maxX": 600.5, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.428", "scores": {"class_score": 0.427978515625}, "domain": "pixel"}, {"position": {"minX": 221.5, "minY": 208.625, "maxX": 233.5, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.35888671875}, "domain": "pixel"}, {"position": {"minX": 163.375, "minY": 198.75, "maxX": 179.875, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.093", "scores": {"class_score": 0.09320068359375}, "domain": "pixel"}, {"position": {"minX": 160.875, "minY": 198.25, "maxX": 174.375, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.062", "scores": {"class_score": 0.062255859375}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 201.0, "maxX": 188.125, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.055", "scores": {"class_score": 0.055206298828125}, "domain": "pixel"}, {"position": {"minX": 218.75, "minY": 205.875, "maxX": 231.75, "maxY": 224.875}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0245513916015625}, "domain": "pixel"}, {"position": {"minX": 221.5, "minY": 212.625, "maxX": 234.0, "maxY": 230.375}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01422882080078125}, "domain": "pixel"}, {"position": {"minX": 175.5, "minY": 200.75, "maxX": 192.75, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0101470947265625}, "domain": "pixel"}, {"position": {"minX": 223.0, "minY": 206.25, "maxX": 237.25, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007144927978515625}, "domain": "pixel"}, {"position": {"minX": 330.75, "minY": 216.875, "maxX": 349.25, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026493072509765625}, "domain": "pixel"}, {"position": {"minX": 167.75, "minY": 197.0, "maxX": 185.75, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016698837280273438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_b2e51a5eca9440fac4dc.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_b2e51a5eca9440fac4dc.boxes2D.json new file mode 100644 index 0000000..c830ada --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_b2e51a5eca9440fac4dc.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 338.5, "minY": 214.625, "maxX": 360.5, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.449462890625}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 211.375, "maxX": 311.0, "maxY": 237.625}, "class_id": 0, "box_caption": "coureur 0.448", "scores": {"class_score": 0.447998046875}, "domain": "pixel"}, {"position": {"minX": 223.625, "minY": 199.875, "maxX": 243.625, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.447", "scores": {"class_score": 0.447021484375}, "domain": "pixel"}, {"position": {"minX": 578.0, "minY": 250.5, "maxX": 604.0, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.434", "scores": {"class_score": 0.43359375}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 232.0, "maxX": 474.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.430", "scores": {"class_score": 0.4296875}, "domain": "pixel"}, {"position": {"minX": 158.875, "minY": 196.625, "maxX": 183.125, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.42919921875}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 240.5, "maxX": 544.5, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.37841796875}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 233.625, "maxX": 405.0, "maxY": 252.375}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.374267578125}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 243.625, "maxX": 541.5, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010251998901367188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_b64fc58c1ed94ab930ba.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_b64fc58c1ed94ab930ba.boxes2D.json new file mode 100644 index 0000000..dbd7a8c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_b64fc58c1ed94ab930ba.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 444.25, "minY": 220.375, "maxX": 459.25, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.460", "scores": {"class_score": 0.4599609375}, "domain": "pixel"}, {"position": {"minX": 331.25, "minY": 209.125, "maxX": 352.25, "maxY": 236.125}, "class_id": 0, "box_caption": "coureur 0.447", "scores": {"class_score": 0.447021484375}, "domain": "pixel"}, {"position": {"minX": 512.0, "minY": 232.375, "maxX": 529.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.443", "scores": {"class_score": 0.443359375}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 214.75, "maxX": 395.75, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.432", "scores": {"class_score": 0.43212890625}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 242.0, "maxX": 585.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.429443359375}, "domain": "pixel"}, {"position": {"minX": 290.75, "minY": 199.75, "maxX": 305.75, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.415283203125}, "domain": "pixel"}, {"position": {"minX": 162.75, "minY": 189.75, "maxX": 179.5, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.411376953125}, "domain": "pixel"}, {"position": {"minX": 225.875, "minY": 198.125, "maxX": 242.125, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.354248046875}, "domain": "pixel"}, {"position": {"minX": 383.75, "minY": 218.375, "maxX": 396.25, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0162353515625}, "domain": "pixel"}, {"position": {"minX": 380.0, "minY": 210.375, "maxX": 394.0, "maxY": 232.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0067291259765625}, "domain": "pixel"}, {"position": {"minX": 157.0, "minY": 13.96875, "maxX": 188.25, "maxY": 89.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027370452880859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_e09319093f8a2d73af57.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_e09319093f8a2d73af57.boxes2D.json new file mode 100644 index 0000000..05eeeb9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_e09319093f8a2d73af57.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 332.5, "minY": 215.75, "maxX": 356.5, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.459", "scores": {"class_score": 0.458984375}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 222.25, "maxX": 403.25, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.449", "scores": {"class_score": 0.44873046875}, "domain": "pixel"}, {"position": {"minX": 288.25, "minY": 208.875, "maxX": 307.25, "maxY": 236.125}, "class_id": 0, "box_caption": "coureur 0.440", "scores": {"class_score": 0.439697265625}, "domain": "pixel"}, {"position": {"minX": 221.0, "minY": 201.75, "maxX": 241.0, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.438", "scores": {"class_score": 0.4375}, "domain": "pixel"}, {"position": {"minX": 445.5, "minY": 234.5, "maxX": 467.0, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.410888671875}, "domain": "pixel"}, {"position": {"minX": 519.5, "minY": 238.75, "maxX": 540.5, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.408935546875}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 250.25, "maxX": 594.0, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.402099609375}, "domain": "pixel"}, {"position": {"minX": 157.625, "minY": 197.25, "maxX": 168.875, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.38720703125}, "domain": "pixel"}, {"position": {"minX": 284.75, "minY": 206.875, "maxX": 302.25, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00133514404296875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_f5c8ac520cee00df3269.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_f5c8ac520cee00df3269.boxes2D.json new file mode 100644 index 0000000..f00eec0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_f5c8ac520cee00df3269.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 450.25, "minY": 230.875, "maxX": 473.25, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.468", "scores": {"class_score": 0.4677734375}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 247.625, "maxX": 601.5, "maxY": 276.0}, "class_id": 0, "box_caption": "coureur 0.437", "scores": {"class_score": 0.437255859375}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 241.75, "maxX": 546.5, "maxY": 267.75}, "class_id": 0, "box_caption": "coureur 0.435", "scores": {"class_score": 0.43505859375}, "domain": "pixel"}, {"position": {"minX": 300.0, "minY": 207.75, "maxX": 316.5, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.4150390625}, "domain": "pixel"}, {"position": {"minX": 170.0, "minY": 194.375, "maxX": 183.0, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.397216796875}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 228.75, "maxX": 407.75, "maxY": 250.25}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.37939453125}, "domain": "pixel"}, {"position": {"minX": 236.75, "minY": 198.25, "maxX": 251.25, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.339", "scores": {"class_score": 0.33935546875}, "domain": "pixel"}, {"position": {"minX": 343.0, "minY": 212.875, "maxX": 355.0, "maxY": 241.375}, "class_id": 0, "box_caption": "coureur 0.289", "scores": {"class_score": 0.2890625}, "domain": "pixel"}, {"position": {"minX": 192.25, "minY": 194.875, "maxX": 204.25, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019073486328125}, "domain": "pixel"}, {"position": {"minX": 196.375, "minY": 195.5, "maxX": 207.875, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017242431640625}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 224.5, "maxX": 408.0, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016546249389648438}, "domain": "pixel"}, {"position": {"minX": 234.0, "minY": 195.375, "maxX": 248.5, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010538101196289062}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_fd9a14195eb7a6f96aa6.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_fd9a14195eb7a6f96aa6.boxes2D.json new file mode 100644 index 0000000..a59a507 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_299_fd9a14195eb7a6f96aa6.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 524.5, "minY": 241.75, "maxX": 556.5, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.470", "scores": {"class_score": 0.47021484375}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 252.375, "maxX": 606.0, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.451", "scores": {"class_score": 0.451171875}, "domain": "pixel"}, {"position": {"minX": 347.5, "minY": 224.25, "maxX": 369.0, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.441", "scores": {"class_score": 0.440673828125}, "domain": "pixel"}, {"position": {"minX": 304.0, "minY": 207.5, "maxX": 318.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.426", "scores": {"class_score": 0.42626953125}, "domain": "pixel"}, {"position": {"minX": 457.0, "minY": 232.5, "maxX": 474.0, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.414", "scores": {"class_score": 0.41357421875}, "domain": "pixel"}, {"position": {"minX": 233.0, "minY": 205.125, "maxX": 248.25, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.363", "scores": {"class_score": 0.36328125}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 230.125, "maxX": 414.0, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.326171875}, "domain": "pixel"}, {"position": {"minX": 177.125, "minY": 196.5, "maxX": 190.125, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.111", "scores": {"class_score": 0.11053466796875}, "domain": "pixel"}, {"position": {"minX": 307.0, "minY": 203.625, "maxX": 323.0, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001850128173828125}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 211.375, "maxX": 315.75, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011196136474609375}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 206.875, "maxX": 247.25, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010814666748046875}, "domain": "pixel"}, {"position": {"minX": 135.25, "minY": 191.75, "maxX": 145.0, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010433197021484375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_0305412c8b085bb392cf.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_0305412c8b085bb392cf.boxes2D.json new file mode 100644 index 0000000..c295447 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_0305412c8b085bb392cf.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 346.25, "minY": 216.875, "maxX": 365.25, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.363", "scores": {"class_score": 0.363037109375}, "domain": "pixel"}, {"position": {"minX": 459.75, "minY": 233.625, "maxX": 475.25, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.3212890625}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 239.25, "maxX": 552.0, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.275", "scores": {"class_score": 0.274658203125}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 253.125, "maxX": 606.0, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.262", "scores": {"class_score": 0.261962890625}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 225.625, "maxX": 413.0, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.223", "scores": {"class_score": 0.223388671875}, "domain": "pixel"}, {"position": {"minX": 302.75, "minY": 216.5, "maxX": 316.75, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.193", "scores": {"class_score": 0.1925048828125}, "domain": "pixel"}, {"position": {"minX": 458.75, "minY": 239.875, "maxX": 476.25, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.105", "scores": {"class_score": 0.10467529296875}, "domain": "pixel"}, {"position": {"minX": 347.0, "minY": 225.25, "maxX": 365.5, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.092", "scores": {"class_score": 0.0921630859375}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 228.5, "maxX": 413.25, "maxY": 253.25}, "class_id": 0, "box_caption": "coureur 0.064", "scores": {"class_score": 0.06439208984375}, "domain": "pixel"}, {"position": {"minX": 234.625, "minY": 209.0, "maxX": 249.875, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.058", "scores": {"class_score": 0.058074951171875}, "domain": "pixel"}, {"position": {"minX": 301.25, "minY": 210.625, "maxX": 318.25, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.057", "scores": {"class_score": 0.057403564453125}, "domain": "pixel"}, {"position": {"minX": 235.0, "minY": 201.75, "maxX": 250.0, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.055", "scores": {"class_score": 0.054901123046875}, "domain": "pixel"}, {"position": {"minX": 454.5, "minY": 234.625, "maxX": 481.5, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.042", "scores": {"class_score": 0.042083740234375}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 217.625, "maxX": 414.75, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.031219482421875}, "domain": "pixel"}, {"position": {"minX": 535.5, "minY": 244.875, "maxX": 555.5, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.0261993408203125}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 247.0, "maxX": 552.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.02496337890625}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 250.0, "maxX": 612.5, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.022308349609375}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 203.75, "maxX": 319.5, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.020172119140625}, "domain": "pixel"}, {"position": {"minX": 351.75, "minY": 223.75, "maxX": 369.25, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0201263427734375}, "domain": "pixel"}, {"position": {"minX": 306.0, "minY": 218.0, "maxX": 324.0, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0191650390625}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 247.375, "maxX": 610.0, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.017120361328125}, "domain": "pixel"}, {"position": {"minX": 229.375, "minY": 209.375, "maxX": 245.875, "maxY": 228.375}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0158538818359375}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 245.625, "maxX": 544.5, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.015655517578125}, "domain": "pixel"}, {"position": {"minX": 131.25, "minY": 193.0, "maxX": 145.75, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.0147857666015625}, "domain": "pixel"}, {"position": {"minX": 306.5, "minY": 209.25, "maxX": 323.5, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0142059326171875}, "domain": "pixel"}, {"position": {"minX": 340.25, "minY": 213.0, "maxX": 363.75, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01210784912109375}, "domain": "pixel"}, {"position": {"minX": 522.0, "minY": 230.75, "maxX": 556.0, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01172637939453125}, "domain": "pixel"}, {"position": {"minX": 346.0, "minY": 204.5, "maxX": 367.0, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01158905029296875}, "domain": "pixel"}, {"position": {"minX": 156.75, "minY": 201.875, "maxX": 171.75, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0098724365234375}, "domain": "pixel"}, {"position": {"minX": 228.75, "minY": 201.125, "maxX": 247.75, "maxY": 223.125}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00962066650390625}, "domain": "pixel"}, {"position": {"minX": 401.25, "minY": 225.5, "maxX": 420.75, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00891876220703125}, "domain": "pixel"}, {"position": {"minX": 536.5, "minY": 238.75, "maxX": 557.5, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0085906982421875}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 230.875, "maxX": 551.0, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0085296630859375}, "domain": "pixel"}, {"position": {"minX": 583.0, "minY": 246.375, "maxX": 605.0, "maxY": 283.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00835418701171875}, "domain": "pixel"}, {"position": {"minX": 585.5, "minY": 235.5, "maxX": 611.5, "maxY": 278.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00804901123046875}, "domain": "pixel"}, {"position": {"minX": 343.0, "minY": 223.375, "maxX": 360.5, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00739288330078125}, "domain": "pixel"}, {"position": {"minX": 342.0, "minY": 218.25, "maxX": 372.0, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007266998291015625}, "domain": "pixel"}, {"position": {"minX": 653.0, "minY": 223.75, "maxX": 667.0, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0071868896484375}, "domain": "pixel"}, {"position": {"minX": 458.75, "minY": 223.0, "maxX": 476.25, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00705718994140625}, "domain": "pixel"}, {"position": {"minX": 221.75, "minY": 197.75, "maxX": 244.75, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00609588623046875}, "domain": "pixel"}, {"position": {"minX": 300.75, "minY": 219.875, "maxX": 317.25, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00502777099609375}, "domain": "pixel"}, {"position": {"minX": 132.0, "minY": 185.75, "maxX": 147.25, "maxY": 208.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004360198974609375}, "domain": "pixel"}, {"position": {"minX": 450.0, "minY": 239.125, "maxX": 473.0, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0042877197265625}, "domain": "pixel"}, {"position": {"minX": 127.3125, "minY": 182.125, "maxX": 144.125, "maxY": 212.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004241943359375}, "domain": "pixel"}, {"position": {"minX": 522.5, "minY": 238.0, "maxX": 544.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004108428955078125}, "domain": "pixel"}, {"position": {"minX": 587.5, "minY": 238.0, "maxX": 606.5, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038623809814453125}, "domain": "pixel"}, {"position": {"minX": 125.5, "minY": 193.5, "maxX": 142.0, "maxY": 212.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003604888916015625}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 230.125, "maxX": 473.75, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036029815673828125}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 217.875, "maxX": 420.75, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032405853271484375}, "domain": "pixel"}, {"position": {"minX": 445.25, "minY": 214.625, "maxX": 477.75, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030498504638671875}, "domain": "pixel"}, {"position": {"minX": 347.75, "minY": 206.5, "maxX": 363.75, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030460357666015625}, "domain": "pixel"}, {"position": {"minX": 161.75, "minY": 201.5, "maxX": 179.0, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030422210693359375}, "domain": "pixel"}, {"position": {"minX": 180.125, "minY": 200.5, "maxX": 195.125, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00295257568359375}, "domain": "pixel"}, {"position": {"minX": 403.0, "minY": 216.375, "maxX": 419.5, "maxY": 239.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00290679931640625}, "domain": "pixel"}, {"position": {"minX": 206.125, "minY": 196.625, "maxX": 226.375, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025844573974609375}, "domain": "pixel"}, {"position": {"minX": 593.0, "minY": 256.25, "maxX": 613.0, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025157928466796875}, "domain": "pixel"}, {"position": {"minX": 211.875, "minY": 201.5, "maxX": 226.625, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00249481201171875}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 255.5, "maxX": 607.0, "maxY": 288.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024623870849609375}, "domain": "pixel"}, {"position": {"minX": 131.125, "minY": 198.0, "maxX": 147.125, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023345947265625}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 248.25, "maxX": 612.0, "maxY": 293.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00226593017578125}, "domain": "pixel"}, {"position": {"minX": 353.25, "minY": 215.375, "maxX": 372.75, "maxY": 240.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002246856689453125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 199.875, "maxX": 417.5, "maxY": 241.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021343231201171875}, "domain": "pixel"}, {"position": {"minX": 456.5, "minY": 239.375, "maxX": 477.5, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020904541015625}, "domain": "pixel"}, {"position": {"minX": 386.25, "minY": 213.75, "maxX": 412.75, "maxY": 251.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020351409912109375}, "domain": "pixel"}, {"position": {"minX": 158.5, "minY": 196.625, "maxX": 178.0, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001979827880859375}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 215.25, "maxX": 598.0, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00193023681640625}, "domain": "pixel"}, {"position": {"minX": 205.5, "minY": 201.875, "maxX": 221.25, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00191497802734375}, "domain": "pixel"}, {"position": {"minX": 344.25, "minY": 218.375, "maxX": 369.75, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019092559814453125}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 247.375, "maxX": 557.5, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018672943115234375}, "domain": "pixel"}, {"position": {"minX": 288.0, "minY": 196.5, "maxX": 312.0, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018510818481445312}, "domain": "pixel"}, {"position": {"minX": 304.75, "minY": 219.5, "maxX": 322.75, "maxY": 247.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017900466918945312}, "domain": "pixel"}, {"position": {"minX": 613.5, "minY": 216.5, "maxX": 628.5, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016832351684570312}, "domain": "pixel"}, {"position": {"minX": 235.125, "minY": 212.25, "maxX": 251.625, "maxY": 238.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001682281494140625}, "domain": "pixel"}, {"position": {"minX": 653.0, "minY": 229.875, "maxX": 667.0, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016651153564453125}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 195.5, "maxX": 191.75, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00160980224609375}, "domain": "pixel"}, {"position": {"minX": 99.75, "minY": 191.25, "maxX": 115.25, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015039443969726562}, "domain": "pixel"}, {"position": {"minX": 431.25, "minY": 30.484375, "maxX": 454.75, "maxY": 72.5625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014333724975585938}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 201.125, "maxX": 189.0, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014247894287109375}, "domain": "pixel"}, {"position": {"minX": 100.0, "minY": 184.25, "maxX": 115.75, "maxY": 208.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013589859008789062}, "domain": "pixel"}, {"position": {"minX": 235.25, "minY": 191.5, "maxX": 250.75, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013132095336914062}, "domain": "pixel"}, {"position": {"minX": 180.875, "minY": 193.625, "maxX": 194.875, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012531280517578125}, "domain": "pixel"}, {"position": {"minX": 239.25, "minY": 200.625, "maxX": 258.25, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012178421020507812}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 254.5, "maxX": 602.0, "maxY": 281.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012073516845703125}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 195.75, "maxX": 362.75, "maxY": 240.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012035369873046875}, "domain": "pixel"}, {"position": {"minX": 401.75, "minY": 213.875, "maxX": 426.75, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001186370849609375}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 217.5, "maxX": 550.5, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010776519775390625}, "domain": "pixel"}, {"position": {"minX": 652.0, "minY": 226.75, "maxX": 672.0, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00107574462890625}, "domain": "pixel"}, {"position": {"minX": 450.0, "minY": 213.0, "maxX": 487.5, "maxY": 251.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010547637939453125}, "domain": "pixel"}, {"position": {"minX": 240.375, "minY": 207.875, "maxX": 257.75, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010538101196289062}, "domain": "pixel"}, {"position": {"minX": 290.25, "minY": 210.0, "maxX": 314.25, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010528564453125}, "domain": "pixel"}, {"position": {"minX": 402.5, "minY": 233.0, "maxX": 420.0, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010433197021484375}, "domain": "pixel"}, {"position": {"minX": 124.25, "minY": 198.5, "maxX": 141.25, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001033782958984375}, "domain": "pixel"}, {"position": {"minX": 632.5, "minY": 15.625, "maxX": 671.5, "maxY": 72.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010194778442382812}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 215.5, "maxX": 314.25, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010156631469726562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_045c2b73c61338ed4e0a.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_045c2b73c61338ed4e0a.boxes2D.json new file mode 100644 index 0000000..3240d7d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_045c2b73c61338ed4e0a.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 344.25, "minY": 218.375, "maxX": 361.75, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.366943359375}, "domain": "pixel"}, {"position": {"minX": 302.5, "minY": 210.5, "maxX": 317.0, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.328", "scores": {"class_score": 0.328125}, "domain": "pixel"}, {"position": {"minX": 456.0, "minY": 233.75, "maxX": 472.5, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.313", "scores": {"class_score": 0.3134765625}, "domain": "pixel"}, {"position": {"minX": 303.0, "minY": 216.375, "maxX": 316.0, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.290", "scores": {"class_score": 0.289794921875}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 239.25, "maxX": 549.0, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.288", "scores": {"class_score": 0.28759765625}, "domain": "pixel"}, {"position": {"minX": 583.0, "minY": 248.25, "maxX": 602.0, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.267", "scores": {"class_score": 0.267333984375}, "domain": "pixel"}, {"position": {"minX": 397.0, "minY": 223.875, "maxX": 411.0, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.124", "scores": {"class_score": 0.124267578125}, "domain": "pixel"}, {"position": {"minX": 397.0, "minY": 218.25, "maxX": 412.5, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.080", "scores": {"class_score": 0.07965087890625}, "domain": "pixel"}, {"position": {"minX": 343.25, "minY": 222.5, "maxX": 358.75, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.057", "scores": {"class_score": 0.056610107421875}, "domain": "pixel"}, {"position": {"minX": 345.75, "minY": 225.125, "maxX": 365.25, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.04425048828125}, "domain": "pixel"}, {"position": {"minX": 451.5, "minY": 240.25, "maxX": 471.0, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.032", "scores": {"class_score": 0.031646728515625}, "domain": "pixel"}, {"position": {"minX": 341.5, "minY": 214.25, "maxX": 360.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.030517578125}, "domain": "pixel"}, {"position": {"minX": 458.0, "minY": 240.5, "maxX": 476.0, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0295867919921875}, "domain": "pixel"}, {"position": {"minX": 236.875, "minY": 201.0, "maxX": 251.125, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.0260772705078125}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 231.125, "maxX": 548.0, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.0236663818359375}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 256.0, "maxX": 604.0, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.0234527587890625}, "domain": "pixel"}, {"position": {"minX": 525.5, "minY": 244.0, "maxX": 543.5, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.02301025390625}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 227.125, "maxX": 412.75, "maxY": 254.625}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0201416015625}, "domain": "pixel"}, {"position": {"minX": 179.375, "minY": 201.75, "maxX": 194.625, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.019866943359375}, "domain": "pixel"}, {"position": {"minX": 305.25, "minY": 209.375, "maxX": 324.25, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0182647705078125}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 256.0, "maxX": 599.5, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0177764892578125}, "domain": "pixel"}, {"position": {"minX": 139.875, "minY": 195.0, "maxX": 154.875, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.0147857666015625}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 237.0, "maxX": 608.0, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0136566162109375}, "domain": "pixel"}, {"position": {"minX": 454.25, "minY": 221.75, "maxX": 479.25, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.011627197265625}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 249.375, "maxX": 610.5, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01092529296875}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 202.125, "maxX": 316.25, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0104827880859375}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 232.5, "maxX": 553.5, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01031494140625}, "domain": "pixel"}, {"position": {"minX": 306.0, "minY": 218.125, "maxX": 324.0, "maxY": 237.625}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00923919677734375}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 233.125, "maxX": 481.5, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007659912109375}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 248.125, "maxX": 550.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0069427490234375}, "domain": "pixel"}, {"position": {"minX": 173.125, "minY": 201.25, "maxX": 189.625, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0067291259765625}, "domain": "pixel"}, {"position": {"minX": 140.125, "minY": 199.25, "maxX": 155.375, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00629425048828125}, "domain": "pixel"}, {"position": {"minX": 300.5, "minY": 219.875, "maxX": 317.0, "maxY": 245.875}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006267547607421875}, "domain": "pixel"}, {"position": {"minX": 456.5, "minY": 223.5, "maxX": 474.5, "maxY": 252.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005878448486328125}, "domain": "pixel"}, {"position": {"minX": 343.75, "minY": 200.875, "maxX": 366.25, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005725860595703125}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 215.375, "maxX": 410.25, "maxY": 250.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005237579345703125}, "domain": "pixel"}, {"position": {"minX": 237.125, "minY": 196.875, "maxX": 255.625, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0051422119140625}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 222.75, "maxX": 417.5, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004993438720703125}, "domain": "pixel"}, {"position": {"minX": 345.0, "minY": 208.5, "maxX": 362.5, "maxY": 235.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00467681884765625}, "domain": "pixel"}, {"position": {"minX": 524.0, "minY": 217.375, "maxX": 549.0, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0041351318359375}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 239.875, "maxX": 601.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037593841552734375}, "domain": "pixel"}, {"position": {"minX": 174.0, "minY": 196.375, "maxX": 194.5, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003742218017578125}, "domain": "pixel"}, {"position": {"minX": 533.5, "minY": 238.5, "maxX": 554.5, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036334991455078125}, "domain": "pixel"}, {"position": {"minX": 237.625, "minY": 193.875, "maxX": 250.625, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003448486328125}, "domain": "pixel"}, {"position": {"minX": 389.5, "minY": 223.875, "maxX": 410.5, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032863616943359375}, "domain": "pixel"}, {"position": {"minX": 179.5, "minY": 206.5, "maxX": 195.25, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003040313720703125}, "domain": "pixel"}, {"position": {"minX": 235.625, "minY": 206.5, "maxX": 251.625, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029926300048828125}, "domain": "pixel"}, {"position": {"minX": 587.0, "minY": 238.875, "maxX": 604.0, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002979278564453125}, "domain": "pixel"}, {"position": {"minX": 651.0, "minY": 215.5, "maxX": 665.0, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029277801513671875}, "domain": "pixel"}, {"position": {"minX": 139.125, "minY": 180.5, "maxX": 159.625, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027446746826171875}, "domain": "pixel"}, {"position": {"minX": 185.5, "minY": 201.125, "maxX": 202.5, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002727508544921875}, "domain": "pixel"}, {"position": {"minX": 132.75, "minY": 194.25, "maxX": 149.75, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025424957275390625}, "domain": "pixel"}, {"position": {"minX": 349.5, "minY": 215.75, "maxX": 370.0, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002521514892578125}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 229.25, "maxX": 408.25, "maxY": 255.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024585723876953125}, "domain": "pixel"}, {"position": {"minX": 145.0, "minY": 194.0, "maxX": 162.5, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023345947265625}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 198.125, "maxX": 360.0, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022449493408203125}, "domain": "pixel"}, {"position": {"minX": 395.5, "minY": 201.5, "maxX": 416.5, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002185821533203125}, "domain": "pixel"}, {"position": {"minX": 240.625, "minY": 200.875, "maxX": 258.0, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021514892578125}, "domain": "pixel"}, {"position": {"minX": 645.5, "minY": 216.25, "maxX": 662.5, "maxY": 240.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020999908447265625}, "domain": "pixel"}, {"position": {"minX": 304.5, "minY": 201.0, "maxX": 322.0, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019741058349609375}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 218.75, "maxX": 421.0, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018911361694335938}, "domain": "pixel"}, {"position": {"minX": 172.5, "minY": 193.125, "maxX": 188.0, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016918182373046875}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 228.25, "maxX": 541.5, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016727447509765625}, "domain": "pixel"}, {"position": {"minX": 499.75, "minY": 207.625, "maxX": 517.0, "maxY": 233.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016307830810546875}, "domain": "pixel"}, {"position": {"minX": 352.0, "minY": 222.875, "maxX": 369.5, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00162506103515625}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 199.375, "maxX": 313.5, "maxY": 233.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015964508056640625}, "domain": "pixel"}, {"position": {"minX": 653.0, "minY": 218.625, "maxX": 666.0, "maxY": 237.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015859603881835938}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 215.625, "maxX": 315.0, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015573501586914062}, "domain": "pixel"}, {"position": {"minX": 339.75, "minY": 217.25, "maxX": 371.75, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014677047729492188}, "domain": "pixel"}, {"position": {"minX": 185.625, "minY": 195.75, "maxX": 206.625, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014667510986328125}, "domain": "pixel"}, {"position": {"minX": 296.0, "minY": 201.25, "maxX": 327.5, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013942718505859375}, "domain": "pixel"}, {"position": {"minX": 132.375, "minY": 199.5, "maxX": 149.625, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013589859008789062}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 208.875, "maxX": 314.5, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013284683227539062}, "domain": "pixel"}, {"position": {"minX": 146.5, "minY": 199.375, "maxX": 162.75, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013170242309570312}, "domain": "pixel"}, {"position": {"minX": 172.625, "minY": 182.0, "maxX": 193.375, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012607574462890625}, "domain": "pixel"}, {"position": {"minX": 535.5, "minY": 245.375, "maxX": 555.5, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001255035400390625}, "domain": "pixel"}, {"position": {"minX": 491.5, "minY": 216.75, "maxX": 509.5, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 651.5, "minY": 213.875, "maxX": 669.5, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001232147216796875}, "domain": "pixel"}, {"position": {"minX": 178.375, "minY": 193.0, "maxX": 195.125, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011053085327148438}, "domain": "pixel"}, {"position": {"minX": 228.125, "minY": 200.625, "maxX": 247.375, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011014938354492188}, "domain": "pixel"}, {"position": {"minX": 402.5, "minY": 217.0, "maxX": 420.0, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001094818115234375}, "domain": "pixel"}, {"position": {"minX": 124.9375, "minY": 178.0, "maxX": 148.0, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001087188720703125}, "domain": "pixel"}, {"position": {"minX": 251.75, "minY": 197.5, "maxX": 270.75, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001087188720703125}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 223.0, "maxX": 469.75, "maxY": 249.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010585784912109375}, "domain": "pixel"}, {"position": {"minX": 223.125, "minY": 196.0, "maxX": 243.875, "maxY": 229.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001056671142578125}, "domain": "pixel"}, {"position": {"minX": 138.75, "minY": 193.25, "maxX": 160.5, "maxY": 229.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010547637939453125}, "domain": "pixel"}, {"position": {"minX": 447.25, "minY": 233.0, "maxX": 475.75, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001049041748046875}, "domain": "pixel"}, {"position": {"minX": 304.5, "minY": 219.5, "maxX": 323.0, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010013580322265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_16078db404037cbdf827.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_16078db404037cbdf827.boxes2D.json new file mode 100644 index 0000000..b8717f6 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_16078db404037cbdf827.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 333.75, "minY": 216.625, "maxX": 349.75, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.40185546875}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 209.75, "maxX": 306.0, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.37744140625}, "domain": "pixel"}, {"position": {"minX": 517.5, "minY": 240.25, "maxX": 531.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.354248046875}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 203.375, "maxX": 240.625, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.345703125}, "domain": "pixel"}, {"position": {"minX": 445.25, "minY": 230.75, "maxX": 462.75, "maxY": 252.0}, "class_id": 0, "box_caption": "coureur 0.312", "scores": {"class_score": 0.3125}, "domain": "pixel"}, {"position": {"minX": 573.0, "minY": 246.5, "maxX": 587.0, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.289", "scores": {"class_score": 0.2890625}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 218.0, "maxX": 401.25, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.195", "scores": {"class_score": 0.1954345703125}, "domain": "pixel"}, {"position": {"minX": 290.5, "minY": 204.25, "maxX": 305.5, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.142", "scores": {"class_score": 0.1424560546875}, "domain": "pixel"}, {"position": {"minX": 293.5, "minY": 203.375, "maxX": 306.0, "maxY": 223.125}, "class_id": 0, "box_caption": "coureur 0.139", "scores": {"class_score": 0.1385498046875}, "domain": "pixel"}, {"position": {"minX": 572.5, "minY": 239.375, "maxX": 587.5, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.123", "scores": {"class_score": 0.12335205078125}, "domain": "pixel"}, {"position": {"minX": 443.0, "minY": 223.125, "maxX": 463.0, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.117", "scores": {"class_score": 0.1168212890625}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 240.625, "maxX": 591.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.093", "scores": {"class_score": 0.09320068359375}, "domain": "pixel"}, {"position": {"minX": 332.0, "minY": 207.625, "maxX": 349.5, "maxY": 232.125}, "class_id": 0, "box_caption": "coureur 0.092", "scores": {"class_score": 0.091796875}, "domain": "pixel"}, {"position": {"minX": 227.0, "minY": 207.125, "maxX": 241.75, "maxY": 227.625}, "class_id": 0, "box_caption": "coureur 0.084", "scores": {"class_score": 0.083984375}, "domain": "pixel"}, {"position": {"minX": 516.5, "minY": 233.0, "maxX": 532.5, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.074", "scores": {"class_score": 0.07403564453125}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 243.625, "maxX": 532.5, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.056", "scores": {"class_score": 0.055511474609375}, "domain": "pixel"}, {"position": {"minX": 337.25, "minY": 217.875, "maxX": 356.25, "maxY": 237.875}, "class_id": 0, "box_caption": "coureur 0.043", "scores": {"class_score": 0.0428466796875}, "domain": "pixel"}, {"position": {"minX": 219.125, "minY": 201.375, "maxX": 239.625, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.032562255859375}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 233.125, "maxX": 468.5, "maxY": 254.625}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.03253173828125}, "domain": "pixel"}, {"position": {"minX": 387.0, "minY": 221.625, "maxX": 402.0, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0179901123046875}, "domain": "pixel"}, {"position": {"minX": 568.0, "minY": 234.0, "maxX": 594.0, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.01641845703125}, "domain": "pixel"}, {"position": {"minX": 222.125, "minY": 207.5, "maxX": 238.625, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0162811279296875}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 235.125, "maxX": 536.5, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.014801025390625}, "domain": "pixel"}, {"position": {"minX": 331.0, "minY": 219.625, "maxX": 349.5, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01322174072265625}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 212.625, "maxX": 307.5, "maxY": 237.125}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01312255859375}, "domain": "pixel"}, {"position": {"minX": 101.3125, "minY": 177.875, "maxX": 114.1875, "maxY": 196.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0125732421875}, "domain": "pixel"}, {"position": {"minX": 293.75, "minY": 208.5, "maxX": 312.75, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0123291015625}, "domain": "pixel"}, {"position": {"minX": 507.5, "minY": 232.25, "maxX": 537.5, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01153564453125}, "domain": "pixel"}, {"position": {"minX": 448.75, "minY": 223.125, "maxX": 468.75, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01143646240234375}, "domain": "pixel"}, {"position": {"minX": 337.5, "minY": 208.625, "maxX": 356.0, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01080322265625}, "domain": "pixel"}, {"position": {"minX": 565.5, "minY": 245.75, "maxX": 588.5, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.010528564453125}, "domain": "pixel"}, {"position": {"minX": 387.0, "minY": 209.125, "maxX": 404.0, "maxY": 232.375}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0099639892578125}, "domain": "pixel"}, {"position": {"minX": 379.75, "minY": 217.25, "maxX": 398.75, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00946044921875}, "domain": "pixel"}, {"position": {"minX": 326.0, "minY": 216.875, "maxX": 346.0, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.008026123046875}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 193.375, "maxX": 242.125, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00800323486328125}, "domain": "pixel"}, {"position": {"minX": 569.5, "minY": 248.75, "maxX": 589.5, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00617218017578125}, "domain": "pixel"}, {"position": {"minX": 222.375, "minY": 189.75, "maxX": 241.875, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00612640380859375}, "domain": "pixel"}, {"position": {"minX": 286.5, "minY": 205.5, "maxX": 307.5, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0057373046875}, "domain": "pixel"}, {"position": {"minX": 442.25, "minY": 234.0, "maxX": 462.75, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004947662353515625}, "domain": "pixel"}, {"position": {"minX": 311.0, "minY": 32.625, "maxX": 333.0, "maxY": 70.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004764556884765625}, "domain": "pixel"}, {"position": {"minX": 382.75, "minY": 203.875, "maxX": 402.25, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004650115966796875}, "domain": "pixel"}, {"position": {"minX": 164.75, "minY": 194.25, "maxX": 180.5, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004642486572265625}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 221.875, "maxX": 399.0, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00421142578125}, "domain": "pixel"}, {"position": {"minX": 509.75, "minY": 219.625, "maxX": 535.5, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00417327880859375}, "domain": "pixel"}, {"position": {"minX": 291.25, "minY": 199.25, "maxX": 314.25, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003993988037109375}, "domain": "pixel"}, {"position": {"minX": 171.375, "minY": 200.75, "maxX": 186.125, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003620147705078125}, "domain": "pixel"}, {"position": {"minX": 573.0, "minY": 230.375, "maxX": 587.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032196044921875}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 201.0, "maxX": 249.5, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003170013427734375}, "domain": "pixel"}, {"position": {"minX": 165.375, "minY": 199.75, "maxX": 181.125, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003139495849609375}, "domain": "pixel"}, {"position": {"minX": 437.5, "minY": 231.25, "maxX": 458.5, "maxY": 255.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030651092529296875}, "domain": "pixel"}, {"position": {"minX": 595.0, "minY": 56.78125, "maxX": 614.0, "maxY": 91.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030498504638671875}, "domain": "pixel"}, {"position": {"minX": 436.25, "minY": 223.75, "maxX": 461.75, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028133392333984375}, "domain": "pixel"}, {"position": {"minX": 337.0, "minY": 220.125, "maxX": 355.0, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027866363525390625}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 220.875, "maxX": 593.5, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027065277099609375}, "domain": "pixel"}, {"position": {"minX": 100.8125, "minY": 182.75, "maxX": 115.0625, "maxY": 205.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026340484619140625}, "domain": "pixel"}, {"position": {"minX": 432.25, "minY": 212.375, "maxX": 460.75, "maxY": 253.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024776458740234375}, "domain": "pixel"}, {"position": {"minX": 196.375, "minY": 192.25, "maxX": 211.625, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002407073974609375}, "domain": "pixel"}, {"position": {"minX": 596.0, "minY": 54.09375, "maxX": 612.0, "maxY": 81.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00238800048828125}, "domain": "pixel"}, {"position": {"minX": 390.5, "minY": 214.875, "maxX": 410.0, "maxY": 239.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022182464599609375}, "domain": "pixel"}, {"position": {"minX": 619.0, "minY": 213.0, "maxX": 634.0, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021915435791015625}, "domain": "pixel"}, {"position": {"minX": 170.5, "minY": 193.625, "maxX": 185.75, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00203704833984375}, "domain": "pixel"}, {"position": {"minX": 652.5, "minY": 213.5, "maxX": 667.5, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00196075439453125}, "domain": "pixel"}, {"position": {"minX": 156.625, "minY": 180.75, "maxX": 178.125, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018482208251953125}, "domain": "pixel"}, {"position": {"minX": 323.0, "minY": 211.625, "maxX": 348.0, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001842498779296875}, "domain": "pixel"}, {"position": {"minX": 392.0, "minY": 207.375, "maxX": 410.5, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018329620361328125}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 185.75, "maxX": 307.5, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016613006591796875}, "domain": "pixel"}, {"position": {"minX": 420.0, "minY": 208.0, "maxX": 436.0, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016450881958007812}, "domain": "pixel"}, {"position": {"minX": 508.25, "minY": 244.25, "maxX": 530.5, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016393661499023438}, "domain": "pixel"}, {"position": {"minX": 506.25, "minY": 238.75, "maxX": 530.0, "maxY": 265.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001628875732421875}, "domain": "pixel"}, {"position": {"minX": 380.5, "minY": 208.875, "maxX": 399.5, "maxY": 233.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016279220581054688}, "domain": "pixel"}, {"position": {"minX": 439.0, "minY": 232.375, "maxX": 472.0, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015344619750976562}, "domain": "pixel"}, {"position": {"minX": 274.5, "minY": 197.375, "maxX": 297.5, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015048980712890625}, "domain": "pixel"}, {"position": {"minX": 209.0, "minY": 195.5, "maxX": 233.25, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001468658447265625}, "domain": "pixel"}, {"position": {"minX": 325.25, "minY": 200.25, "maxX": 358.25, "maxY": 232.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014638900756835938}, "domain": "pixel"}, {"position": {"minX": 328.75, "minY": 218.0, "maxX": 358.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014410018920898438}, "domain": "pixel"}, {"position": {"minX": 97.4375, "minY": 166.625, "maxX": 114.9375, "maxY": 198.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013227462768554688}, "domain": "pixel"}, {"position": {"minX": 292.75, "minY": 193.0, "maxX": 307.25, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012350082397460938}, "domain": "pixel"}, {"position": {"minX": 96.25, "minY": 177.125, "maxX": 114.75, "maxY": 211.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012350082397460938}, "domain": "pixel"}, {"position": {"minX": 447.25, "minY": 212.5, "maxX": 468.25, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001186370849609375}, "domain": "pixel"}, {"position": {"minX": 653.5, "minY": 217.625, "maxX": 665.5, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011692047119140625}, "domain": "pixel"}, {"position": {"minX": 141.375, "minY": 179.875, "maxX": 161.875, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011692047119140625}, "domain": "pixel"}, {"position": {"minX": 218.5, "minY": 202.25, "maxX": 249.0, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011682510375976562}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 180.5, "maxX": 191.75, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001148223876953125}, "domain": "pixel"}, {"position": {"minX": 421.75, "minY": 200.75, "maxX": 437.75, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011053085327148438}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 214.125, "maxX": 543.5, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010957717895507812}, "domain": "pixel"}, {"position": {"minX": 435.75, "minY": 216.25, "maxX": 472.25, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00109100341796875}, "domain": "pixel"}, {"position": {"minX": 303.75, "minY": 16.96875, "maxX": 344.25, "maxY": 71.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010690689086914062}, "domain": "pixel"}, {"position": {"minX": 297.5, "minY": 210.5, "maxX": 316.5, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010395050048828125}, "domain": "pixel"}, {"position": {"minX": 317.75, "minY": 198.0, "maxX": 346.75, "maxY": 236.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010366439819335938}, "domain": "pixel"}, {"position": {"minX": 324.25, "minY": 208.875, "maxX": 347.25, "maxY": 233.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001007080078125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_2627f128f7457d838625.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_2627f128f7457d838625.boxes2D.json new file mode 100644 index 0000000..3c7c43f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_2627f128f7457d838625.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 341.0, "minY": 217.875, "maxX": 355.0, "maxY": 239.125}, "class_id": 0, "box_caption": "coureur 0.433", "scores": {"class_score": 0.433349609375}, "domain": "pixel"}, {"position": {"minX": 452.0, "minY": 232.625, "maxX": 470.0, "maxY": 255.875}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.42529296875}, "domain": "pixel"}, {"position": {"minX": 340.5, "minY": 222.625, "maxX": 355.5, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.348", "scores": {"class_score": 0.347900390625}, "domain": "pixel"}, {"position": {"minX": 295.0, "minY": 210.375, "maxX": 310.5, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.300", "scores": {"class_score": 0.299560546875}, "domain": "pixel"}, {"position": {"minX": 582.5, "minY": 248.75, "maxX": 599.5, "maxY": 273.75}, "class_id": 0, "box_caption": "coureur 0.292", "scores": {"class_score": 0.29248046875}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 244.875, "maxX": 544.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.236", "scores": {"class_score": 0.2359619140625}, "domain": "pixel"}, {"position": {"minX": 295.25, "minY": 215.625, "maxX": 308.25, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.199", "scores": {"class_score": 0.1993408203125}, "domain": "pixel"}, {"position": {"minX": 523.0, "minY": 237.875, "maxX": 544.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.140", "scores": {"class_score": 0.1395263671875}, "domain": "pixel"}, {"position": {"minX": 338.25, "minY": 214.375, "maxX": 356.25, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.136", "scores": {"class_score": 0.1358642578125}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 225.0, "maxX": 471.5, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.072", "scores": {"class_score": 0.0716552734375}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 224.5, "maxX": 406.5, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.060", "scores": {"class_score": 0.060394287109375}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 255.0, "maxX": 599.5, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.054", "scores": {"class_score": 0.054412841796875}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 239.375, "maxX": 470.25, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.054", "scores": {"class_score": 0.054168701171875}, "domain": "pixel"}, {"position": {"minX": 297.0, "minY": 208.125, "maxX": 316.5, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.052", "scores": {"class_score": 0.052154541015625}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 238.0, "maxX": 549.5, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.03680419921875}, "domain": "pixel"}, {"position": {"minX": 391.5, "minY": 219.25, "maxX": 410.5, "maxY": 248.75}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.0306854248046875}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 207.875, "maxX": 242.875, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.028", "scores": {"class_score": 0.0280914306640625}, "domain": "pixel"}, {"position": {"minX": 226.25, "minY": 201.875, "maxX": 242.25, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.026947021484375}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 221.375, "maxX": 468.25, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.026031494140625}, "domain": "pixel"}, {"position": {"minX": 341.5, "minY": 209.75, "maxX": 355.5, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.0241546630859375}, "domain": "pixel"}, {"position": {"minX": 287.25, "minY": 205.0, "maxX": 309.25, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.023834228515625}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 202.0, "maxX": 237.875, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0203094482421875}, "domain": "pixel"}, {"position": {"minX": 341.75, "minY": 222.75, "maxX": 361.25, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0177459716796875}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 204.875, "maxX": 355.75, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.017181396484375}, "domain": "pixel"}, {"position": {"minX": 644.0, "minY": 214.375, "maxX": 661.0, "maxY": 242.125}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.016998291015625}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 233.625, "maxX": 475.0, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.01593017578125}, "domain": "pixel"}, {"position": {"minX": 387.75, "minY": 217.375, "maxX": 406.25, "maxY": 242.375}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0157623291015625}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 239.875, "maxX": 601.0, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01447296142578125}, "domain": "pixel"}, {"position": {"minX": 638.0, "minY": 214.375, "maxX": 657.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01202392578125}, "domain": "pixel"}, {"position": {"minX": 575.0, "minY": 248.875, "maxX": 607.0, "maxY": 280.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01031494140625}, "domain": "pixel"}, {"position": {"minX": 455.5, "minY": 230.875, "maxX": 478.0, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00998687744140625}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 227.625, "maxX": 407.25, "maxY": 254.875}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00917816162109375}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 255.125, "maxX": 605.0, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00884246826171875}, "domain": "pixel"}, {"position": {"minX": 222.0, "minY": 197.375, "maxX": 241.5, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0085906982421875}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 202.375, "maxX": 315.5, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00832366943359375}, "domain": "pixel"}, {"position": {"minX": 296.5, "minY": 210.875, "maxX": 314.0, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00799560546875}, "domain": "pixel"}, {"position": {"minX": 220.125, "minY": 207.625, "maxX": 237.375, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00789642333984375}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 225.875, "maxX": 411.25, "maxY": 245.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0077667236328125}, "domain": "pixel"}, {"position": {"minX": 188.25, "minY": 194.0, "maxX": 202.0, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00769805908203125}, "domain": "pixel"}, {"position": {"minX": 412.0, "minY": 201.375, "maxX": 426.5, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005695343017578125}, "domain": "pixel"}, {"position": {"minX": 298.0, "minY": 217.5, "maxX": 316.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00537872314453125}, "domain": "pixel"}, {"position": {"minX": 522.5, "minY": 248.0, "maxX": 549.5, "maxY": 280.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004993438720703125}, "domain": "pixel"}, {"position": {"minX": 394.0, "minY": 225.25, "maxX": 412.5, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038623809814453125}, "domain": "pixel"}, {"position": {"minX": 580.5, "minY": 236.75, "maxX": 597.5, "maxY": 267.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037631988525390625}, "domain": "pixel"}, {"position": {"minX": 338.5, "minY": 225.0, "maxX": 357.5, "maxY": 255.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036830902099609375}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 201.0, "maxX": 309.5, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003681182861328125}, "domain": "pixel"}, {"position": {"minX": 411.75, "minY": 206.875, "maxX": 426.25, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003509521484375}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 217.25, "maxX": 362.0, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031566619873046875}, "domain": "pixel"}, {"position": {"minX": 442.0, "minY": 230.125, "maxX": 466.0, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00299072265625}, "domain": "pixel"}, {"position": {"minX": 187.5, "minY": 199.125, "maxX": 203.0, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029850006103515625}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 229.375, "maxX": 541.5, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002887725830078125}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 218.5, "maxX": 309.5, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028247833251953125}, "domain": "pixel"}, {"position": {"minX": 522.5, "minY": 218.625, "maxX": 547.5, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002742767333984375}, "domain": "pixel"}, {"position": {"minX": 439.25, "minY": 213.375, "maxX": 475.75, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026569366455078125}, "domain": "pixel"}, {"position": {"minX": 385.5, "minY": 222.5, "maxX": 409.0, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002651214599609375}, "domain": "pixel"}, {"position": {"minX": 149.625, "minY": 193.375, "maxX": 164.625, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00263214111328125}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 240.625, "maxX": 545.0, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002620697021484375}, "domain": "pixel"}, {"position": {"minX": 233.125, "minY": 207.375, "maxX": 249.875, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026111602783203125}, "domain": "pixel"}, {"position": {"minX": 330.5, "minY": 215.0, "maxX": 353.5, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025787353515625}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 230.25, "maxX": 547.5, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025653839111328125}, "domain": "pixel"}, {"position": {"minX": 334.0, "minY": 217.5, "maxX": 359.0, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024318695068359375}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 238.625, "maxX": 603.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002391815185546875}, "domain": "pixel"}, {"position": {"minX": 268.75, "minY": 201.75, "maxX": 282.75, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002254486083984375}, "domain": "pixel"}, {"position": {"minX": 623.5, "minY": 213.375, "maxX": 645.5, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002227783203125}, "domain": "pixel"}, {"position": {"minX": 395.75, "minY": 233.0, "maxX": 410.75, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021381378173828125}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 193.5, "maxX": 243.375, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021190643310546875}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 199.75, "maxX": 417.25, "maxY": 240.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021076202392578125}, "domain": "pixel"}, {"position": {"minX": 148.0, "minY": 198.875, "maxX": 165.0, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020275115966796875}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 216.0, "maxX": 365.25, "maxY": 240.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019311904907226562}, "domain": "pixel"}, {"position": {"minX": 620.0, "minY": 216.625, "maxX": 636.0, "maxY": 240.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019006729125976562}, "domain": "pixel"}, {"position": {"minX": 105.9375, "minY": 188.125, "maxX": 124.5625, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018100738525390625}, "domain": "pixel"}, {"position": {"minX": 339.25, "minY": 198.0, "maxX": 365.25, "maxY": 239.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00180816650390625}, "domain": "pixel"}, {"position": {"minX": 232.875, "minY": 196.25, "maxX": 252.875, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018053054809570312}, "domain": "pixel"}, {"position": {"minX": 181.125, "minY": 194.0, "maxX": 197.625, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015935897827148438}, "domain": "pixel"}, {"position": {"minX": 380.25, "minY": 197.75, "maxX": 405.25, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015859603881835938}, "domain": "pixel"}, {"position": {"minX": 342.5, "minY": 207.75, "maxX": 361.5, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015268325805664062}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 244.625, "maxX": 606.0, "maxY": 295.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014934539794921875}, "domain": "pixel"}, {"position": {"minX": 270.25, "minY": 196.625, "maxX": 294.25, "maxY": 232.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001476287841796875}, "domain": "pixel"}, {"position": {"minX": 445.0, "minY": 229.75, "maxX": 474.5, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001461029052734375}, "domain": "pixel"}, {"position": {"minX": 643.5, "minY": 225.625, "maxX": 660.5, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014047622680664062}, "domain": "pixel"}, {"position": {"minX": 647.0, "minY": 213.125, "maxX": 666.0, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001346588134765625}, "domain": "pixel"}, {"position": {"minX": 636.0, "minY": 223.125, "maxX": 655.0, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013370513916015625}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 193.5, "maxX": 236.875, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013036727905273438}, "domain": "pixel"}, {"position": {"minX": 233.125, "minY": 200.75, "maxX": 250.125, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012874603271484375}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 338.5, "maxX": 600.5, "maxY": 388.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00125885009765625}, "domain": "pixel"}, {"position": {"minX": 187.875, "minY": 195.0, "maxX": 207.625, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011587142944335938}, "domain": "pixel"}, {"position": {"minX": 643.0, "minY": 205.0, "maxX": 663.0, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00110626220703125}, "domain": "pixel"}, {"position": {"minX": 457.75, "minY": 240.625, "maxX": 476.75, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010976791381835938}, "domain": "pixel"}, {"position": {"minX": 180.125, "minY": 199.5, "maxX": 197.375, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001087188720703125}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 234.125, "maxX": 555.5, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010852813720703125}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 216.875, "maxX": 420.75, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010728836059570312}, "domain": "pixel"}, {"position": {"minX": 153.75, "minY": 198.875, "maxX": 171.0, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010623931884765625}, "domain": "pixel"}, {"position": {"minX": 565.0, "minY": 226.375, "maxX": 608.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010547637939453125}, "domain": "pixel"}, {"position": {"minX": 206.25, "minY": 195.875, "maxX": 227.75, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010519027709960938}, "domain": "pixel"}, {"position": {"minX": 153.5, "minY": 192.125, "maxX": 170.25, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010099411010742188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_34b545b87a5c54288287.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_34b545b87a5c54288287.boxes2D.json new file mode 100644 index 0000000..c46f00e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_34b545b87a5c54288287.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 292.0, "minY": 202.5, "maxX": 306.0, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.42041015625}, "domain": "pixel"}, {"position": {"minX": 443.5, "minY": 224.0, "maxX": 460.0, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.387451171875}, "domain": "pixel"}, {"position": {"minX": 332.0, "minY": 209.875, "maxX": 347.0, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.382568359375}, "domain": "pixel"}, {"position": {"minX": 511.75, "minY": 231.75, "maxX": 530.0, "maxY": 255.5}, "class_id": 0, "box_caption": "coureur 0.342", "scores": {"class_score": 0.341796875}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 238.375, "maxX": 585.5, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.274", "scores": {"class_score": 0.2744140625}, "domain": "pixel"}, {"position": {"minX": 383.5, "minY": 217.75, "maxX": 397.5, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.267", "scores": {"class_score": 0.267333984375}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 215.75, "maxX": 461.25, "maxY": 240.0}, "class_id": 0, "box_caption": "coureur 0.177", "scores": {"class_score": 0.177001953125}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 208.875, "maxX": 398.5, "maxY": 233.625}, "class_id": 0, "box_caption": "coureur 0.099", "scores": {"class_score": 0.0989990234375}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 194.0, "maxX": 306.5, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.091", "scores": {"class_score": 0.0914306640625}, "domain": "pixel"}, {"position": {"minX": 569.5, "minY": 231.25, "maxX": 588.5, "maxY": 256.5}, "class_id": 0, "box_caption": "coureur 0.071", "scores": {"class_score": 0.07073974609375}, "domain": "pixel"}, {"position": {"minX": 331.25, "minY": 213.625, "maxX": 347.25, "maxY": 235.875}, "class_id": 0, "box_caption": "coureur 0.067", "scores": {"class_score": 0.06719970703125}, "domain": "pixel"}, {"position": {"minX": 332.0, "minY": 200.75, "maxX": 348.0, "maxY": 225.5}, "class_id": 0, "box_caption": "coureur 0.064", "scores": {"class_score": 0.06439208984375}, "domain": "pixel"}, {"position": {"minX": 228.0, "minY": 193.75, "maxX": 243.25, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.055", "scores": {"class_score": 0.054534912109375}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 220.625, "maxX": 398.5, "maxY": 244.875}, "class_id": 0, "box_caption": "coureur 0.054", "scores": {"class_score": 0.054107666015625}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 196.75, "maxX": 305.0, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.052", "scores": {"class_score": 0.051849365234375}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 236.625, "maxX": 531.5, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.050", "scores": {"class_score": 0.049713134765625}, "domain": "pixel"}, {"position": {"minX": 512.5, "minY": 224.625, "maxX": 529.5, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.04595947265625}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 223.875, "maxX": 465.5, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.03759765625}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 205.5, "maxX": 306.5, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.030609130859375}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 208.25, "maxX": 353.25, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.028", "scores": {"class_score": 0.0282745361328125}, "domain": "pixel"}, {"position": {"minX": 563.0, "minY": 230.875, "maxX": 584.0, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.028", "scores": {"class_score": 0.028228759765625}, "domain": "pixel"}, {"position": {"minX": 563.5, "minY": 234.625, "maxX": 592.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0201263427734375}, "domain": "pixel"}, {"position": {"minX": 437.0, "minY": 215.75, "maxX": 459.0, "maxY": 249.0}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0200347900390625}, "domain": "pixel"}, {"position": {"minX": 163.25, "minY": 193.625, "maxX": 178.25, "maxY": 212.375}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.018646240234375}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 201.5, "maxX": 312.5, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017822265625}, "domain": "pixel"}, {"position": {"minX": 228.625, "minY": 199.0, "maxX": 245.125, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0159759521484375}, "domain": "pixel"}, {"position": {"minX": 385.5, "minY": 217.625, "maxX": 404.0, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0156707763671875}, "domain": "pixel"}, {"position": {"minX": 441.75, "minY": 227.0, "maxX": 460.75, "maxY": 252.5}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01508331298828125}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 207.75, "maxX": 349.0, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.012908935546875}, "domain": "pixel"}, {"position": {"minX": 235.0, "minY": 200.625, "maxX": 250.0, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01250457763671875}, "domain": "pixel"}, {"position": {"minX": 283.0, "minY": 201.375, "maxX": 304.0, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0078582763671875}, "domain": "pixel"}, {"position": {"minX": 156.875, "minY": 192.75, "maxX": 172.875, "maxY": 212.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007663726806640625}, "domain": "pixel"}, {"position": {"minX": 434.5, "minY": 224.5, "maxX": 456.5, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007415771484375}, "domain": "pixel"}, {"position": {"minX": 508.25, "minY": 223.125, "maxX": 526.5, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00695037841796875}, "domain": "pixel"}, {"position": {"minX": 222.875, "minY": 182.0, "maxX": 242.375, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006877899169921875}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 207.75, "maxX": 403.75, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00681304931640625}, "domain": "pixel"}, {"position": {"minX": 334.25, "minY": 200.0, "maxX": 355.25, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00595855712890625}, "domain": "pixel"}, {"position": {"minX": 323.0, "minY": 208.875, "maxX": 344.0, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005859375}, "domain": "pixel"}, {"position": {"minX": 158.25, "minY": 183.5, "maxX": 176.5, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00531768798828125}, "domain": "pixel"}, {"position": {"minX": 162.875, "minY": 186.125, "maxX": 178.625, "maxY": 206.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00499725341796875}, "domain": "pixel"}, {"position": {"minX": 326.25, "minY": 214.75, "maxX": 343.75, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004932403564453125}, "domain": "pixel"}, {"position": {"minX": 507.0, "minY": 233.75, "maxX": 537.0, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004329681396484375}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 240.75, "maxX": 588.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004161834716796875}, "domain": "pixel"}, {"position": {"minX": 157.25, "minY": 186.0, "maxX": 173.0, "maxY": 206.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004150390625}, "domain": "pixel"}, {"position": {"minX": 232.25, "minY": 192.875, "maxX": 249.5, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004116058349609375}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 185.75, "maxX": 243.5, "maxY": 208.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003993988037109375}, "domain": "pixel"}, {"position": {"minX": 441.5, "minY": 220.25, "maxX": 465.5, "maxY": 258.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038928985595703125}, "domain": "pixel"}, {"position": {"minX": 626.5, "minY": 206.75, "maxX": 643.5, "maxY": 232.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037059783935546875}, "domain": "pixel"}, {"position": {"minX": 387.0, "minY": 225.5, "maxX": 403.5, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035953521728515625}, "domain": "pixel"}, {"position": {"minX": 436.5, "minY": 219.0, "maxX": 470.0, "maxY": 245.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032806396484375}, "domain": "pixel"}, {"position": {"minX": 507.25, "minY": 240.875, "maxX": 527.0, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00315093994140625}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 216.5, "maxX": 468.5, "maxY": 239.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028629302978515625}, "domain": "pixel"}, {"position": {"minX": 622.0, "minY": 195.875, "maxX": 642.0, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028228759765625}, "domain": "pixel"}, {"position": {"minX": 442.25, "minY": 200.5, "maxX": 465.25, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002666473388671875}, "domain": "pixel"}, {"position": {"minX": 557.0, "minY": 219.625, "maxX": 586.0, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002655029296875}, "domain": "pixel"}, {"position": {"minX": 560.5, "minY": 235.375, "maxX": 588.5, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026493072509765625}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 193.25, "maxX": 186.125, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025539398193359375}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 230.0, "maxX": 536.0, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002429962158203125}, "domain": "pixel"}, {"position": {"minX": 436.5, "minY": 228.375, "maxX": 455.5, "maxY": 254.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024280548095703125}, "domain": "pixel"}, {"position": {"minX": 621.5, "minY": 201.0, "maxX": 637.5, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002346038818359375}, "domain": "pixel"}, {"position": {"minX": 321.0, "minY": 199.75, "maxX": 346.5, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002262115478515625}, "domain": "pixel"}, {"position": {"minX": 232.375, "minY": 181.0, "maxX": 253.625, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002216339111328125}, "domain": "pixel"}, {"position": {"minX": 220.625, "minY": 193.75, "maxX": 238.875, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002185821533203125}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 214.5, "maxX": 531.0, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002185821533203125}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 194.375, "maxX": 255.0, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00197601318359375}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 208.25, "maxX": 460.0, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019683837890625}, "domain": "pixel"}, {"position": {"minX": 327.5, "minY": 202.125, "maxX": 358.0, "maxY": 230.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019512176513671875}, "domain": "pixel"}, {"position": {"minX": 285.0, "minY": 205.875, "maxX": 303.0, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018396377563476562}, "domain": "pixel"}, {"position": {"minX": 221.75, "minY": 192.0, "maxX": 244.75, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016736984252929688}, "domain": "pixel"}, {"position": {"minX": 336.0, "minY": 213.5, "maxX": 354.0, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016050338745117188}, "domain": "pixel"}, {"position": {"minX": 254.375, "minY": 25.53125, "maxX": 276.75, "maxY": 62.21875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015745162963867188}, "domain": "pixel"}, {"position": {"minX": 372.0, "minY": 210.875, "maxX": 396.0, "maxY": 247.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015478134155273438}, "domain": "pixel"}, {"position": {"minX": 620.5, "minY": 207.25, "maxX": 637.5, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001491546630859375}, "domain": "pixel"}, {"position": {"minX": 541.0, "minY": 200.125, "maxX": 556.0, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014801025390625}, "domain": "pixel"}, {"position": {"minX": 377.0, "minY": 217.625, "maxX": 407.5, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013561248779296875}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 216.5, "maxX": 539.0, "maxY": 253.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001323699951171875}, "domain": "pixel"}, {"position": {"minX": 502.25, "minY": 217.5, "maxX": 535.5, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013055801391601562}, "domain": "pixel"}, {"position": {"minX": 294.25, "minY": 191.625, "maxX": 313.75, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012416839599609375}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 198.0, "maxX": 179.625, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012369155883789062}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 182.0, "maxX": 188.875, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012102127075195312}, "domain": "pixel"}, {"position": {"minX": 435.25, "minY": 215.75, "maxX": 455.75, "maxY": 240.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00112152099609375}, "domain": "pixel"}, {"position": {"minX": 499.0, "minY": 226.875, "maxX": 526.0, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00110626220703125}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 182.5, "maxX": 354.5, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001102447509765625}, "domain": "pixel"}, {"position": {"minX": 284.0, "minY": 193.125, "maxX": 303.0, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001087188720703125}, "domain": "pixel"}, {"position": {"minX": 626.0, "minY": 199.75, "maxX": 643.0, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010633468627929688}, "domain": "pixel"}, {"position": {"minX": 496.0, "minY": 213.125, "maxX": 524.5, "maxY": 252.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010471343994140625}, "domain": "pixel"}, {"position": {"minX": 563.0, "minY": 248.0, "maxX": 583.0, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010232925415039062}, "domain": "pixel"}, {"position": {"minX": 632.5, "minY": 196.0, "maxX": 653.5, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010080337524414062}, "domain": "pixel"}, {"position": {"minX": 339.0, "minY": 196.375, "maxX": 364.5, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001007080078125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_3c7f8824853dc03699f2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_3c7f8824853dc03699f2.boxes2D.json new file mode 100644 index 0000000..8cc9fbe --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_3c7f8824853dc03699f2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 455.75, "minY": 233.5, "maxX": 471.75, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.291", "scores": {"class_score": 0.291015625}, "domain": "pixel"}, {"position": {"minX": 299.75, "minY": 209.875, "maxX": 313.75, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.277", "scores": {"class_score": 0.276611328125}, "domain": "pixel"}, {"position": {"minX": 583.0, "minY": 248.625, "maxX": 602.0, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.276", "scores": {"class_score": 0.2763671875}, "domain": "pixel"}, {"position": {"minX": 339.75, "minY": 218.625, "maxX": 359.25, "maxY": 241.375}, "class_id": 0, "box_caption": "coureur 0.255", "scores": {"class_score": 0.255126953125}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 216.25, "maxX": 313.5, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.253", "scores": {"class_score": 0.2529296875}, "domain": "pixel"}, {"position": {"minX": 339.5, "minY": 223.375, "maxX": 356.0, "maxY": 243.875}, "class_id": 0, "box_caption": "coureur 0.241", "scores": {"class_score": 0.240966796875}, "domain": "pixel"}, {"position": {"minX": 525.0, "minY": 238.125, "maxX": 549.0, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.237", "scores": {"class_score": 0.23681640625}, "domain": "pixel"}, {"position": {"minX": 396.75, "minY": 224.875, "maxX": 410.25, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.130", "scores": {"class_score": 0.1298828125}, "domain": "pixel"}, {"position": {"minX": 454.5, "minY": 237.5, "maxX": 473.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.122", "scores": {"class_score": 0.1217041015625}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 243.875, "maxX": 543.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.081", "scores": {"class_score": 0.08056640625}, "domain": "pixel"}, {"position": {"minX": 343.25, "minY": 222.625, "maxX": 362.25, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.043853759765625}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 255.625, "maxX": 599.0, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.040", "scores": {"class_score": 0.039764404296875}, "domain": "pixel"}, {"position": {"minX": 345.0, "minY": 215.875, "maxX": 365.0, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.03253173828125}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 255.625, "maxX": 605.0, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.031463623046875}, "domain": "pixel"}, {"position": {"minX": 226.25, "minY": 201.875, "maxX": 243.25, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.026947021484375}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 225.5, "maxX": 413.25, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.02410888671875}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 248.75, "maxX": 609.5, "maxY": 280.25}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0203094482421875}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 215.125, "maxX": 411.0, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0194549560546875}, "domain": "pixel"}, {"position": {"minX": 299.75, "minY": 203.75, "maxX": 317.25, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0192718505859375}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 221.0, "maxX": 474.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017913818359375}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 216.0, "maxX": 314.0, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0158538818359375}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 225.0, "maxX": 352.75, "maxY": 245.75}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01540374755859375}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 230.75, "maxX": 548.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01488494873046875}, "domain": "pixel"}, {"position": {"minX": 163.375, "minY": 200.25, "maxX": 179.875, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0142669677734375}, "domain": "pixel"}, {"position": {"minX": 227.0, "minY": 208.375, "maxX": 242.75, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.014068603515625}, "domain": "pixel"}, {"position": {"minX": 448.5, "minY": 232.25, "maxX": 480.5, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0118408203125}, "domain": "pixel"}, {"position": {"minX": 299.75, "minY": 219.625, "maxX": 315.75, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01050567626953125}, "domain": "pixel"}, {"position": {"minX": 220.75, "minY": 202.0, "maxX": 237.5, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00962066650390625}, "domain": "pixel"}, {"position": {"minX": 300.5, "minY": 201.875, "maxX": 314.5, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00897216796875}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 239.375, "maxX": 603.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00803375244140625}, "domain": "pixel"}, {"position": {"minX": 221.75, "minY": 196.75, "maxX": 242.25, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00794219970703125}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 223.0, "maxX": 411.25, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007099151611328125}, "domain": "pixel"}, {"position": {"minX": 220.25, "minY": 208.0, "maxX": 236.75, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00617218017578125}, "domain": "pixel"}, {"position": {"minX": 337.75, "minY": 225.875, "maxX": 356.75, "maxY": 253.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005367279052734375}, "domain": "pixel"}, {"position": {"minX": 453.5, "minY": 223.5, "maxX": 472.0, "maxY": 253.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005268096923828125}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 246.75, "maxX": 551.0, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0052337646484375}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 237.0, "maxX": 602.5, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005130767822265625}, "domain": "pixel"}, {"position": {"minX": 233.0, "minY": 201.625, "maxX": 252.0, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00501251220703125}, "domain": "pixel"}, {"position": {"minX": 165.5, "minY": 194.125, "maxX": 180.5, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004993438720703125}, "domain": "pixel"}, {"position": {"minX": 234.125, "minY": 196.375, "maxX": 255.375, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004489898681640625}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 200.5, "maxX": 358.75, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004070281982421875}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 199.375, "maxX": 186.375, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00399017333984375}, "domain": "pixel"}, {"position": {"minX": 333.0, "minY": 217.25, "maxX": 355.0, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003726959228515625}, "domain": "pixel"}, {"position": {"minX": 243.375, "minY": 202.0, "maxX": 259.5, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003391265869140625}, "domain": "pixel"}, {"position": {"minX": 619.5, "minY": 216.0, "maxX": 637.5, "maxY": 240.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00334930419921875}, "domain": "pixel"}, {"position": {"minX": 233.875, "minY": 208.25, "maxX": 251.125, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032711029052734375}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 198.5, "maxX": 313.0, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031452178955078125}, "domain": "pixel"}, {"position": {"minX": 155.5, "minY": 201.5, "maxX": 173.75, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030765533447265625}, "domain": "pixel"}, {"position": {"minX": 170.125, "minY": 194.0, "maxX": 185.875, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030517578125}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 235.0, "maxX": 554.0, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00302886962890625}, "domain": "pixel"}, {"position": {"minX": 619.0, "minY": 210.625, "maxX": 641.0, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003017425537109375}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 217.875, "maxX": 359.0, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030002593994140625}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 208.875, "maxX": 312.0, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029449462890625}, "domain": "pixel"}, {"position": {"minX": 340.75, "minY": 199.75, "maxX": 365.25, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002651214599609375}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 217.25, "maxX": 365.0, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026454925537109375}, "domain": "pixel"}, {"position": {"minX": 158.0, "minY": 195.25, "maxX": 178.25, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002620697021484375}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 217.75, "maxX": 419.5, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002414703369140625}, "domain": "pixel"}, {"position": {"minX": 451.0, "minY": 240.0, "maxX": 471.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002315521240234375}, "domain": "pixel"}, {"position": {"minX": 522.5, "minY": 247.875, "maxX": 552.5, "maxY": 280.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023097991943359375}, "domain": "pixel"}, {"position": {"minX": 387.75, "minY": 205.25, "maxX": 404.75, "maxY": 234.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002193450927734375}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 232.625, "maxX": 542.0, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020961761474609375}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 214.625, "maxX": 321.75, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020751953125}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 210.625, "maxX": 314.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002010345458984375}, "domain": "pixel"}, {"position": {"minX": 524.0, "minY": 229.0, "maxX": 543.0, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001987457275390625}, "domain": "pixel"}, {"position": {"minX": 131.75, "minY": 192.5, "maxX": 146.75, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00188446044921875}, "domain": "pixel"}, {"position": {"minX": 157.375, "minY": 182.125, "maxX": 178.375, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018377304077148438}, "domain": "pixel"}, {"position": {"minX": 250.0, "minY": 201.625, "maxX": 267.5, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001819610595703125}, "domain": "pixel"}, {"position": {"minX": 618.5, "minY": 222.75, "maxX": 635.5, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018129348754882812}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 200.0, "maxX": 414.5, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001800537109375}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 200.125, "maxX": 404.0, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017642974853515625}, "domain": "pixel"}, {"position": {"minX": 387.0, "minY": 214.375, "maxX": 407.0, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015802383422851562}, "domain": "pixel"}, {"position": {"minX": 206.75, "minY": 195.75, "maxX": 227.75, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015659332275390625}, "domain": "pixel"}, {"position": {"minX": 242.875, "minY": 207.375, "maxX": 259.25, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015153884887695312}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 240.625, "maxX": 543.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014905929565429688}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 194.5, "maxX": 190.875, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014142990112304688}, "domain": "pixel"}, {"position": {"minX": 251.0, "minY": 196.75, "maxX": 269.5, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012769699096679688}, "domain": "pixel"}, {"position": {"minX": 387.0, "minY": 224.25, "maxX": 413.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012578964233398438}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 228.875, "maxX": 410.0, "maxY": 255.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 228.125, "maxX": 351.25, "maxY": 254.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012083053588867188}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 237.625, "maxX": 598.0, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001194000244140625}, "domain": "pixel"}, {"position": {"minX": 612.0, "minY": 224.0, "maxX": 629.0, "maxY": 245.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001171112060546875}, "domain": "pixel"}, {"position": {"minX": 125.5, "minY": 181.5, "maxX": 145.5, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00113677978515625}, "domain": "pixel"}, {"position": {"minX": 574.5, "minY": 247.375, "maxX": 605.5, "maxY": 292.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011148452758789062}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 231.75, "maxX": 558.5, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011081695556640625}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 196.875, "maxX": 405.5, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010890960693359375}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 222.5, "maxX": 418.25, "maxY": 250.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00102996826171875}, "domain": "pixel"}, {"position": {"minX": 633.0, "minY": 212.375, "maxX": 657.0, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010242462158203125}, "domain": "pixel"}, {"position": {"minX": 458.5, "minY": 223.375, "maxX": 476.0, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010166168212890625}, "domain": "pixel"}, {"position": {"minX": 345.5, "minY": 206.75, "maxX": 363.5, "maxY": 235.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001003265380859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_4dab3974576cfadeb6dc.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_4dab3974576cfadeb6dc.boxes2D.json new file mode 100644 index 0000000..d934500 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_4dab3974576cfadeb6dc.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 290.0, "minY": 210.375, "maxX": 305.0, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.334", "scores": {"class_score": 0.333984375}, "domain": "pixel"}, {"position": {"minX": 446.75, "minY": 232.5, "maxX": 465.75, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.321044921875}, "domain": "pixel"}, {"position": {"minX": 519.0, "minY": 239.0, "maxX": 540.0, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.308", "scores": {"class_score": 0.3076171875}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 217.875, "maxX": 353.25, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.303", "scores": {"class_score": 0.30322265625}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 248.0, "maxX": 595.5, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.284", "scores": {"class_score": 0.284423828125}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 224.75, "maxX": 402.0, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.257", "scores": {"class_score": 0.2568359375}, "domain": "pixel"}, {"position": {"minX": 336.5, "minY": 223.25, "maxX": 353.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.239", "scores": {"class_score": 0.2393798828125}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 217.0, "maxX": 402.25, "maxY": 242.0}, "class_id": 0, "box_caption": "coureur 0.079", "scores": {"class_score": 0.07916259765625}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 228.375, "maxX": 403.25, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.076", "scores": {"class_score": 0.0758056640625}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 246.875, "maxX": 542.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.070", "scores": {"class_score": 0.06976318359375}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 254.75, "maxX": 597.5, "maxY": 280.75}, "class_id": 0, "box_caption": "coureur 0.066", "scores": {"class_score": 0.06591796875}, "domain": "pixel"}, {"position": {"minX": 289.25, "minY": 213.625, "maxX": 305.75, "maxY": 236.625}, "class_id": 0, "box_caption": "coureur 0.056", "scores": {"class_score": 0.0562744140625}, "domain": "pixel"}, {"position": {"minX": 226.75, "minY": 208.625, "maxX": 242.25, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.04388427734375}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 223.5, "maxX": 469.5, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.041", "scores": {"class_score": 0.04132080078125}, "domain": "pixel"}, {"position": {"minX": 287.5, "minY": 203.625, "maxX": 304.5, "maxY": 233.125}, "class_id": 0, "box_caption": "coureur 0.041", "scores": {"class_score": 0.041259765625}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 249.125, "maxX": 601.0, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.037322998046875}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 224.625, "maxX": 351.0, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.033905029296875}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 239.125, "maxX": 462.75, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.033172607421875}, "domain": "pixel"}, {"position": {"minX": 283.25, "minY": 209.0, "maxX": 303.25, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.0233306884765625}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 232.375, "maxX": 545.5, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.020782470703125}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 202.375, "maxX": 307.0, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.02056884765625}, "domain": "pixel"}, {"position": {"minX": 221.5, "minY": 200.125, "maxX": 241.25, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0159454345703125}, "domain": "pixel"}, {"position": {"minX": 219.75, "minY": 207.625, "maxX": 238.25, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0157318115234375}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 247.125, "maxX": 537.0, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01383209228515625}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 239.375, "maxX": 469.0, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01288604736328125}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 201.625, "maxX": 237.875, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01233673095703125}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 204.0, "maxX": 353.75, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01082611083984375}, "domain": "pixel"}, {"position": {"minX": 285.0, "minY": 208.0, "maxX": 304.5, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0103759765625}, "domain": "pixel"}, {"position": {"minX": 226.0, "minY": 200.875, "maxX": 241.75, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0096588134765625}, "domain": "pixel"}, {"position": {"minX": 569.5, "minY": 254.75, "maxX": 593.5, "maxY": 281.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.009368896484375}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 237.25, "maxX": 596.0, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.009124755859375}, "domain": "pixel"}, {"position": {"minX": 570.0, "minY": 245.375, "maxX": 594.0, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00885772705078125}, "domain": "pixel"}, {"position": {"minX": 522.0, "minY": 231.0, "maxX": 539.0, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0082550048828125}, "domain": "pixel"}, {"position": {"minX": 284.25, "minY": 217.75, "maxX": 301.75, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005931854248046875}, "domain": "pixel"}, {"position": {"minX": 148.25, "minY": 198.625, "maxX": 165.25, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005847930908203125}, "domain": "pixel"}, {"position": {"minX": 153.875, "minY": 200.5, "maxX": 170.875, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005588531494140625}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 216.375, "maxX": 409.5, "maxY": 250.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005367279052734375}, "domain": "pixel"}, {"position": {"minX": 147.125, "minY": 192.25, "maxX": 163.875, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005069732666015625}, "domain": "pixel"}, {"position": {"minX": 378.5, "minY": 223.5, "maxX": 401.0, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004985809326171875}, "domain": "pixel"}, {"position": {"minX": 329.0, "minY": 218.0, "maxX": 359.0, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00473785400390625}, "domain": "pixel"}, {"position": {"minX": 293.5, "minY": 208.25, "maxX": 313.5, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00470733642578125}, "domain": "pixel"}, {"position": {"minX": 449.25, "minY": 230.125, "maxX": 472.75, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00466156005859375}, "domain": "pixel"}, {"position": {"minX": 438.0, "minY": 227.625, "maxX": 463.5, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004058837890625}, "domain": "pixel"}, {"position": {"minX": 337.25, "minY": 226.125, "maxX": 356.25, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00384521484375}, "domain": "pixel"}, {"position": {"minX": 380.5, "minY": 201.125, "maxX": 403.0, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00354766845703125}, "domain": "pixel"}, {"position": {"minX": 520.0, "minY": 217.375, "maxX": 546.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003314971923828125}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 220.875, "maxX": 468.75, "maxY": 250.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003116607666015625}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 246.75, "maxX": 546.5, "maxY": 281.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028858184814453125}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 231.875, "maxX": 469.25, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028820037841796875}, "domain": "pixel"}, {"position": {"minX": 571.0, "minY": 244.75, "maxX": 602.0, "maxY": 295.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00286865234375}, "domain": "pixel"}, {"position": {"minX": 564.5, "minY": 226.75, "maxX": 604.5, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025844573974609375}, "domain": "pixel"}, {"position": {"minX": 437.75, "minY": 212.5, "maxX": 473.75, "maxY": 252.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025386810302734375}, "domain": "pixel"}, {"position": {"minX": 575.0, "minY": 234.0, "maxX": 609.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002513885498046875}, "domain": "pixel"}, {"position": {"minX": 232.0, "minY": 197.75, "maxX": 253.0, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024700164794921875}, "domain": "pixel"}, {"position": {"minX": 226.5, "minY": 193.25, "maxX": 242.25, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023708343505859375}, "domain": "pixel"}, {"position": {"minX": 448.75, "minY": 215.125, "maxX": 477.75, "maxY": 256.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023651123046875}, "domain": "pixel"}, {"position": {"minX": 332.0, "minY": 218.0, "maxX": 356.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002292633056640625}, "domain": "pixel"}, {"position": {"minX": 322.0, "minY": 211.125, "maxX": 348.5, "maxY": 249.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002193450927734375}, "domain": "pixel"}, {"position": {"minX": 220.375, "minY": 208.5, "maxX": 242.375, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00211334228515625}, "domain": "pixel"}, {"position": {"minX": 337.0, "minY": 207.25, "maxX": 354.5, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002094268798828125}, "domain": "pixel"}, {"position": {"minX": 338.25, "minY": 212.625, "maxX": 362.25, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002079010009765625}, "domain": "pixel"}, {"position": {"minX": 221.875, "minY": 194.0, "maxX": 237.375, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020313262939453125}, "domain": "pixel"}, {"position": {"minX": 271.5, "minY": 195.75, "maxX": 296.5, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020122528076171875}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 245.0, "maxX": 603.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020084381103515625}, "domain": "pixel"}, {"position": {"minX": 95.0, "minY": 255.5, "maxX": 122.5, "maxY": 308.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019388198852539062}, "domain": "pixel"}, {"position": {"minX": 443.5, "minY": 220.375, "maxX": 463.0, "maxY": 251.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018396377563476562}, "domain": "pixel"}, {"position": {"minX": 632.5, "minY": 14.953125, "maxX": 671.5, "maxY": 73.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017728805541992188}, "domain": "pixel"}, {"position": {"minX": 155.625, "minY": 196.875, "maxX": 175.125, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001556396484375}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 196.75, "maxX": 316.5, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014858245849609375}, "domain": "pixel"}, {"position": {"minX": 228.0, "minY": 214.0, "maxX": 244.0, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013580322265625}, "domain": "pixel"}, {"position": {"minX": 206.625, "minY": 196.125, "maxX": 229.875, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012664794921875}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 241.25, "maxX": 613.5, "maxY": 287.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012559890747070312}, "domain": "pixel"}, {"position": {"minX": 506.75, "minY": 213.5, "maxX": 539.5, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011472702026367188}, "domain": "pixel"}, {"position": {"minX": 378.5, "minY": 231.375, "maxX": 400.0, "maxY": 256.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011072158813476562}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 231.875, "maxX": 406.0, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010967254638671875}, "domain": "pixel"}, {"position": {"minX": 296.0, "minY": 201.25, "maxX": 315.0, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010862350463867188}, "domain": "pixel"}, {"position": {"minX": 379.75, "minY": 215.125, "maxX": 399.25, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010290145874023438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_529bfe489885fe2c8153.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_529bfe489885fe2c8153.boxes2D.json new file mode 100644 index 0000000..2823cbb --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_529bfe489885fe2c8153.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.75, "minY": 217.75, "maxX": 354.75, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.429", "scores": {"class_score": 0.4287109375}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 248.125, "maxX": 594.5, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.38330078125}, "domain": "pixel"}, {"position": {"minX": 295.5, "minY": 210.875, "maxX": 310.0, "maxY": 228.375}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380615234375}, "domain": "pixel"}, {"position": {"minX": 447.5, "minY": 231.875, "maxX": 465.0, "maxY": 255.375}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.32080078125}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 238.25, "maxX": 541.0, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.226", "scores": {"class_score": 0.225830078125}, "domain": "pixel"}, {"position": {"minX": 519.5, "minY": 239.5, "maxX": 534.5, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.198", "scores": {"class_score": 0.197998046875}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 225.0, "maxX": 403.25, "maxY": 245.25}, "class_id": 0, "box_caption": "coureur 0.193", "scores": {"class_score": 0.192626953125}, "domain": "pixel"}, {"position": {"minX": 339.5, "minY": 221.125, "maxX": 357.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.135", "scores": {"class_score": 0.1353759765625}, "domain": "pixel"}, {"position": {"minX": 297.25, "minY": 209.625, "maxX": 316.25, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.125", "scores": {"class_score": 0.12457275390625}, "domain": "pixel"}, {"position": {"minX": 447.25, "minY": 223.125, "maxX": 466.25, "maxY": 250.625}, "class_id": 0, "box_caption": "coureur 0.072", "scores": {"class_score": 0.07244873046875}, "domain": "pixel"}, {"position": {"minX": 575.0, "minY": 240.875, "maxX": 598.0, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.070", "scores": {"class_score": 0.07037353515625}, "domain": "pixel"}, {"position": {"minX": 291.25, "minY": 204.25, "maxX": 310.25, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.070", "scores": {"class_score": 0.06982421875}, "domain": "pixel"}, {"position": {"minX": 389.5, "minY": 218.5, "maxX": 404.5, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.068", "scores": {"class_score": 0.0682373046875}, "domain": "pixel"}, {"position": {"minX": 340.0, "minY": 209.625, "maxX": 355.0, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.060", "scores": {"class_score": 0.06011962890625}, "domain": "pixel"}, {"position": {"minX": 294.25, "minY": 214.25, "maxX": 309.25, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.045", "scores": {"class_score": 0.04534912109375}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 238.0, "maxX": 596.0, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.03680419921875}, "domain": "pixel"}, {"position": {"minX": 570.0, "minY": 246.875, "maxX": 594.0, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.033935546875}, "domain": "pixel"}, {"position": {"minX": 518.0, "minY": 233.0, "maxX": 537.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.026092529296875}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 236.0, "maxX": 466.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0247955322265625}, "domain": "pixel"}, {"position": {"minX": 341.25, "minY": 216.125, "maxX": 360.75, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.023284912109375}, "domain": "pixel"}, {"position": {"minX": 294.75, "minY": 203.0, "maxX": 310.25, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0211639404296875}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 205.375, "maxX": 355.75, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0180816650390625}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 228.125, "maxX": 404.75, "maxY": 253.875}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0177764892578125}, "domain": "pixel"}, {"position": {"minX": 225.75, "minY": 194.125, "maxX": 241.5, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.01617431640625}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 199.875, "maxX": 242.625, "maxY": 220.875}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01465606689453125}, "domain": "pixel"}, {"position": {"minX": 515.0, "minY": 238.5, "maxX": 536.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01203155517578125}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 231.0, "maxX": 541.5, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01149749755859375}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 216.625, "maxX": 407.75, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.010406494140625}, "domain": "pixel"}, {"position": {"minX": 343.75, "minY": 222.5, "maxX": 361.25, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.009918212890625}, "domain": "pixel"}, {"position": {"minX": 330.5, "minY": 216.125, "maxX": 353.0, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00958251953125}, "domain": "pixel"}, {"position": {"minX": 571.5, "minY": 249.5, "maxX": 601.5, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00933074951171875}, "domain": "pixel"}, {"position": {"minX": 222.625, "minY": 194.5, "maxX": 237.125, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0088653564453125}, "domain": "pixel"}, {"position": {"minX": 443.5, "minY": 240.125, "maxX": 462.5, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00701904296875}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 221.125, "maxX": 405.25, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006732940673828125}, "domain": "pixel"}, {"position": {"minX": 511.5, "minY": 233.375, "maxX": 547.5, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006717681884765625}, "domain": "pixel"}, {"position": {"minX": 171.5, "minY": 201.375, "maxX": 186.25, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00527191162109375}, "domain": "pixel"}, {"position": {"minX": 296.75, "minY": 207.875, "maxX": 315.75, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005252838134765625}, "domain": "pixel"}, {"position": {"minX": 164.875, "minY": 201.375, "maxX": 180.875, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0048980712890625}, "domain": "pixel"}, {"position": {"minX": 574.0, "minY": 232.875, "maxX": 608.0, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004779815673828125}, "domain": "pixel"}, {"position": {"minX": 220.875, "minY": 199.375, "maxX": 237.875, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004596710205078125}, "domain": "pixel"}, {"position": {"minX": 440.0, "minY": 232.375, "maxX": 472.5, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0045318603515625}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 218.0, "maxX": 315.5, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004283905029296875}, "domain": "pixel"}, {"position": {"minX": 448.5, "minY": 214.5, "maxX": 467.5, "maxY": 242.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00400543212890625}, "domain": "pixel"}, {"position": {"minX": 566.0, "minY": 230.625, "maxX": 602.0, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0039215087890625}, "domain": "pixel"}, {"position": {"minX": 221.25, "minY": 195.125, "maxX": 241.0, "maxY": 226.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038394927978515625}, "domain": "pixel"}, {"position": {"minX": 196.0, "minY": 201.625, "maxX": 210.75, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038089752197265625}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 256.0, "maxX": 596.5, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035400390625}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 248.75, "maxX": 533.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034046173095703125}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 201.625, "maxX": 315.25, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033168792724609375}, "domain": "pixel"}, {"position": {"minX": 221.25, "minY": 183.75, "maxX": 240.0, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031585693359375}, "domain": "pixel"}, {"position": {"minX": 381.75, "minY": 203.125, "maxX": 404.25, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00296783447265625}, "domain": "pixel"}, {"position": {"minX": 518.5, "minY": 217.375, "maxX": 544.5, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029582977294921875}, "domain": "pixel"}, {"position": {"minX": 508.75, "minY": 216.75, "maxX": 537.0, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026187896728515625}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 238.5, "maxX": 547.5, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026111602783203125}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 246.25, "maxX": 603.0, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00254058837890625}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 221.5, "maxX": 352.5, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024814605712890625}, "domain": "pixel"}, {"position": {"minX": 187.625, "minY": 197.125, "maxX": 208.875, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00246429443359375}, "domain": "pixel"}, {"position": {"minX": 435.25, "minY": 226.0, "maxX": 462.25, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002361297607421875}, "domain": "pixel"}, {"position": {"minX": 234.125, "minY": 200.875, "maxX": 250.125, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022029876708984375}, "domain": "pixel"}, {"position": {"minX": 571.5, "minY": 237.625, "maxX": 591.5, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021915435791015625}, "domain": "pixel"}, {"position": {"minX": 171.875, "minY": 195.625, "maxX": 194.125, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021610260009765625}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 226.75, "maxX": 412.75, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019702911376953125}, "domain": "pixel"}, {"position": {"minX": 170.875, "minY": 193.375, "maxX": 187.375, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019683837890625}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 212.5, "maxX": 477.0, "maxY": 253.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018167495727539062}, "domain": "pixel"}, {"position": {"minX": 188.625, "minY": 201.0, "maxX": 205.125, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017995834350585938}, "domain": "pixel"}, {"position": {"minX": 196.0, "minY": 207.5, "maxX": 211.0, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00162506103515625}, "domain": "pixel"}, {"position": {"minX": 391.75, "minY": 228.5, "maxX": 410.75, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016183853149414062}, "domain": "pixel"}, {"position": {"minX": 643.0, "minY": 16.828125, "maxX": 664.0, "maxY": 54.1875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015878677368164062}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 193.625, "maxX": 181.125, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001583099365234375}, "domain": "pixel"}, {"position": {"minX": 483.0, "minY": 208.5, "maxX": 498.0, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015811920166015625}, "domain": "pixel"}, {"position": {"minX": 450.75, "minY": 226.625, "maxX": 474.25, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015287399291992188}, "domain": "pixel"}, {"position": {"minX": 281.75, "minY": 200.375, "maxX": 318.25, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015106201171875}, "domain": "pixel"}, {"position": {"minX": 347.0, "minY": 226.125, "maxX": 363.5, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014934539794921875}, "domain": "pixel"}, {"position": {"minX": 570.0, "minY": 255.75, "maxX": 592.0, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00144195556640625}, "domain": "pixel"}, {"position": {"minX": 615.0, "minY": 48.0, "maxX": 641.0, "maxY": 89.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014190673828125}, "domain": "pixel"}, {"position": {"minX": 394.25, "minY": 217.25, "maxX": 412.25, "maxY": 238.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00140380859375}, "domain": "pixel"}, {"position": {"minX": 319.5, "minY": 14.828125, "maxX": 361.0, "maxY": 73.1875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013942718505859375}, "domain": "pixel"}, {"position": {"minX": 339.25, "minY": 199.75, "maxX": 364.25, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013275146484375}, "domain": "pixel"}, {"position": {"minX": 341.5, "minY": 207.375, "maxX": 362.0, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013208389282226562}, "domain": "pixel"}, {"position": {"minX": 381.25, "minY": 224.0, "maxX": 402.75, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012912750244140625}, "domain": "pixel"}, {"position": {"minX": 330.75, "minY": 216.875, "maxX": 362.75, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012874603271484375}, "domain": "pixel"}, {"position": {"minX": 431.5, "minY": 210.375, "maxX": 460.5, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001247406005859375}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 197.875, "maxX": 252.75, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012407302856445312}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 29.046875, "maxX": 359.25, "maxY": 72.5625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001148223876953125}, "domain": "pixel"}, {"position": {"minX": 571.0, "minY": 215.25, "maxX": 597.0, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011310577392578125}, "domain": "pixel"}, {"position": {"minX": 157.75, "minY": 194.5, "maxX": 180.25, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011196136474609375}, "domain": "pixel"}, {"position": {"minX": 380.75, "minY": 216.375, "maxX": 402.75, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010862350463867188}, "domain": "pixel"}, {"position": {"minX": 476.75, "minY": 208.5, "maxX": 493.25, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010700225830078125}, "domain": "pixel"}, {"position": {"minX": 156.75, "minY": 179.875, "maxX": 179.25, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010204315185546875}, "domain": "pixel"}, {"position": {"minX": 283.75, "minY": 209.0, "maxX": 306.75, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010023117065429688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_67a8617d51dfebee50a2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_67a8617d51dfebee50a2.boxes2D.json new file mode 100644 index 0000000..b834b59 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_67a8617d51dfebee50a2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 457.0, "minY": 233.625, "maxX": 474.0, "maxY": 255.625}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.419921875}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 248.125, "maxX": 605.0, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.34326171875}, "domain": "pixel"}, {"position": {"minX": 347.5, "minY": 217.375, "maxX": 361.5, "maxY": 239.375}, "class_id": 0, "box_caption": "coureur 0.315", "scores": {"class_score": 0.314697265625}, "domain": "pixel"}, {"position": {"minX": 348.75, "minY": 224.0, "maxX": 361.75, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.285", "scores": {"class_score": 0.285400390625}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 210.0, "maxX": 317.0, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.242", "scores": {"class_score": 0.2415771484375}, "domain": "pixel"}, {"position": {"minX": 399.25, "minY": 225.875, "maxX": 412.75, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.227", "scores": {"class_score": 0.22705078125}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 239.25, "maxX": 549.0, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.212", "scores": {"class_score": 0.2120361328125}, "domain": "pixel"}, {"position": {"minX": 303.0, "minY": 215.75, "maxX": 316.5, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.131", "scores": {"class_score": 0.131103515625}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 229.0, "maxX": 413.0, "maxY": 252.75}, "class_id": 0, "box_caption": "coureur 0.078", "scores": {"class_score": 0.078125}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 247.0, "maxX": 551.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.075", "scores": {"class_score": 0.07513427734375}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 230.75, "maxX": 473.25, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.068", "scores": {"class_score": 0.06817626953125}, "domain": "pixel"}, {"position": {"minX": 170.25, "minY": 201.75, "maxX": 185.75, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.062", "scores": {"class_score": 0.06195068359375}, "domain": "pixel"}, {"position": {"minX": 236.0, "minY": 202.0, "maxX": 252.5, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.050", "scores": {"class_score": 0.0498046875}, "domain": "pixel"}, {"position": {"minX": 242.875, "minY": 208.875, "maxX": 258.5, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.043", "scores": {"class_score": 0.043243408203125}, "domain": "pixel"}, {"position": {"minX": 582.5, "minY": 253.5, "maxX": 600.5, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.039", "scores": {"class_score": 0.0394287109375}, "domain": "pixel"}, {"position": {"minX": 165.75, "minY": 201.125, "maxX": 181.5, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.03759765625}, "domain": "pixel"}, {"position": {"minX": 455.75, "minY": 225.25, "maxX": 478.25, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.032", "scores": {"class_score": 0.031768798828125}, "domain": "pixel"}, {"position": {"minX": 454.5, "minY": 237.125, "maxX": 472.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.0308990478515625}, "domain": "pixel"}, {"position": {"minX": 584.5, "minY": 256.0, "maxX": 606.5, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.030426025390625}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 230.875, "maxX": 548.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.02972412109375}, "domain": "pixel"}, {"position": {"minX": 237.375, "minY": 199.375, "maxX": 257.25, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.0243072509765625}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 249.875, "maxX": 613.0, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0208587646484375}, "domain": "pixel"}, {"position": {"minX": 305.5, "minY": 209.0, "maxX": 324.5, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0207061767578125}, "domain": "pixel"}, {"position": {"minX": 395.5, "minY": 217.0, "maxX": 414.0, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.02001953125}, "domain": "pixel"}, {"position": {"minX": 342.25, "minY": 223.125, "maxX": 362.75, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.01837158203125}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 238.0, "maxX": 610.0, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0177459716796875}, "domain": "pixel"}, {"position": {"minX": 235.75, "minY": 207.25, "maxX": 253.5, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.016082763671875}, "domain": "pixel"}, {"position": {"minX": 458.25, "minY": 240.25, "maxX": 476.75, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.015869140625}, "domain": "pixel"}, {"position": {"minX": 348.0, "minY": 209.375, "maxX": 362.0, "maxY": 232.875}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.015533447265625}, "domain": "pixel"}, {"position": {"minX": 459.0, "minY": 222.125, "maxX": 476.0, "maxY": 249.875}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.0154876708984375}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 246.125, "maxX": 601.5, "maxY": 273.75}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.014739990234375}, "domain": "pixel"}, {"position": {"minX": 241.25, "minY": 201.75, "maxX": 257.75, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0144805908203125}, "domain": "pixel"}, {"position": {"minX": 347.75, "minY": 227.5, "maxX": 363.75, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01375579833984375}, "domain": "pixel"}, {"position": {"minX": 452.5, "minY": 234.0, "maxX": 481.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01137542724609375}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 234.0, "maxX": 554.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01123046875}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 237.125, "maxX": 604.0, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0099945068359375}, "domain": "pixel"}, {"position": {"minX": 165.125, "minY": 194.375, "maxX": 180.625, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0092620849609375}, "domain": "pixel"}, {"position": {"minX": 588.5, "minY": 246.625, "maxX": 610.5, "maxY": 274.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00824737548828125}, "domain": "pixel"}, {"position": {"minX": 401.25, "minY": 225.375, "maxX": 420.75, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0081634521484375}, "domain": "pixel"}, {"position": {"minX": 347.75, "minY": 203.5, "maxX": 365.75, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.008148193359375}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 220.75, "maxX": 476.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00731658935546875}, "domain": "pixel"}, {"position": {"minX": 519.5, "minY": 230.75, "maxX": 556.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005794525146484375}, "domain": "pixel"}, {"position": {"minX": 306.5, "minY": 218.5, "maxX": 324.0, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005771636962890625}, "domain": "pixel"}, {"position": {"minX": 525.0, "minY": 244.0, "maxX": 547.0, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00547027587890625}, "domain": "pixel"}, {"position": {"minX": 248.75, "minY": 209.0, "maxX": 265.75, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00501251220703125}, "domain": "pixel"}, {"position": {"minX": 169.5, "minY": 195.75, "maxX": 190.25, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00475311279296875}, "domain": "pixel"}, {"position": {"minX": 348.0, "minY": 221.0, "maxX": 367.5, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004718780517578125}, "domain": "pixel"}, {"position": {"minX": 300.0, "minY": 200.75, "maxX": 316.0, "maxY": 225.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00441741943359375}, "domain": "pixel"}, {"position": {"minX": 339.25, "minY": 215.625, "maxX": 360.25, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00434112548828125}, "domain": "pixel"}, {"position": {"minX": 534.5, "minY": 242.75, "maxX": 553.5, "maxY": 274.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004169464111328125}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 206.0, "maxX": 186.75, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00415802001953125}, "domain": "pixel"}, {"position": {"minX": 525.0, "minY": 216.375, "maxX": 549.0, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004154205322265625}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 215.875, "maxX": 419.0, "maxY": 242.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038967132568359375}, "domain": "pixel"}, {"position": {"minX": 169.0, "minY": 193.75, "maxX": 186.0, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003818511962890625}, "domain": "pixel"}, {"position": {"minX": 159.375, "minY": 194.625, "maxX": 181.375, "maxY": 228.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00368499755859375}, "domain": "pixel"}, {"position": {"minX": 460.5, "minY": 231.25, "maxX": 482.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003536224365234375}, "domain": "pixel"}, {"position": {"minX": 343.75, "minY": 218.0, "maxX": 371.25, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035190582275390625}, "domain": "pixel"}, {"position": {"minX": 537.5, "minY": 249.0, "maxX": 556.5, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00336456298828125}, "domain": "pixel"}, {"position": {"minX": 248.0, "minY": 198.75, "maxX": 268.5, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030460357666015625}, "domain": "pixel"}, {"position": {"minX": 229.125, "minY": 201.875, "maxX": 246.875, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00293731689453125}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 212.75, "maxX": 412.75, "maxY": 252.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028438568115234375}, "domain": "pixel"}, {"position": {"minX": 224.375, "minY": 196.75, "maxX": 246.125, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002796173095703125}, "domain": "pixel"}, {"position": {"minX": 348.25, "minY": 215.0, "maxX": 370.25, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026416778564453125}, "domain": "pixel"}, {"position": {"minX": 236.75, "minY": 193.375, "maxX": 252.5, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026264190673828125}, "domain": "pixel"}, {"position": {"minX": 574.5, "minY": 232.125, "maxX": 603.5, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025234222412109375}, "domain": "pixel"}, {"position": {"minX": 392.25, "minY": 32.0, "maxX": 416.75, "maxY": 73.3125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024471282958984375}, "domain": "pixel"}, {"position": {"minX": 157.25, "minY": 181.25, "maxX": 180.25, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023708343505859375}, "domain": "pixel"}, {"position": {"minX": 500.75, "minY": 209.5, "maxX": 516.0, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00214385986328125}, "domain": "pixel"}, {"position": {"minX": 287.75, "minY": 197.25, "maxX": 313.25, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021076202392578125}, "domain": "pixel"}, {"position": {"minX": 177.0, "minY": 200.5, "maxX": 194.25, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002094268798828125}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 217.625, "maxX": 421.25, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002044677734375}, "domain": "pixel"}, {"position": {"minX": 164.25, "minY": 205.5, "maxX": 181.25, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019350051879882812}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 208.0, "maxX": 314.5, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018644332885742188}, "domain": "pixel"}, {"position": {"minX": 389.25, "minY": 224.0, "maxX": 411.25, "maxY": 248.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018415451049804688}, "domain": "pixel"}, {"position": {"minX": 169.0, "minY": 182.875, "maxX": 190.0, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018167495727539062}, "domain": "pixel"}, {"position": {"minX": 123.875, "minY": 193.75, "maxX": 140.125, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017499923706054688}, "domain": "pixel"}, {"position": {"minX": 300.5, "minY": 219.0, "maxX": 317.5, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016698837280273438}, "domain": "pixel"}, {"position": {"minX": 590.0, "minY": 252.25, "maxX": 612.0, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016565322875976562}, "domain": "pixel"}, {"position": {"minX": 523.0, "minY": 238.0, "maxX": 545.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014963150024414062}, "domain": "pixel"}, {"position": {"minX": 131.625, "minY": 193.625, "maxX": 146.875, "maxY": 213.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014410018920898438}, "domain": "pixel"}, {"position": {"minX": 395.5, "minY": 198.0, "maxX": 417.5, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014238357543945312}, "domain": "pixel"}, {"position": {"minX": 450.0, "minY": 214.25, "maxX": 485.5, "maxY": 250.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001415252685546875}, "domain": "pixel"}, {"position": {"minX": 402.75, "minY": 233.625, "maxX": 419.75, "maxY": 254.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001308441162109375}, "domain": "pixel"}, {"position": {"minX": 243.625, "minY": 212.75, "maxX": 260.25, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012950897216796875}, "domain": "pixel"}, {"position": {"minX": 290.75, "minY": 210.0, "maxX": 315.25, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011768341064453125}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 247.5, "maxX": 556.5, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011701583862304688}, "domain": "pixel"}, {"position": {"minX": 532.5, "minY": 229.0, "maxX": 556.5, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011625289916992188}, "domain": "pixel"}, {"position": {"minX": 235.375, "minY": 207.125, "maxX": 261.0, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011167526245117188}, "domain": "pixel"}, {"position": {"minX": 451.75, "minY": 222.0, "maxX": 471.25, "maxY": 250.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010957717895507812}, "domain": "pixel"}, {"position": {"minX": 115.0625, "minY": 193.375, "maxX": 132.125, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010709762573242188}, "domain": "pixel"}, {"position": {"minX": 124.5625, "minY": 178.875, "maxX": 144.375, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010318756103515625}, "domain": "pixel"}, {"position": {"minX": 131.75, "minY": 198.875, "maxX": 147.5, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001003265380859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_757818faefbdbd8f69a7.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_757818faefbdbd8f69a7.boxes2D.json new file mode 100644 index 0000000..ad896e7 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_757818faefbdbd8f69a7.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 459.25, "minY": 233.125, "maxX": 477.25, "maxY": 256.25}, "class_id": 0, "box_caption": "coureur 0.425", "scores": {"class_score": 0.4248046875}, "domain": "pixel"}, {"position": {"minX": 346.0, "minY": 218.375, "maxX": 362.0, "maxY": 239.125}, "class_id": 0, "box_caption": "coureur 0.416", "scores": {"class_score": 0.416259765625}, "domain": "pixel"}, {"position": {"minX": 533.5, "minY": 246.5, "maxX": 550.5, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.3212890625}, "domain": "pixel"}, {"position": {"minX": 399.25, "minY": 225.75, "maxX": 413.25, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.245", "scores": {"class_score": 0.244873046875}, "domain": "pixel"}, {"position": {"minX": 343.75, "minY": 222.75, "maxX": 361.75, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.240", "scores": {"class_score": 0.240234375}, "domain": "pixel"}, {"position": {"minX": 588.5, "minY": 253.125, "maxX": 605.5, "maxY": 277.25}, "class_id": 0, "box_caption": "coureur 0.221", "scores": {"class_score": 0.2205810546875}, "domain": "pixel"}, {"position": {"minX": 302.5, "minY": 210.5, "maxX": 318.5, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.141", "scores": {"class_score": 0.141357421875}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 237.625, "maxX": 549.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.114", "scores": {"class_score": 0.11358642578125}, "domain": "pixel"}, {"position": {"minX": 459.0, "minY": 239.625, "maxX": 477.5, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.101", "scores": {"class_score": 0.10125732421875}, "domain": "pixel"}, {"position": {"minX": 235.25, "minY": 201.25, "maxX": 250.5, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.084", "scores": {"class_score": 0.0841064453125}, "domain": "pixel"}, {"position": {"minX": 339.75, "minY": 225.0, "maxX": 358.25, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.064", "scores": {"class_score": 0.06390380859375}, "domain": "pixel"}, {"position": {"minX": 235.625, "minY": 208.375, "maxX": 251.375, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.058", "scores": {"class_score": 0.0584716796875}, "domain": "pixel"}, {"position": {"minX": 458.0, "minY": 225.375, "maxX": 480.0, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.047", "scores": {"class_score": 0.0469970703125}, "domain": "pixel"}, {"position": {"minX": 306.25, "minY": 215.875, "maxX": 320.75, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.043548583984375}, "domain": "pixel"}, {"position": {"minX": 455.25, "minY": 234.125, "maxX": 482.75, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.038482666015625}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 217.875, "maxX": 414.75, "maxY": 242.125}, "class_id": 0, "box_caption": "coureur 0.035", "scores": {"class_score": 0.03497314453125}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 228.375, "maxX": 413.25, "maxY": 252.875}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.033050537109375}, "domain": "pixel"}, {"position": {"minX": 306.0, "minY": 209.5, "maxX": 323.5, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.03277587890625}, "domain": "pixel"}, {"position": {"minX": 339.0, "minY": 215.0, "maxX": 361.0, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0216217041015625}, "domain": "pixel"}, {"position": {"minX": 303.25, "minY": 204.5, "maxX": 320.75, "maxY": 235.25}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0210723876953125}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 250.0, "maxX": 612.0, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.019439697265625}, "domain": "pixel"}, {"position": {"minX": 235.875, "minY": 198.375, "maxX": 254.125, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.019012451171875}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 235.75, "maxX": 555.0, "maxY": 273.75}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017578125}, "domain": "pixel"}, {"position": {"minX": 401.25, "minY": 225.75, "maxX": 420.25, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0175323486328125}, "domain": "pixel"}, {"position": {"minX": 348.5, "minY": 209.625, "maxX": 363.0, "maxY": 233.875}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.016204833984375}, "domain": "pixel"}, {"position": {"minX": 459.75, "minY": 221.375, "maxX": 476.25, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01505279541015625}, "domain": "pixel"}, {"position": {"minX": 164.75, "minY": 201.75, "maxX": 180.25, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01438140869140625}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 222.625, "maxX": 416.5, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01412200927734375}, "domain": "pixel"}, {"position": {"minX": 108.5, "minY": 185.875, "maxX": 123.125, "maxY": 207.625}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0131378173828125}, "domain": "pixel"}, {"position": {"minX": 108.3125, "minY": 191.5, "maxX": 123.1875, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.012237548828125}, "domain": "pixel"}, {"position": {"minX": 169.875, "minY": 201.875, "maxX": 187.125, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0117645263671875}, "domain": "pixel"}, {"position": {"minX": 536.5, "minY": 248.0, "maxX": 556.5, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01035308837890625}, "domain": "pixel"}, {"position": {"minX": 188.25, "minY": 201.125, "maxX": 203.75, "maxY": 220.875}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01021575927734375}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 205.375, "maxX": 365.25, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00960540771484375}, "domain": "pixel"}, {"position": {"minX": 348.75, "minY": 216.0, "maxX": 369.75, "maxY": 240.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00951385498046875}, "domain": "pixel"}, {"position": {"minX": 453.5, "minY": 236.75, "maxX": 474.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00870513916015625}, "domain": "pixel"}, {"position": {"minX": 229.375, "minY": 201.25, "maxX": 247.875, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00806427001953125}, "domain": "pixel"}, {"position": {"minX": 530.5, "minY": 249.375, "maxX": 550.5, "maxY": 278.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00756072998046875}, "domain": "pixel"}, {"position": {"minX": 521.0, "minY": 229.0, "maxX": 557.0, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007061004638671875}, "domain": "pixel"}, {"position": {"minX": 450.0, "minY": 230.625, "maxX": 474.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006870269775390625}, "domain": "pixel"}, {"position": {"minX": 300.0, "minY": 218.25, "maxX": 318.0, "maxY": 237.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00555419921875}, "domain": "pixel"}, {"position": {"minX": 240.75, "minY": 208.375, "maxX": 257.5, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0050506591796875}, "domain": "pixel"}, {"position": {"minX": 464.0, "minY": 231.5, "maxX": 485.5, "maxY": 256.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004627227783203125}, "domain": "pixel"}, {"position": {"minX": 229.0, "minY": 207.5, "maxX": 247.0, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004444122314453125}, "domain": "pixel"}, {"position": {"minX": 447.5, "minY": 217.0, "maxX": 477.0, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003910064697265625}, "domain": "pixel"}, {"position": {"minX": 525.0, "minY": 246.25, "maxX": 548.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003887176513671875}, "domain": "pixel"}, {"position": {"minX": 110.25, "minY": 182.875, "maxX": 126.75, "maxY": 213.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003650665283203125}, "domain": "pixel"}, {"position": {"minX": 339.25, "minY": 218.0, "maxX": 370.75, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003612518310546875}, "domain": "pixel"}, {"position": {"minX": 403.0, "minY": 216.75, "maxX": 419.5, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003448486328125}, "domain": "pixel"}, {"position": {"minX": 178.625, "minY": 201.625, "maxX": 196.625, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033245086669921875}, "domain": "pixel"}, {"position": {"minX": 171.375, "minY": 194.25, "maxX": 194.875, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033054351806640625}, "domain": "pixel"}, {"position": {"minX": 187.5, "minY": 193.625, "maxX": 203.5, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003063201904296875}, "domain": "pixel"}, {"position": {"minX": 235.625, "minY": 212.5, "maxX": 252.625, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030612945556640625}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 253.5, "maxX": 603.5, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003032684326171875}, "domain": "pixel"}, {"position": {"minX": 236.375, "minY": 193.5, "maxX": 250.125, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028839111328125}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 213.0, "maxX": 412.25, "maxY": 251.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027904510498046875}, "domain": "pixel"}, {"position": {"minX": 587.0, "minY": 238.75, "maxX": 607.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002788543701171875}, "domain": "pixel"}, {"position": {"minX": 194.625, "minY": 200.875, "maxX": 210.375, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027484893798828125}, "domain": "pixel"}, {"position": {"minX": 224.875, "minY": 197.125, "maxX": 246.625, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002674102783203125}, "domain": "pixel"}, {"position": {"minX": 158.75, "minY": 194.625, "maxX": 180.5, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025997161865234375}, "domain": "pixel"}, {"position": {"minX": 186.5, "minY": 195.625, "maxX": 206.75, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025844573974609375}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 201.5, "maxX": 317.25, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024967193603515625}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 199.5, "maxX": 361.25, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002246856689453125}, "domain": "pixel"}, {"position": {"minX": 392.25, "minY": 217.75, "maxX": 422.25, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00215911865234375}, "domain": "pixel"}, {"position": {"minX": 112.9375, "minY": 192.25, "maxX": 130.0, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002124786376953125}, "domain": "pixel"}, {"position": {"minX": 336.0, "minY": 221.625, "maxX": 360.0, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021190643310546875}, "domain": "pixel"}, {"position": {"minX": 164.75, "minY": 206.875, "maxX": 180.0, "maxY": 229.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020046234130859375}, "domain": "pixel"}, {"position": {"minX": 344.0, "minY": 225.75, "maxX": 363.5, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019273757934570312}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 199.0, "maxX": 417.75, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018548965454101562}, "domain": "pixel"}, {"position": {"minX": 536.5, "minY": 238.125, "maxX": 557.5, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017948150634765625}, "domain": "pixel"}, {"position": {"minX": 451.25, "minY": 214.125, "maxX": 486.25, "maxY": 250.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017843246459960938}, "domain": "pixel"}, {"position": {"minX": 585.5, "minY": 255.625, "maxX": 606.5, "maxY": 288.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017414093017578125}, "domain": "pixel"}, {"position": {"minX": 592.5, "minY": 256.75, "maxX": 613.5, "maxY": 279.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017251968383789062}, "domain": "pixel"}, {"position": {"minX": 239.25, "minY": 200.375, "maxX": 258.25, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017223358154296875}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 247.5, "maxX": 613.0, "maxY": 294.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015954971313476562}, "domain": "pixel"}, {"position": {"minX": 592.5, "minY": 248.125, "maxX": 613.5, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015420913696289062}, "domain": "pixel"}, {"position": {"minX": 237.25, "minY": 183.5, "maxX": 256.0, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014734268188476562}, "domain": "pixel"}, {"position": {"minX": 525.5, "minY": 218.125, "maxX": 548.5, "maxY": 256.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014448165893554688}, "domain": "pixel"}, {"position": {"minX": 465.75, "minY": 241.0, "maxX": 484.25, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014257431030273438}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 223.875, "maxX": 411.0, "maxY": 248.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014123916625976562}, "domain": "pixel"}, {"position": {"minX": 339.75, "minY": 233.25, "maxX": 357.25, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013704299926757812}, "domain": "pixel"}, {"position": {"minX": 307.75, "minY": 196.625, "maxX": 338.25, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013551712036132812}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 207.125, "maxX": 258.0, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013294219970703125}, "domain": "pixel"}, {"position": {"minX": 402.5, "minY": 213.75, "maxX": 426.5, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013132095336914062}, "domain": "pixel"}, {"position": {"minX": 287.75, "minY": 195.875, "maxX": 311.75, "maxY": 233.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012788772583007812}, "domain": "pixel"}, {"position": {"minX": 170.5, "minY": 206.5, "maxX": 187.0, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001251220703125}, "domain": "pixel"}, {"position": {"minX": 170.0, "minY": 180.25, "maxX": 195.0, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 156.375, "minY": 180.875, "maxX": 179.125, "maxY": 219.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012102127075195312}, "domain": "pixel"}, {"position": {"minX": 156.125, "minY": 200.25, "maxX": 174.375, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011816024780273438}, "domain": "pixel"}, {"position": {"minX": 533.0, "minY": 230.625, "maxX": 547.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001178741455078125}, "domain": "pixel"}, {"position": {"minX": 186.25, "minY": 181.625, "maxX": 206.0, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011272430419921875}, "domain": "pixel"}, {"position": {"minX": 452.5, "minY": 222.875, "maxX": 476.0, "maxY": 253.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010328292846679688}, "domain": "pixel"}, {"position": {"minX": 555.0, "minY": 214.875, "maxX": 573.0, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010223388671875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_925fb64e31c6ba5270a9.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_925fb64e31c6ba5270a9.boxes2D.json new file mode 100644 index 0000000..dc07672 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_925fb64e31c6ba5270a9.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 456.0, "minY": 233.5, "maxX": 475.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.379", "scores": {"class_score": 0.378662109375}, "domain": "pixel"}, {"position": {"minX": 587.5, "minY": 253.375, "maxX": 605.5, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.333", "scores": {"class_score": 0.33251953125}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 245.75, "maxX": 549.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.312", "scores": {"class_score": 0.311767578125}, "domain": "pixel"}, {"position": {"minX": 303.25, "minY": 211.0, "maxX": 318.25, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.284", "scores": {"class_score": 0.28369140625}, "domain": "pixel"}, {"position": {"minX": 344.25, "minY": 224.75, "maxX": 358.25, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.224", "scores": {"class_score": 0.22412109375}, "domain": "pixel"}, {"position": {"minX": 344.0, "minY": 218.125, "maxX": 361.5, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.223", "scores": {"class_score": 0.22314453125}, "domain": "pixel"}, {"position": {"minX": 531.0, "minY": 237.625, "maxX": 550.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.179", "scores": {"class_score": 0.1785888671875}, "domain": "pixel"}, {"position": {"minX": 398.25, "minY": 225.0, "maxX": 412.75, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.136", "scores": {"class_score": 0.1356201171875}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 202.875, "maxX": 245.25, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.103", "scores": {"class_score": 0.10284423828125}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 214.625, "maxX": 318.0, "maxY": 236.125}, "class_id": 0, "box_caption": "coureur 0.103", "scores": {"class_score": 0.1026611328125}, "domain": "pixel"}, {"position": {"minX": 229.625, "minY": 208.25, "maxX": 244.875, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.066", "scores": {"class_score": 0.06634521484375}, "domain": "pixel"}, {"position": {"minX": 340.75, "minY": 218.125, "maxX": 359.75, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.063", "scores": {"class_score": 0.0634765625}, "domain": "pixel"}, {"position": {"minX": 395.25, "minY": 228.375, "maxX": 413.25, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.059", "scores": {"class_score": 0.05926513671875}, "domain": "pixel"}, {"position": {"minX": 457.75, "minY": 239.875, "maxX": 477.25, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.059", "scores": {"class_score": 0.059173583984375}, "domain": "pixel"}, {"position": {"minX": 345.5, "minY": 225.875, "maxX": 364.5, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.051", "scores": {"class_score": 0.05078125}, "domain": "pixel"}, {"position": {"minX": 305.25, "minY": 208.75, "maxX": 324.25, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.045989990234375}, "domain": "pixel"}, {"position": {"minX": 233.25, "minY": 208.5, "maxX": 249.0, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.043548583984375}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 233.625, "maxX": 481.25, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.031463623046875}, "domain": "pixel"}, {"position": {"minX": 302.75, "minY": 204.125, "maxX": 319.75, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0300140380859375}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 249.5, "maxX": 611.5, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.02490234375}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 246.125, "maxX": 604.0, "maxY": 281.5}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0206298828125}, "domain": "pixel"}, {"position": {"minX": 306.5, "minY": 217.375, "maxX": 323.5, "maxY": 238.375}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.019561767578125}, "domain": "pixel"}, {"position": {"minX": 224.625, "minY": 197.875, "maxX": 245.125, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0167236328125}, "domain": "pixel"}, {"position": {"minX": 232.75, "minY": 198.5, "maxX": 251.5, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01255035400390625}, "domain": "pixel"}, {"position": {"minX": 450.75, "minY": 239.75, "maxX": 472.25, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.011932373046875}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 216.75, "maxX": 414.25, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.011077880859375}, "domain": "pixel"}, {"position": {"minX": 341.0, "minY": 227.875, "maxX": 358.0, "maxY": 253.625}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.010772705078125}, "domain": "pixel"}, {"position": {"minX": 445.75, "minY": 217.875, "maxX": 477.25, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00946044921875}, "domain": "pixel"}, {"position": {"minX": 523.0, "minY": 230.625, "maxX": 553.0, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.009429931640625}, "domain": "pixel"}, {"position": {"minX": 456.75, "minY": 222.75, "maxX": 476.25, "maxY": 255.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00891876220703125}, "domain": "pixel"}, {"position": {"minX": 148.375, "minY": 193.25, "maxX": 162.625, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007236480712890625}, "domain": "pixel"}, {"position": {"minX": 147.75, "minY": 199.375, "maxX": 164.0, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0068817138671875}, "domain": "pixel"}, {"position": {"minX": 585.5, "minY": 256.0, "maxX": 606.5, "maxY": 287.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0061187744140625}, "domain": "pixel"}, {"position": {"minX": 343.5, "minY": 201.375, "maxX": 368.5, "maxY": 242.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005115509033203125}, "domain": "pixel"}, {"position": {"minX": 171.625, "minY": 201.75, "maxX": 186.875, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00475311279296875}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 201.625, "maxX": 318.0, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00463104248046875}, "domain": "pixel"}, {"position": {"minX": 522.0, "minY": 247.25, "maxX": 545.0, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004302978515625}, "domain": "pixel"}, {"position": {"minX": 366.0, "minY": 201.375, "maxX": 380.5, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0041656494140625}, "domain": "pixel"}, {"position": {"minX": 587.0, "minY": 238.25, "maxX": 605.0, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004108428955078125}, "domain": "pixel"}, {"position": {"minX": 344.25, "minY": 226.625, "maxX": 362.75, "maxY": 254.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004001617431640625}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 248.75, "maxX": 553.5, "maxY": 279.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00383758544921875}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 201.75, "maxX": 180.875, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034465789794921875}, "domain": "pixel"}, {"position": {"minX": 401.5, "minY": 225.5, "maxX": 420.5, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032787322998046875}, "domain": "pixel"}, {"position": {"minX": 399.25, "minY": 228.0, "maxX": 418.75, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00327301025390625}, "domain": "pixel"}, {"position": {"minX": 533.0, "minY": 230.875, "maxX": 548.0, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032672882080078125}, "domain": "pixel"}, {"position": {"minX": 336.0, "minY": 221.25, "maxX": 360.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00325775146484375}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 215.125, "maxX": 411.0, "maxY": 252.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030574798583984375}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 255.375, "maxX": 601.5, "maxY": 280.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028076171875}, "domain": "pixel"}, {"position": {"minX": 153.875, "minY": 200.25, "maxX": 171.875, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024261474609375}, "domain": "pixel"}, {"position": {"minX": 109.0625, "minY": 191.625, "maxX": 124.3125, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023975372314453125}, "domain": "pixel"}, {"position": {"minX": 460.0, "minY": 230.5, "maxX": 483.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002353668212890625}, "domain": "pixel"}, {"position": {"minX": 392.25, "minY": 232.625, "maxX": 414.25, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002353668212890625}, "domain": "pixel"}, {"position": {"minX": 593.0, "minY": 256.5, "maxX": 613.0, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023193359375}, "domain": "pixel"}, {"position": {"minX": 142.75, "minY": 182.5, "maxX": 162.5, "maxY": 215.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023136138916015625}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 227.25, "maxX": 411.0, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022373199462890625}, "domain": "pixel"}, {"position": {"minX": 338.25, "minY": 217.75, "maxX": 371.25, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002140045166015625}, "domain": "pixel"}, {"position": {"minX": 196.125, "minY": 193.875, "maxX": 210.625, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020160675048828125}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 217.625, "maxX": 421.25, "maxY": 246.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002002716064453125}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 246.0, "maxX": 601.0, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018682479858398438}, "domain": "pixel"}, {"position": {"minX": 331.5, "minY": 198.0, "maxX": 360.0, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001834869384765625}, "domain": "pixel"}, {"position": {"minX": 596.5, "minY": 216.0, "maxX": 613.5, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001811981201171875}, "domain": "pixel"}, {"position": {"minX": 156.25, "minY": 195.5, "maxX": 177.5, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017852783203125}, "domain": "pixel"}, {"position": {"minX": 110.625, "minY": 183.0, "maxX": 128.0, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001758575439453125}, "domain": "pixel"}, {"position": {"minX": 172.5, "minY": 196.5, "maxX": 193.0, "maxY": 229.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017452239990234375}, "domain": "pixel"}, {"position": {"minX": 289.0, "minY": 196.0, "maxX": 313.0, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017223358154296875}, "domain": "pixel"}, {"position": {"minX": 346.5, "minY": 208.0, "maxX": 362.5, "maxY": 234.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016908645629882812}, "domain": "pixel"}, {"position": {"minX": 229.0, "minY": 193.375, "maxX": 244.25, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015583038330078125}, "domain": "pixel"}, {"position": {"minX": 142.375, "minY": 193.625, "maxX": 163.875, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014972686767578125}, "domain": "pixel"}, {"position": {"minX": 234.25, "minY": 212.125, "maxX": 251.25, "maxY": 239.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014276504516601562}, "domain": "pixel"}, {"position": {"minX": 364.75, "minY": 207.0, "maxX": 380.75, "maxY": 230.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014238357543945312}, "domain": "pixel"}, {"position": {"minX": 228.25, "minY": 212.0, "maxX": 245.75, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014171600341796875}, "domain": "pixel"}, {"position": {"minX": 462.0, "minY": 237.125, "maxX": 482.5, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013532638549804688}, "domain": "pixel"}, {"position": {"minX": 530.5, "minY": 255.25, "maxX": 549.5, "maxY": 280.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00125885009765625}, "domain": "pixel"}, {"position": {"minX": 187.5, "minY": 195.75, "maxX": 207.5, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012483596801757812}, "domain": "pixel"}, {"position": {"minX": 233.125, "minY": 182.125, "maxX": 254.125, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012464523315429688}, "domain": "pixel"}, {"position": {"minX": 222.25, "minY": 182.5, "maxX": 244.75, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 525.0, "minY": 219.5, "maxX": 547.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011539459228515625}, "domain": "pixel"}, {"position": {"minX": 446.75, "minY": 211.75, "maxX": 487.25, "maxY": 253.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011444091796875}, "domain": "pixel"}, {"position": {"minX": 369.25, "minY": 200.5, "maxX": 386.25, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011396408081054688}, "domain": "pixel"}, {"position": {"minX": 196.375, "minY": 199.875, "maxX": 211.375, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011234283447265625}, "domain": "pixel"}, {"position": {"minX": 640.0, "minY": 29.828125, "maxX": 664.0, "maxY": 73.8125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011148452758789062}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 201.625, "maxX": 240.375, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011005401611328125}, "domain": "pixel"}, {"position": {"minX": 592.5, "minY": 247.375, "maxX": 613.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010700225830078125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 198.875, "maxX": 417.0, "maxY": 239.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001056671142578125}, "domain": "pixel"}, {"position": {"minX": 342.75, "minY": 220.375, "maxX": 366.25, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010118484497070312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_995eeee36eff087765eb.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_995eeee36eff087765eb.boxes2D.json new file mode 100644 index 0000000..92b8379 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_995eeee36eff087765eb.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 299.25, "minY": 211.0, "maxX": 314.25, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.417724609375}, "domain": "pixel"}, {"position": {"minX": 452.0, "minY": 232.25, "maxX": 471.0, "maxY": 254.0}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.41064453125}, "domain": "pixel"}, {"position": {"minX": 582.0, "minY": 248.375, "maxX": 598.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.38427734375}, "domain": "pixel"}, {"position": {"minX": 343.0, "minY": 217.75, "maxX": 358.0, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.35888671875}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 240.375, "maxX": 542.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.353271484375}, "domain": "pixel"}, {"position": {"minX": 342.75, "minY": 223.0, "maxX": 356.25, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.246", "scores": {"class_score": 0.2457275390625}, "domain": "pixel"}, {"position": {"minX": 396.75, "minY": 225.375, "maxX": 409.25, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.187", "scores": {"class_score": 0.186767578125}, "domain": "pixel"}, {"position": {"minX": 579.5, "minY": 243.875, "maxX": 599.5, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.133", "scores": {"class_score": 0.1331787109375}, "domain": "pixel"}, {"position": {"minX": 525.5, "minY": 244.0, "maxX": 543.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.094", "scores": {"class_score": 0.09356689453125}, "domain": "pixel"}, {"position": {"minX": 339.75, "minY": 215.625, "maxX": 357.75, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.088", "scores": {"class_score": 0.08807373046875}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 224.625, "maxX": 471.5, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.061", "scores": {"class_score": 0.06072998046875}, "domain": "pixel"}, {"position": {"minX": 451.5, "minY": 222.0, "maxX": 470.0, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.056", "scores": {"class_score": 0.055572509765625}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 214.0, "maxX": 315.0, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.04644775390625}, "domain": "pixel"}, {"position": {"minX": 456.25, "minY": 232.375, "maxX": 477.25, "maxY": 255.375}, "class_id": 0, "box_caption": "coureur 0.045", "scores": {"class_score": 0.045440673828125}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 217.75, "maxX": 411.0, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.04449462890625}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 203.875, "maxX": 316.25, "maxY": 232.125}, "class_id": 0, "box_caption": "coureur 0.039", "scores": {"class_score": 0.03857421875}, "domain": "pixel"}, {"position": {"minX": 345.0, "minY": 216.375, "maxX": 364.5, "maxY": 239.375}, "class_id": 0, "box_caption": "coureur 0.036", "scores": {"class_score": 0.036224365234375}, "domain": "pixel"}, {"position": {"minX": 300.0, "minY": 202.5, "maxX": 315.0, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.033", "scores": {"class_score": 0.032684326171875}, "domain": "pixel"}, {"position": {"minX": 580.5, "minY": 238.0, "maxX": 596.5, "maxY": 265.75}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.02691650390625}, "domain": "pixel"}, {"position": {"minX": 396.0, "minY": 228.75, "maxX": 411.0, "maxY": 253.5}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.026397705078125}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 230.5, "maxX": 541.5, "maxY": 257.25}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0253143310546875}, "domain": "pixel"}, {"position": {"minX": 341.5, "minY": 210.0, "maxX": 357.5, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0201568603515625}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 209.625, "maxX": 320.5, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0194244384765625}, "domain": "pixel"}, {"position": {"minX": 195.75, "minY": 202.25, "maxX": 210.0, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017791748046875}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 255.75, "maxX": 598.5, "maxY": 279.75}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0162353515625}, "domain": "pixel"}, {"position": {"minX": 290.75, "minY": 209.75, "maxX": 312.25, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0130767822265625}, "domain": "pixel"}, {"position": {"minX": 521.0, "minY": 233.75, "maxX": 548.0, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01277923583984375}, "domain": "pixel"}, {"position": {"minX": 583.5, "minY": 252.5, "maxX": 602.5, "maxY": 278.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01238250732421875}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 232.5, "maxX": 467.5, "maxY": 256.25}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0118255615234375}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 216.625, "maxX": 410.75, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01132965087890625}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 222.875, "maxX": 413.75, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01082611083984375}, "domain": "pixel"}, {"position": {"minX": 530.0, "minY": 248.5, "maxX": 548.0, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0102081298828125}, "domain": "pixel"}, {"position": {"minX": 228.375, "minY": 200.625, "maxX": 244.625, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0084686279296875}, "domain": "pixel"}, {"position": {"minX": 584.0, "minY": 248.0, "maxX": 606.0, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0083465576171875}, "domain": "pixel"}, {"position": {"minX": 334.75, "minY": 202.0, "maxX": 357.25, "maxY": 240.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00829315185546875}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 200.0, "maxX": 186.75, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00769805908203125}, "domain": "pixel"}, {"position": {"minX": 299.5, "minY": 208.25, "maxX": 318.0, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0076141357421875}, "domain": "pixel"}, {"position": {"minX": 576.5, "minY": 234.125, "maxX": 607.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007198333740234375}, "domain": "pixel"}, {"position": {"minX": 188.75, "minY": 202.25, "maxX": 205.5, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006496429443359375}, "domain": "pixel"}, {"position": {"minX": 340.0, "minY": 226.25, "maxX": 357.5, "maxY": 255.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0060577392578125}, "domain": "pixel"}, {"position": {"minX": 573.0, "minY": 249.125, "maxX": 605.0, "maxY": 279.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005359649658203125}, "domain": "pixel"}, {"position": {"minX": 164.5, "minY": 200.5, "maxX": 180.75, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00513458251953125}, "domain": "pixel"}, {"position": {"minX": 573.0, "minY": 247.75, "maxX": 597.0, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00511932373046875}, "domain": "pixel"}, {"position": {"minX": 456.5, "minY": 235.75, "maxX": 475.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004852294921875}, "domain": "pixel"}, {"position": {"minX": 293.5, "minY": 214.875, "maxX": 310.5, "maxY": 236.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0045318603515625}, "domain": "pixel"}, {"position": {"minX": 524.0, "minY": 218.875, "maxX": 547.0, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0044097900390625}, "domain": "pixel"}, {"position": {"minX": 340.75, "minY": 199.75, "maxX": 364.25, "maxY": 238.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00432586669921875}, "domain": "pixel"}, {"position": {"minX": 449.75, "minY": 240.375, "maxX": 470.75, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004100799560546875}, "domain": "pixel"}, {"position": {"minX": 237.125, "minY": 197.75, "maxX": 257.25, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00409698486328125}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 194.125, "maxX": 186.25, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004039764404296875}, "domain": "pixel"}, {"position": {"minX": 457.0, "minY": 222.5, "maxX": 477.5, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003932952880859375}, "domain": "pixel"}, {"position": {"minX": 345.75, "minY": 225.5, "maxX": 364.75, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038852691650390625}, "domain": "pixel"}, {"position": {"minX": 391.5, "minY": 219.375, "maxX": 419.0, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035839080810546875}, "domain": "pixel"}, {"position": {"minX": 234.75, "minY": 200.875, "maxX": 250.0, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003498077392578125}, "domain": "pixel"}, {"position": {"minX": 188.875, "minY": 196.125, "maxX": 208.625, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033664703369140625}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 231.0, "maxX": 542.0, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033435821533203125}, "domain": "pixel"}, {"position": {"minX": 100.0625, "minY": 10.15625, "maxX": 120.6875, "maxY": 45.5625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033416748046875}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 225.5, "maxX": 407.75, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032062530517578125}, "domain": "pixel"}, {"position": {"minX": 253.5, "minY": 193.875, "maxX": 266.5, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031032562255859375}, "domain": "pixel"}, {"position": {"minX": 235.375, "minY": 208.0, "maxX": 250.875, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003017425537109375}, "domain": "pixel"}, {"position": {"minX": 252.75, "minY": 200.125, "maxX": 267.25, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029926300048828125}, "domain": "pixel"}, {"position": {"minX": 164.625, "minY": 194.375, "maxX": 180.875, "maxY": 213.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00286865234375}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 239.0, "maxX": 603.0, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002605438232421875}, "domain": "pixel"}, {"position": {"minX": 453.0, "minY": 214.0, "maxX": 470.0, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00258636474609375}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 231.5, "maxX": 548.5, "maxY": 256.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002536773681640625}, "domain": "pixel"}, {"position": {"minX": 335.5, "minY": 218.75, "maxX": 358.5, "maxY": 259.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002498626708984375}, "domain": "pixel"}, {"position": {"minX": 446.25, "minY": 233.125, "maxX": 476.75, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024394989013671875}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 202.5, "maxX": 415.75, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002193450927734375}, "domain": "pixel"}, {"position": {"minX": 438.75, "minY": 214.875, "maxX": 477.75, "maxY": 249.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020771026611328125}, "domain": "pixel"}, {"position": {"minX": 122.9375, "minY": 193.5, "maxX": 139.125, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019588470458984375}, "domain": "pixel"}, {"position": {"minX": 195.5, "minY": 206.625, "maxX": 210.75, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019140243530273438}, "domain": "pixel"}, {"position": {"minX": 172.5, "minY": 194.125, "maxX": 195.0, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019073486328125}, "domain": "pixel"}, {"position": {"minX": 351.0, "minY": 29.3125, "maxX": 379.0, "maxY": 74.8125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019006729125976562}, "domain": "pixel"}, {"position": {"minX": 116.0625, "minY": 193.25, "maxX": 132.25, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001811981201171875}, "domain": "pixel"}, {"position": {"minX": 171.625, "minY": 180.875, "maxX": 194.375, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018072128295898438}, "domain": "pixel"}, {"position": {"minX": 343.5, "minY": 15.5, "maxX": 384.5, "maxY": 72.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001708984375}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 228.75, "maxX": 408.75, "maxY": 254.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001697540283203125}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 209.625, "maxX": 363.25, "maxY": 230.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001667022705078125}, "domain": "pixel"}, {"position": {"minX": 221.75, "minY": 195.75, "maxX": 243.5, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016603469848632812}, "domain": "pixel"}, {"position": {"minX": 564.5, "minY": 228.75, "maxX": 606.5, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016241073608398438}, "domain": "pixel"}, {"position": {"minX": 476.0, "minY": 207.875, "maxX": 493.0, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001567840576171875}, "domain": "pixel"}, {"position": {"minX": 293.5, "minY": 202.0, "maxX": 313.0, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015630722045898438}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 223.25, "maxX": 355.75, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001453399658203125}, "domain": "pixel"}, {"position": {"minX": 227.875, "minY": 193.375, "maxX": 243.375, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00144195556640625}, "domain": "pixel"}, {"position": {"minX": 178.125, "minY": 200.5, "maxX": 196.125, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013914108276367188}, "domain": "pixel"}, {"position": {"minX": 304.75, "minY": 213.875, "maxX": 321.75, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013303756713867188}, "domain": "pixel"}, {"position": {"minX": 157.5, "minY": 180.875, "maxX": 179.25, "maxY": 216.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013246536254882812}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 217.0, "maxX": 364.0, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012331008911132812}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 216.625, "maxX": 406.0, "maxY": 239.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012264251708984375}, "domain": "pixel"}, {"position": {"minX": 227.875, "minY": 207.0, "maxX": 245.125, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012264251708984375}, "domain": "pixel"}, {"position": {"minX": 455.25, "minY": 212.5, "maxX": 476.25, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012178421020507812}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 200.75, "maxX": 328.0, "maxY": 231.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001201629638671875}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 216.25, "maxX": 356.25, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001129150390625}, "domain": "pixel"}, {"position": {"minX": 640.5, "minY": 46.0625, "maxX": 663.5, "maxY": 89.9375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010766983032226562}, "domain": "pixel"}, {"position": {"minX": 123.1875, "minY": 178.375, "maxX": 144.125, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010509490966796875}, "domain": "pixel"}, {"position": {"minX": 130.5, "minY": 193.25, "maxX": 147.75, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001033782958984375}, "domain": "pixel"}, {"position": {"minX": 188.0, "minY": 182.625, "maxX": 207.75, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010328292846679688}, "domain": "pixel"}, {"position": {"minX": 444.75, "minY": 236.875, "maxX": 464.25, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001007080078125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_a1e4c740068a445300d6.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_a1e4c740068a445300d6.boxes2D.json new file mode 100644 index 0000000..606303d --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_a1e4c740068a445300d6.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 449.25, "minY": 234.125, "maxX": 466.75, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.419", "scores": {"class_score": 0.41943359375}, "domain": "pixel"}, {"position": {"minX": 294.5, "minY": 211.375, "maxX": 308.5, "maxY": 229.875}, "class_id": 0, "box_caption": "coureur 0.340", "scores": {"class_score": 0.33984375}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 217.75, "maxX": 353.25, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.3232421875}, "domain": "pixel"}, {"position": {"minX": 520.0, "minY": 238.125, "maxX": 544.0, "maxY": 268.25}, "class_id": 0, "box_caption": "coureur 0.272", "scores": {"class_score": 0.272216796875}, "domain": "pixel"}, {"position": {"minX": 578.0, "minY": 247.375, "maxX": 599.0, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.271", "scores": {"class_score": 0.2705078125}, "domain": "pixel"}, {"position": {"minX": 336.0, "minY": 223.75, "maxX": 350.0, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.251", "scores": {"class_score": 0.2509765625}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 214.75, "maxX": 308.5, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.168", "scores": {"class_score": 0.168212890625}, "domain": "pixel"}, {"position": {"minX": 387.75, "minY": 224.75, "maxX": 403.75, "maxY": 248.25}, "class_id": 0, "box_caption": "coureur 0.150", "scores": {"class_score": 0.150390625}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 239.5, "maxX": 468.5, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.112", "scores": {"class_score": 0.11151123046875}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 228.5, "maxX": 404.5, "maxY": 254.0}, "class_id": 0, "box_caption": "coureur 0.106", "scores": {"class_score": 0.10565185546875}, "domain": "pixel"}, {"position": {"minX": 444.25, "minY": 233.625, "maxX": 472.25, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.041", "scores": {"class_score": 0.04095458984375}, "domain": "pixel"}, {"position": {"minX": 212.125, "minY": 201.0, "maxX": 228.125, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.040", "scores": {"class_score": 0.040496826171875}, "domain": "pixel"}, {"position": {"minX": 337.0, "minY": 224.75, "maxX": 357.0, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.03826904296875}, "domain": "pixel"}, {"position": {"minX": 442.25, "minY": 230.0, "maxX": 465.75, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.038", "scores": {"class_score": 0.037750244140625}, "domain": "pixel"}, {"position": {"minX": 518.0, "minY": 245.0, "maxX": 538.0, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.03094482421875}, "domain": "pixel"}, {"position": {"minX": 288.75, "minY": 204.25, "maxX": 307.75, "maxY": 235.75}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.0294647216796875}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 248.75, "maxX": 604.0, "maxY": 280.25}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.0290069580078125}, "domain": "pixel"}, {"position": {"minX": 446.25, "minY": 237.0, "maxX": 465.75, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0254974365234375}, "domain": "pixel"}, {"position": {"minX": 645.5, "minY": 215.875, "maxX": 659.5, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.0244598388671875}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 233.0, "maxX": 547.5, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.020477294921875}, "domain": "pixel"}, {"position": {"minX": 219.375, "minY": 208.75, "maxX": 233.875, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.019287109375}, "domain": "pixel"}, {"position": {"minX": 387.5, "minY": 216.75, "maxX": 405.0, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0165557861328125}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 252.625, "maxX": 603.0, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01406097412109375}, "domain": "pixel"}, {"position": {"minX": 297.25, "minY": 209.125, "maxX": 316.25, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01306915283203125}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 227.0, "maxX": 350.25, "maxY": 254.0}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0127105712890625}, "domain": "pixel"}, {"position": {"minX": 524.0, "minY": 230.75, "maxX": 541.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0123138427734375}, "domain": "pixel"}, {"position": {"minX": 211.5, "minY": 193.875, "maxX": 226.25, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01195526123046875}, "domain": "pixel"}, {"position": {"minX": 218.0, "minY": 202.125, "maxX": 233.25, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01152801513671875}, "domain": "pixel"}, {"position": {"minX": 574.0, "minY": 252.875, "maxX": 595.0, "maxY": 280.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01052093505859375}, "domain": "pixel"}, {"position": {"minX": 640.5, "minY": 215.75, "maxX": 657.5, "maxY": 245.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01044464111328125}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 203.375, "maxX": 353.75, "maxY": 240.875}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00914764404296875}, "domain": "pixel"}, {"position": {"minX": 379.0, "minY": 231.875, "maxX": 399.0, "maxY": 255.875}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0091094970703125}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 223.25, "maxX": 468.0, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.009002685546875}, "domain": "pixel"}, {"position": {"minX": 219.0, "minY": 198.375, "maxX": 238.0, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0089263916015625}, "domain": "pixel"}, {"position": {"minX": 386.25, "minY": 218.0, "maxX": 409.75, "maxY": 251.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00835418701171875}, "domain": "pixel"}, {"position": {"minX": 381.0, "minY": 223.625, "maxX": 403.0, "maxY": 250.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00763702392578125}, "domain": "pixel"}, {"position": {"minX": 212.25, "minY": 206.75, "maxX": 230.0, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006839752197265625}, "domain": "pixel"}, {"position": {"minX": 292.75, "minY": 201.5, "maxX": 309.25, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00670623779296875}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 244.25, "maxX": 548.0, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006488800048828125}, "domain": "pixel"}, {"position": {"minX": 208.125, "minY": 196.375, "maxX": 228.375, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0061187744140625}, "domain": "pixel"}, {"position": {"minX": 337.25, "minY": 207.875, "maxX": 354.25, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00598907470703125}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 219.25, "maxX": 353.5, "maxY": 258.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005893707275390625}, "domain": "pixel"}, {"position": {"minX": 644.0, "minY": 220.125, "maxX": 660.0, "maxY": 247.875}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005889892578125}, "domain": "pixel"}, {"position": {"minX": 330.0, "minY": 218.375, "maxX": 357.5, "maxY": 245.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00548553466796875}, "domain": "pixel"}, {"position": {"minX": 130.625, "minY": 192.125, "maxX": 146.625, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004817962646484375}, "domain": "pixel"}, {"position": {"minX": 298.75, "minY": 217.875, "maxX": 315.25, "maxY": 237.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00441741943359375}, "domain": "pixel"}, {"position": {"minX": 573.0, "minY": 243.25, "maxX": 612.0, "maxY": 285.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00421905517578125}, "domain": "pixel"}, {"position": {"minX": 580.5, "minY": 236.75, "maxX": 596.5, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0041656494140625}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 236.5, "maxX": 537.5, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004138946533203125}, "domain": "pixel"}, {"position": {"minX": 451.5, "minY": 231.0, "maxX": 474.5, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00403594970703125}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 200.0, "maxX": 315.5, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003955841064453125}, "domain": "pixel"}, {"position": {"minX": 623.0, "minY": 15.5, "maxX": 665.0, "maxY": 88.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038280487060546875}, "domain": "pixel"}, {"position": {"minX": 295.25, "minY": 209.25, "maxX": 315.75, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003757476806640625}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 235.25, "maxX": 608.0, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034732818603515625}, "domain": "pixel"}, {"position": {"minX": 131.75, "minY": 198.5, "maxX": 147.5, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034275054931640625}, "domain": "pixel"}, {"position": {"minX": 448.75, "minY": 217.125, "maxX": 478.75, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032901763916015625}, "domain": "pixel"}, {"position": {"minX": 172.125, "minY": 193.25, "maxX": 186.875, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031108856201171875}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 217.75, "maxX": 546.5, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029392242431640625}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 246.75, "maxX": 548.5, "maxY": 281.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029392242431640625}, "domain": "pixel"}, {"position": {"minX": 284.75, "minY": 209.625, "maxX": 306.75, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002758026123046875}, "domain": "pixel"}, {"position": {"minX": 436.5, "minY": 226.75, "maxX": 463.5, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002544403076171875}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 245.125, "maxX": 593.5, "maxY": 275.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00238800048828125}, "domain": "pixel"}, {"position": {"minX": 204.625, "minY": 200.25, "maxX": 223.125, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022449493408203125}, "domain": "pixel"}, {"position": {"minX": 154.875, "minY": 201.75, "maxX": 171.875, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022220611572265625}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 238.25, "maxX": 549.5, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002056121826171875}, "domain": "pixel"}, {"position": {"minX": 206.0, "minY": 194.125, "maxX": 222.25, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00200653076171875}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 215.125, "maxX": 411.0, "maxY": 242.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00199127197265625}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 199.0, "maxX": 187.25, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019893646240234375}, "domain": "pixel"}, {"position": {"minX": 564.0, "minY": 225.75, "maxX": 607.0, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018930435180664062}, "domain": "pixel"}, {"position": {"minX": 148.375, "minY": 201.75, "maxX": 164.875, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018138885498046875}, "domain": "pixel"}, {"position": {"minX": 141.5, "minY": 197.25, "maxX": 161.5, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017747879028320312}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 198.5, "maxX": 403.25, "maxY": 242.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017299652099609375}, "domain": "pixel"}, {"position": {"minX": 337.5, "minY": 212.375, "maxX": 362.5, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017223358154296875}, "domain": "pixel"}, {"position": {"minX": 296.25, "minY": 200.375, "maxX": 314.75, "maxY": 225.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017213821411132812}, "domain": "pixel"}, {"position": {"minX": 162.0, "minY": 200.125, "maxX": 181.0, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016765594482421875}, "domain": "pixel"}, {"position": {"minX": 644.0, "minY": 206.625, "maxX": 661.0, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015535354614257812}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 254.75, "maxX": 599.0, "maxY": 288.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015306472778320312}, "domain": "pixel"}, {"position": {"minX": 320.25, "minY": 211.375, "maxX": 349.75, "maxY": 250.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014810562133789062}, "domain": "pixel"}, {"position": {"minX": 436.75, "minY": 212.375, "maxX": 474.75, "maxY": 252.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014696121215820312}, "domain": "pixel"}, {"position": {"minX": 156.625, "minY": 197.0, "maxX": 176.375, "maxY": 227.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014677047729492188}, "domain": "pixel"}, {"position": {"minX": 505.25, "minY": 227.75, "maxX": 548.5, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014657974243164062}, "domain": "pixel"}, {"position": {"minX": 378.75, "minY": 230.875, "maxX": 409.75, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013980865478515625}, "domain": "pixel"}, {"position": {"minX": 219.875, "minY": 213.0, "maxX": 235.875, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001384735107421875}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 228.125, "maxX": 411.25, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001384735107421875}, "domain": "pixel"}, {"position": {"minX": 584.5, "minY": 246.375, "maxX": 605.5, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013246536254882812}, "domain": "pixel"}, {"position": {"minX": 435.0, "minY": 200.375, "maxX": 450.5, "maxY": 224.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00128173828125}, "domain": "pixel"}, {"position": {"minX": 124.75, "minY": 184.0, "maxX": 147.25, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012683868408203125}, "domain": "pixel"}, {"position": {"minX": 224.75, "minY": 208.5, "maxX": 243.0, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012216567993164062}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 4.859375, "maxX": 597.5, "maxY": 45.3125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011968612670898438}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 208.125, "maxX": 348.5, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011806488037109375}, "domain": "pixel"}, {"position": {"minX": 615.0, "minY": 12.96875, "maxX": 657.0, "maxY": 75.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011720657348632812}, "domain": "pixel"}, {"position": {"minX": 637.0, "minY": 197.375, "maxX": 661.0, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011034011840820312}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 217.375, "maxX": 310.5, "maxY": 248.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011005401611328125}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 225.5, "maxX": 412.5, "maxY": 246.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010986328125}, "domain": "pixel"}, {"position": {"minX": 171.375, "minY": 195.75, "maxX": 191.625, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010576248168945312}, "domain": "pixel"}, {"position": {"minX": 647.5, "minY": 214.5, "maxX": 665.5, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010509490966796875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_cca5ef6798b8a5ed59b0.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_cca5ef6798b8a5ed59b0.boxes2D.json new file mode 100644 index 0000000..a4bdfbf --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_cca5ef6798b8a5ed59b0.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 135.625, "minY": 258.0, "maxX": 176.625, "maxY": 326.0}, "class_id": 0, "box_caption": "coureur 0.322", "scores": {"class_score": 0.321533203125}, "domain": "pixel"}, {"position": {"minX": 499.25, "minY": 61.3125, "maxX": 536.5, "maxY": 143.25}, "class_id": 0, "box_caption": "coureur 0.140", "scores": {"class_score": 0.140380859375}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 117.5, "maxX": 274.25, "maxY": 194.0}, "class_id": 0, "box_caption": "coureur 0.133", "scores": {"class_score": 0.1328125}, "domain": "pixel"}, {"position": {"minX": 345.75, "minY": 116.1875, "maxX": 384.75, "maxY": 187.5}, "class_id": 0, "box_caption": "coureur 0.131", "scores": {"class_score": 0.13134765625}, "domain": "pixel"}, {"position": {"minX": 222.5, "minY": 127.375, "maxX": 281.75, "maxY": 209.125}, "class_id": 0, "box_caption": "coureur 0.086", "scores": {"class_score": 0.08624267578125}, "domain": "pixel"}, {"position": {"minX": 430.75, "minY": 79.0, "maxX": 477.75, "maxY": 162.0}, "class_id": 0, "box_caption": "coureur 0.085", "scores": {"class_score": 0.08514404296875}, "domain": "pixel"}, {"position": {"minX": 373.0, "minY": 164.5, "maxX": 402.5, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.075", "scores": {"class_score": 0.07525634765625}, "domain": "pixel"}, {"position": {"minX": 368.75, "minY": 155.25, "maxX": 406.25, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.068", "scores": {"class_score": 0.06781005859375}, "domain": "pixel"}, {"position": {"minX": 428.0, "minY": 190.75, "maxX": 478.0, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.057", "scores": {"class_score": 0.057037353515625}, "domain": "pixel"}, {"position": {"minX": 352.25, "minY": 133.125, "maxX": 406.75, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.048", "scores": {"class_score": 0.04754638671875}, "domain": "pixel"}, {"position": {"minX": 422.5, "minY": 253.375, "maxX": 487.0, "maxY": 339.0}, "class_id": 0, "box_caption": "coureur 0.040", "scores": {"class_score": 0.04010009765625}, "domain": "pixel"}, {"position": {"minX": 346.25, "minY": 118.875, "maxX": 397.75, "maxY": 213.375}, "class_id": 0, "box_caption": "coureur 0.039", "scores": {"class_score": 0.039031982421875}, "domain": "pixel"}, {"position": {"minX": 430.75, "minY": 233.5, "maxX": 482.25, "maxY": 329.0}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.036773681640625}, "domain": "pixel"}, {"position": {"minX": 494.25, "minY": 64.75, "maxX": 539.0, "maxY": 175.25}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.034088134765625}, "domain": "pixel"}, {"position": {"minX": 427.75, "minY": 262.25, "maxX": 466.75, "maxY": 330.25}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.02264404296875}, "domain": "pixel"}, {"position": {"minX": 423.75, "minY": 197.25, "maxX": 464.75, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0224151611328125}, "domain": "pixel"}, {"position": {"minX": 433.75, "minY": 180.375, "maxX": 472.25, "maxY": 255.375}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.020904541015625}, "domain": "pixel"}, {"position": {"minX": 141.375, "minY": 257.5, "maxX": 172.875, "maxY": 310.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01392364501953125}, "domain": "pixel"}, {"position": {"minX": 427.5, "minY": 89.5, "maxX": 470.0, "maxY": 178.75}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01374053955078125}, "domain": "pixel"}, {"position": {"minX": 431.75, "minY": 245.0, "maxX": 472.25, "maxY": 307.0}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01318359375}, "domain": "pixel"}, {"position": {"minX": 438.25, "minY": 258.5, "maxX": 468.75, "maxY": 308.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01213836669921875}, "domain": "pixel"}, {"position": {"minX": 216.125, "minY": 133.25, "maxX": 261.75, "maxY": 195.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0114593505859375}, "domain": "pixel"}, {"position": {"minX": 438.5, "minY": 78.8125, "maxX": 473.5, "maxY": 141.5}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0109100341796875}, "domain": "pixel"}, {"position": {"minX": 240.875, "minY": 137.25, "maxX": 279.5, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.009124755859375}, "domain": "pixel"}, {"position": {"minX": 441.5, "minY": 175.75, "maxX": 466.0, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0090789794921875}, "domain": "pixel"}, {"position": {"minX": 487.25, "minY": 77.875, "maxX": 552.5, "maxY": 194.375}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0086669921875}, "domain": "pixel"}, {"position": {"minX": 341.25, "minY": 105.875, "maxX": 385.25, "maxY": 167.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0080718994140625}, "domain": "pixel"}, {"position": {"minX": 127.6875, "minY": 253.0, "maxX": 168.5, "maxY": 315.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00738525390625}, "domain": "pixel"}, {"position": {"minX": 562.0, "minY": 127.875, "maxX": 594.0, "maxY": 186.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007213592529296875}, "domain": "pixel"}, {"position": {"minX": 349.5, "minY": 115.4375, "maxX": 381.0, "maxY": 165.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007022857666015625}, "domain": "pixel"}, {"position": {"minX": 427.75, "minY": 293.25, "maxX": 446.25, "maxY": 322.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006839752197265625}, "domain": "pixel"}, {"position": {"minX": 433.0, "minY": 204.375, "maxX": 481.5, "maxY": 292.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00664520263671875}, "domain": "pixel"}, {"position": {"minX": 429.5, "minY": 288.25, "maxX": 454.0, "maxY": 324.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00624847412109375}, "domain": "pixel"}, {"position": {"minX": 454.25, "minY": 224.625, "maxX": 475.25, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006122589111328125}, "domain": "pixel"}, {"position": {"minX": 234.625, "minY": 111.25, "maxX": 267.5, "maxY": 176.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005695343017578125}, "domain": "pixel"}, {"position": {"minX": 439.0, "minY": 170.75, "maxX": 469.5, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0048675537109375}, "domain": "pixel"}, {"position": {"minX": 461.0, "minY": 298.5, "maxX": 480.0, "maxY": 332.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00485992431640625}, "domain": "pixel"}, {"position": {"minX": 418.0, "minY": 213.75, "maxX": 474.0, "maxY": 312.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004848480224609375}, "domain": "pixel"}, {"position": {"minX": 359.75, "minY": 163.375, "maxX": 400.75, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004787445068359375}, "domain": "pixel"}, {"position": {"minX": 423.5, "minY": 81.4375, "maxX": 488.5, "maxY": 190.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004669189453125}, "domain": "pixel"}, {"position": {"minX": 407.75, "minY": 233.5, "maxX": 433.75, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004589080810546875}, "domain": "pixel"}, {"position": {"minX": 367.5, "minY": 137.5, "maxX": 408.0, "maxY": 208.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004566192626953125}, "domain": "pixel"}, {"position": {"minX": 488.75, "minY": 56.625, "maxX": 551.0, "maxY": 151.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0045318603515625}, "domain": "pixel"}, {"position": {"minX": 568.0, "minY": 144.875, "maxX": 593.0, "maxY": 182.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00447845458984375}, "domain": "pixel"}, {"position": {"minX": 335.5, "minY": 116.1875, "maxX": 377.0, "maxY": 179.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004306793212890625}, "domain": "pixel"}, {"position": {"minX": 488.75, "minY": 50.34375, "maxX": 537.0, "maxY": 126.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00418853759765625}, "domain": "pixel"}, {"position": {"minX": 347.75, "minY": 203.125, "maxX": 371.75, "maxY": 255.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004047393798828125}, "domain": "pixel"}, {"position": {"minX": 429.5, "minY": 277.5, "maxX": 458.5, "maxY": 321.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003993988037109375}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 84.25, "maxX": 481.5, "maxY": 150.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038604736328125}, "domain": "pixel"}, {"position": {"minX": 254.625, "minY": 162.125, "maxX": 274.5, "maxY": 195.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003749847412109375}, "domain": "pixel"}, {"position": {"minX": 460.0, "minY": 294.0, "maxX": 488.0, "maxY": 335.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003662109375}, "domain": "pixel"}, {"position": {"minX": 410.0, "minY": 190.125, "maxX": 426.0, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003589630126953125}, "domain": "pixel"}, {"position": {"minX": 356.25, "minY": 124.125, "maxX": 382.75, "maxY": 171.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003536224365234375}, "domain": "pixel"}, {"position": {"minX": 433.5, "minY": 79.0, "maxX": 462.0, "maxY": 137.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034542083740234375}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 173.75, "maxX": 404.75, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003452301025390625}, "domain": "pixel"}, {"position": {"minX": 502.0, "minY": 54.46875, "maxX": 548.0, "maxY": 123.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034046173095703125}, "domain": "pixel"}, {"position": {"minX": 379.0, "minY": 157.5, "maxX": 422.0, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00328826904296875}, "domain": "pixel"}, {"position": {"minX": 334.25, "minY": 254.375, "maxX": 360.75, "maxY": 309.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00325775146484375}, "domain": "pixel"}, {"position": {"minX": 544.0, "minY": 118.875, "maxX": 596.0, "maxY": 185.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003173828125}, "domain": "pixel"}, {"position": {"minX": 423.5, "minY": 254.125, "maxX": 464.5, "maxY": 314.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003131866455078125}, "domain": "pixel"}, {"position": {"minX": 452.5, "minY": 280.5, "maxX": 490.5, "maxY": 340.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030422210693359375}, "domain": "pixel"}, {"position": {"minX": 242.5, "minY": 121.6875, "maxX": 262.25, "maxY": 159.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00302886962890625}, "domain": "pixel"}, {"position": {"minX": 145.0, "minY": 255.5, "maxX": 168.75, "maxY": 296.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002956390380859375}, "domain": "pixel"}, {"position": {"minX": 349.75, "minY": 185.125, "maxX": 379.75, "maxY": 248.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028743743896484375}, "domain": "pixel"}, {"position": {"minX": 439.5, "minY": 196.625, "maxX": 487.5, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028667449951171875}, "domain": "pixel"}, {"position": {"minX": 497.75, "minY": 96.5, "maxX": 542.5, "maxY": 198.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002826690673828125}, "domain": "pixel"}, {"position": {"minX": 513.0, "minY": 59.0625, "maxX": 530.0, "maxY": 92.8125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00281524658203125}, "domain": "pixel"}, {"position": {"minX": 473.25, "minY": 184.25, "maxX": 495.25, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00281524658203125}, "domain": "pixel"}, {"position": {"minX": 425.5, "minY": 285.25, "maxX": 461.0, "maxY": 338.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00257110595703125}, "domain": "pixel"}, {"position": {"minX": 344.25, "minY": 151.75, "maxX": 392.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002468109130859375}, "domain": "pixel"}, {"position": {"minX": 609.5, "minY": 356.25, "maxX": 625.5, "maxY": 385.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023345947265625}, "domain": "pixel"}, {"position": {"minX": 423.75, "minY": 113.25, "maxX": 468.25, "maxY": 190.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023174285888671875}, "domain": "pixel"}, {"position": {"minX": 608.0, "minY": 46.03125, "maxX": 648.0, "maxY": 106.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00223541259765625}, "domain": "pixel"}, {"position": {"minX": 135.5, "minY": 269.75, "maxX": 164.75, "maxY": 314.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00214385986328125}, "domain": "pixel"}, {"position": {"minX": 119.875, "minY": 247.75, "maxX": 184.625, "maxY": 344.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00212860107421875}, "domain": "pixel"}, {"position": {"minX": 138.125, "minY": 238.5, "maxX": 173.375, "maxY": 305.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00206756591796875}, "domain": "pixel"}, {"position": {"minX": 346.0, "minY": 218.0, "maxX": 368.5, "maxY": 253.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002040863037109375}, "domain": "pixel"}, {"position": {"minX": 229.875, "minY": 116.875, "maxX": 297.0, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001995086669921875}, "domain": "pixel"}, {"position": {"minX": 161.625, "minY": 300.0, "maxX": 178.625, "maxY": 330.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001964569091796875}, "domain": "pixel"}, {"position": {"minX": 248.25, "minY": 210.5, "maxX": 290.75, "maxY": 285.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018434524536132812}, "domain": "pixel"}, {"position": {"minX": 140.875, "minY": 270.5, "maxX": 180.875, "maxY": 337.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001834869384765625}, "domain": "pixel"}, {"position": {"minX": 438.75, "minY": 218.0, "maxX": 490.75, "maxY": 307.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017852783203125}, "domain": "pixel"}, {"position": {"minX": 133.625, "minY": 245.125, "maxX": 201.375, "maxY": 347.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017824172973632812}, "domain": "pixel"}, {"position": {"minX": 428.0, "minY": 132.625, "maxX": 461.5, "maxY": 180.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017786026000976562}, "domain": "pixel"}, {"position": {"minX": 367.5, "minY": 174.0, "maxX": 396.0, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017547607421875}, "domain": "pixel"}, {"position": {"minX": 445.0, "minY": 268.0, "maxX": 470.5, "maxY": 311.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017290115356445312}, "domain": "pixel"}, {"position": {"minX": 504.0, "minY": 48.3125, "maxX": 536.0, "maxY": 109.9375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001708984375}, "domain": "pixel"}, {"position": {"minX": 441.75, "minY": 272.75, "maxX": 464.25, "maxY": 310.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016994476318359375}, "domain": "pixel"}, {"position": {"minX": 451.0, "minY": 83.625, "maxX": 477.5, "maxY": 132.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016937255859375}, "domain": "pixel"}, {"position": {"minX": 326.0, "minY": 278.0, "maxX": 359.5, "maxY": 343.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016689300537109375}, "domain": "pixel"}, {"position": {"minX": 436.0, "minY": 276.0, "maxX": 466.0, "maxY": 319.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001644134521484375}, "domain": "pixel"}, {"position": {"minX": 327.5, "minY": 266.5, "maxX": 363.0, "maxY": 325.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016355514526367188}, "domain": "pixel"}, {"position": {"minX": 439.5, "minY": 252.625, "maxX": 480.5, "maxY": 315.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016345977783203125}, "domain": "pixel"}, {"position": {"minX": 405.5, "minY": 197.0, "maxX": 475.5, "maxY": 331.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001617431640625}, "domain": "pixel"}, {"position": {"minX": 374.75, "minY": 178.125, "maxX": 399.75, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015630722045898438}, "domain": "pixel"}, {"position": {"minX": 437.0, "minY": 212.75, "maxX": 506.0, "maxY": 347.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015554428100585938}, "domain": "pixel"}, {"position": {"minX": 352.25, "minY": 119.25, "maxX": 391.75, "maxY": 176.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001499176025390625}, "domain": "pixel"}, {"position": {"minX": 349.75, "minY": 131.0, "maxX": 380.75, "maxY": 180.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014562606811523438}, "domain": "pixel"}, {"position": {"minX": 239.625, "minY": 125.75, "maxX": 265.5, "maxY": 170.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014543533325195312}, "domain": "pixel"}, {"position": {"minX": 328.75, "minY": 304.0, "maxX": 349.75, "maxY": 342.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013971328735351562}, "domain": "pixel"}, {"position": {"minX": 353.0, "minY": 198.625, "maxX": 374.5, "maxY": 239.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013761520385742188}, "domain": "pixel"}, {"position": {"minX": 431.5, "minY": 205.5, "maxX": 459.0, "maxY": 250.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013418197631835938}, "domain": "pixel"}, {"position": {"minX": 621.0, "minY": 195.875, "maxX": 636.0, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013380050659179688}, "domain": "pixel"}, {"position": {"minX": 325.5, "minY": 121.5625, "maxX": 395.5, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013027191162109375}, "domain": "pixel"}, {"position": {"minX": 501.0, "minY": 73.5, "maxX": 533.0, "maxY": 126.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001300811767578125}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 216.25, "maxX": 473.0, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001293182373046875}, "domain": "pixel"}, {"position": {"minX": 251.0, "minY": 166.25, "maxX": 273.0, "maxY": 204.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012731552124023438}, "domain": "pixel"}, {"position": {"minX": 329.0, "minY": 104.375, "maxX": 391.5, "maxY": 199.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012111663818359375}, "domain": "pixel"}, {"position": {"minX": 266.5, "minY": 206.0, "maxX": 289.0, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001209259033203125}, "domain": "pixel"}, {"position": {"minX": 351.5, "minY": 167.0, "maxX": 402.5, "maxY": 252.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011949539184570312}, "domain": "pixel"}, {"position": {"minX": 162.0, "minY": 306.5, "maxX": 180.5, "maxY": 337.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011758804321289062}, "domain": "pixel"}, {"position": {"minX": 412.25, "minY": 229.75, "maxX": 440.25, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00116729736328125}, "domain": "pixel"}, {"position": {"minX": 448.25, "minY": 228.375, "maxX": 471.75, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00116729736328125}, "domain": "pixel"}, {"position": {"minX": 407.0, "minY": 171.5, "maxX": 473.5, "maxY": 292.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011663436889648438}, "domain": "pixel"}, {"position": {"minX": 498.25, "minY": 61.6875, "maxX": 573.0, "maxY": 210.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011453628540039062}, "domain": "pixel"}, {"position": {"minX": 342.25, "minY": 97.75, "maxX": 409.75, "maxY": 206.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011425018310546875}, "domain": "pixel"}, {"position": {"minX": 129.625, "minY": 270.0, "maxX": 187.625, "maxY": 354.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011243820190429688}, "domain": "pixel"}, {"position": {"minX": 213.75, "minY": 120.375, "maxX": 283.25, "maxY": 247.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011234283447265625}, "domain": "pixel"}, {"position": {"minX": 423.0, "minY": 189.125, "maxX": 489.0, "maxY": 306.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011148452758789062}, "domain": "pixel"}, {"position": {"minX": 241.5, "minY": 144.5, "maxX": 290.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010890960693359375}, "domain": "pixel"}, {"position": {"minX": 378.0, "minY": 159.875, "maxX": 399.5, "maxY": 200.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010709762573242188}, "domain": "pixel"}, {"position": {"minX": 343.5, "minY": 201.125, "maxX": 384.5, "maxY": 254.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010623931884765625}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 172.5, "maxX": 421.0, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001033782958984375}, "domain": "pixel"}, {"position": {"minX": 407.0, "minY": 78.25, "maxX": 474.0, "maxY": 193.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010223388671875}, "domain": "pixel"}, {"position": {"minX": 356.25, "minY": 197.875, "maxX": 372.75, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010204315185546875}, "domain": "pixel"}, {"position": {"minX": 435.75, "minY": 148.125, "maxX": 474.25, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001003265380859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_e8ab4f2c1979c889df11.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_e8ab4f2c1979c889df11.boxes2D.json new file mode 100644 index 0000000..be2bf4a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_e8ab4f2c1979c889df11.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 443.75, "minY": 226.375, "maxX": 459.75, "maxY": 247.125}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.404296875}, "domain": "pixel"}, {"position": {"minX": 334.5, "minY": 216.75, "maxX": 346.5, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.345703125}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 238.625, "maxX": 533.0, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.320", "scores": {"class_score": 0.320068359375}, "domain": "pixel"}, {"position": {"minX": 570.0, "minY": 241.5, "maxX": 586.0, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.313", "scores": {"class_score": 0.312744140625}, "domain": "pixel"}, {"position": {"minX": 334.25, "minY": 210.25, "maxX": 347.75, "maxY": 231.5}, "class_id": 0, "box_caption": "coureur 0.240", "scores": {"class_score": 0.23974609375}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 208.0, "maxX": 306.0, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.220", "scores": {"class_score": 0.220458984375}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 202.75, "maxX": 306.0, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.216", "scores": {"class_score": 0.21630859375}, "domain": "pixel"}, {"position": {"minX": 382.25, "minY": 216.875, "maxX": 397.25, "maxY": 237.375}, "class_id": 0, "box_caption": "coureur 0.122", "scores": {"class_score": 0.122314453125}, "domain": "pixel"}, {"position": {"minX": 442.5, "minY": 232.625, "maxX": 461.0, "maxY": 254.875}, "class_id": 0, "box_caption": "coureur 0.119", "scores": {"class_score": 0.11920166015625}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 230.875, "maxX": 534.0, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.086", "scores": {"class_score": 0.08648681640625}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 201.5, "maxX": 305.0, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.078", "scores": {"class_score": 0.07757568359375}, "domain": "pixel"}, {"position": {"minX": 226.5, "minY": 194.25, "maxX": 241.25, "maxY": 213.25}, "class_id": 0, "box_caption": "coureur 0.071", "scores": {"class_score": 0.07122802734375}, "domain": "pixel"}, {"position": {"minX": 570.0, "minY": 247.875, "maxX": 589.0, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.070", "scores": {"class_score": 0.06976318359375}, "domain": "pixel"}, {"position": {"minX": 227.75, "minY": 200.0, "maxX": 242.75, "maxY": 220.25}, "class_id": 0, "box_caption": "coureur 0.042", "scores": {"class_score": 0.042205810546875}, "domain": "pixel"}, {"position": {"minX": 286.0, "minY": 208.5, "maxX": 303.5, "maxY": 228.25}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.036865234375}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 245.5, "maxX": 585.0, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.031280517578125}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 217.25, "maxX": 460.0, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0299072265625}, "domain": "pixel"}, {"position": {"minX": 438.5, "minY": 231.0, "maxX": 457.5, "maxY": 253.25}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.029022216796875}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 220.5, "maxX": 347.5, "maxY": 245.25}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.0286712646484375}, "domain": "pixel"}, {"position": {"minX": 380.0, "minY": 208.75, "maxX": 397.0, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.0234527587890625}, "domain": "pixel"}, {"position": {"minX": 445.25, "minY": 224.375, "maxX": 464.75, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0220184326171875}, "domain": "pixel"}, {"position": {"minX": 221.75, "minY": 194.25, "maxX": 238.25, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.020721435546875}, "domain": "pixel"}, {"position": {"minX": 518.0, "minY": 239.375, "maxX": 538.0, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.020538330078125}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 208.625, "maxX": 353.25, "maxY": 232.625}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0202789306640625}, "domain": "pixel"}, {"position": {"minX": 563.0, "minY": 239.125, "maxX": 585.0, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0201568603515625}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 215.125, "maxX": 353.25, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0198211669921875}, "domain": "pixel"}, {"position": {"minX": 565.0, "minY": 239.625, "maxX": 589.0, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.015655517578125}, "domain": "pixel"}, {"position": {"minX": 382.0, "minY": 222.25, "maxX": 397.0, "maxY": 245.75}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01375579833984375}, "domain": "pixel"}, {"position": {"minX": 565.0, "minY": 233.75, "maxX": 594.0, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01373291015625}, "domain": "pixel"}, {"position": {"minX": 385.0, "minY": 209.0, "maxX": 402.0, "maxY": 230.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0137176513671875}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 232.25, "maxX": 587.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0121307373046875}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 218.5, "maxX": 403.75, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0104827880859375}, "domain": "pixel"}, {"position": {"minX": 505.75, "minY": 233.25, "maxX": 539.5, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00977325439453125}, "domain": "pixel"}, {"position": {"minX": 382.75, "minY": 212.25, "maxX": 399.25, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00974273681640625}, "domain": "pixel"}, {"position": {"minX": 223.125, "minY": 185.75, "maxX": 241.625, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00850677490234375}, "domain": "pixel"}, {"position": {"minX": 434.5, "minY": 216.5, "maxX": 460.0, "maxY": 252.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00799560546875}, "domain": "pixel"}, {"position": {"minX": 325.75, "minY": 216.625, "maxX": 347.75, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0067291259765625}, "domain": "pixel"}, {"position": {"minX": 506.5, "minY": 240.625, "maxX": 528.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005859375}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 201.0, "maxX": 348.25, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005859375}, "domain": "pixel"}, {"position": {"minX": 222.25, "minY": 194.0, "maxX": 242.5, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00537109375}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 199.625, "maxX": 238.125, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005290985107421875}, "domain": "pixel"}, {"position": {"minX": 115.4375, "minY": 193.5, "maxX": 132.5, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004878997802734375}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 193.375, "maxX": 306.5, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00484466552734375}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 222.0, "maxX": 401.75, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004657745361328125}, "domain": "pixel"}, {"position": {"minX": 381.0, "minY": 199.125, "maxX": 400.5, "maxY": 234.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004608154296875}, "domain": "pixel"}, {"position": {"minX": 511.5, "minY": 235.0, "maxX": 535.5, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004604339599609375}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 211.875, "maxX": 308.0, "maxY": 237.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004543304443359375}, "domain": "pixel"}, {"position": {"minX": 509.5, "minY": 220.5, "maxX": 534.5, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004039764404296875}, "domain": "pixel"}, {"position": {"minX": 295.25, "minY": 201.25, "maxX": 312.75, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00395965576171875}, "domain": "pixel"}, {"position": {"minX": 446.25, "minY": 229.375, "maxX": 465.75, "maxY": 254.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003955841064453125}, "domain": "pixel"}, {"position": {"minX": 122.75, "minY": 193.75, "maxX": 138.5, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00359344482421875}, "domain": "pixel"}, {"position": {"minX": 233.625, "minY": 200.875, "maxX": 249.625, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035228729248046875}, "domain": "pixel"}, {"position": {"minX": 506.75, "minY": 230.75, "maxX": 528.0, "maxY": 257.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002933502197265625}, "domain": "pixel"}, {"position": {"minX": 589.0, "minY": 207.5, "maxX": 603.0, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027256011962890625}, "domain": "pixel"}, {"position": {"minX": 286.5, "minY": 186.0, "maxX": 307.5, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002490997314453125}, "domain": "pixel"}, {"position": {"minX": 227.125, "minY": 185.5, "maxX": 242.875, "maxY": 208.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002437591552734375}, "domain": "pixel"}, {"position": {"minX": 324.75, "minY": 208.75, "maxX": 347.75, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024013519287109375}, "domain": "pixel"}, {"position": {"minX": 282.75, "minY": 201.75, "maxX": 303.75, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022602081298828125}, "domain": "pixel"}, {"position": {"minX": 123.0625, "minY": 180.375, "maxX": 144.75, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021648406982421875}, "domain": "pixel"}, {"position": {"minX": 515.5, "minY": 222.5, "maxX": 532.5, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002140045166015625}, "domain": "pixel"}, {"position": {"minX": 295.25, "minY": 207.375, "maxX": 313.25, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002124786376953125}, "domain": "pixel"}, {"position": {"minX": 273.0, "minY": 196.875, "maxX": 296.0, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017786026000976562}, "domain": "pixel"}, {"position": {"minX": 436.0, "minY": 218.375, "maxX": 468.5, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017328262329101562}, "domain": "pixel"}, {"position": {"minX": 170.875, "minY": 191.75, "maxX": 187.125, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017156600952148438}, "domain": "pixel"}, {"position": {"minX": 110.625, "minY": 182.0, "maxX": 131.375, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016717910766601562}, "domain": "pixel"}, {"position": {"minX": 496.25, "minY": 18.421875, "maxX": 517.5, "maxY": 49.4375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016307830810546875}, "domain": "pixel"}, {"position": {"minX": 574.5, "minY": 245.5, "maxX": 594.5, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016241073608398438}, "domain": "pixel"}, {"position": {"minX": 564.0, "minY": 247.125, "maxX": 597.0, "maxY": 281.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016155242919921875}, "domain": "pixel"}, {"position": {"minX": 233.625, "minY": 195.5, "maxX": 253.375, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015287399291992188}, "domain": "pixel"}, {"position": {"minX": 285.0, "minY": 204.25, "maxX": 307.5, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015211105346679688}, "domain": "pixel"}, {"position": {"minX": 329.25, "minY": 217.875, "maxX": 357.75, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014886856079101562}, "domain": "pixel"}, {"position": {"minX": 337.25, "minY": 217.875, "maxX": 357.25, "maxY": 237.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014820098876953125}, "domain": "pixel"}, {"position": {"minX": 172.25, "minY": 185.125, "maxX": 187.5, "maxY": 207.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014410018920898438}, "domain": "pixel"}, {"position": {"minX": 170.75, "minY": 179.375, "maxX": 191.0, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014410018920898438}, "domain": "pixel"}, {"position": {"minX": 155.875, "minY": 179.125, "maxX": 177.625, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001361846923828125}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 215.125, "maxX": 467.0, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013208389282226562}, "domain": "pixel"}, {"position": {"minX": 107.6875, "minY": 192.125, "maxX": 125.0625, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013132095336914062}, "domain": "pixel"}, {"position": {"minX": 139.75, "minY": 193.0, "maxX": 155.75, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012884140014648438}, "domain": "pixel"}, {"position": {"minX": 162.25, "minY": 192.25, "maxX": 180.5, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00121307373046875}, "domain": "pixel"}, {"position": {"minX": 379.0, "minY": 201.0, "maxX": 397.0, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012035369873046875}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 200.625, "maxX": 405.25, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011892318725585938}, "domain": "pixel"}, {"position": {"minX": 568.5, "minY": 218.75, "maxX": 595.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011739730834960938}, "domain": "pixel"}, {"position": {"minX": 221.375, "minY": 185.5, "maxX": 238.625, "maxY": 208.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011539459228515625}, "domain": "pixel"}, {"position": {"minX": 328.0, "minY": 200.875, "maxX": 357.5, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011510848999023438}, "domain": "pixel"}, {"position": {"minX": 138.25, "minY": 178.5, "maxX": 161.25, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001148223876953125}, "domain": "pixel"}, {"position": {"minX": 371.75, "minY": 206.75, "maxX": 391.25, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001140594482421875}, "domain": "pixel"}, {"position": {"minX": 281.5, "minY": 202.125, "maxX": 313.5, "maxY": 229.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010509490966796875}, "domain": "pixel"}, {"position": {"minX": 571.5, "minY": 238.125, "maxX": 594.5, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010385513305664062}, "domain": "pixel"}, {"position": {"minX": 232.625, "minY": 181.875, "maxX": 252.375, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001007080078125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_f25b4c1e5a0836da2ce0.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_f25b4c1e5a0836da2ce0.boxes2D.json new file mode 100644 index 0000000..03a9d16 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_29_f25b4c1e5a0836da2ce0.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 444.75, "minY": 224.875, "maxX": 461.25, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.398681640625}, "domain": "pixel"}, {"position": {"minX": 330.5, "minY": 210.25, "maxX": 349.5, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.3662109375}, "domain": "pixel"}, {"position": {"minX": 512.5, "minY": 233.375, "maxX": 530.5, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.363", "scores": {"class_score": 0.36328125}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 202.5, "maxX": 306.0, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.345", "scores": {"class_score": 0.345458984375}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 240.625, "maxX": 585.0, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.285", "scores": {"class_score": 0.284912109375}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 208.0, "maxX": 306.0, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.218", "scores": {"class_score": 0.2178955078125}, "domain": "pixel"}, {"position": {"minX": 382.25, "minY": 217.625, "maxX": 395.75, "maxY": 237.125}, "class_id": 0, "box_caption": "coureur 0.214", "scores": {"class_score": 0.2144775390625}, "domain": "pixel"}, {"position": {"minX": 329.5, "minY": 217.25, "maxX": 350.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.158", "scores": {"class_score": 0.1583251953125}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 200.75, "maxX": 305.0, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.120", "scores": {"class_score": 0.11962890625}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 201.125, "maxX": 240.875, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.090", "scores": {"class_score": 0.08978271484375}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 217.75, "maxX": 460.0, "maxY": 242.25}, "class_id": 0, "box_caption": "coureur 0.075", "scores": {"class_score": 0.07537841796875}, "domain": "pixel"}, {"position": {"minX": 510.75, "minY": 237.625, "maxX": 528.0, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.052", "scores": {"class_score": 0.052093505859375}, "domain": "pixel"}, {"position": {"minX": 327.5, "minY": 216.75, "maxX": 344.0, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.045654296875}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 208.75, "maxX": 395.75, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.045", "scores": {"class_score": 0.045440673828125}, "domain": "pixel"}, {"position": {"minX": 226.125, "minY": 194.5, "maxX": 241.125, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.043", "scores": {"class_score": 0.04302978515625}, "domain": "pixel"}, {"position": {"minX": 335.5, "minY": 215.625, "maxX": 353.0, "maxY": 237.625}, "class_id": 0, "box_caption": "coureur 0.043", "scores": {"class_score": 0.042999267578125}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 240.75, "maxX": 532.5, "maxY": 262.75}, "class_id": 0, "box_caption": "coureur 0.040", "scores": {"class_score": 0.040313720703125}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 232.625, "maxX": 461.25, "maxY": 254.875}, "class_id": 0, "box_caption": "coureur 0.036", "scores": {"class_score": 0.036224365234375}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 222.875, "maxX": 464.0, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.026", "scores": {"class_score": 0.0263214111328125}, "domain": "pixel"}, {"position": {"minX": 223.375, "minY": 196.125, "maxX": 240.625, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.0237884521484375}, "domain": "pixel"}, {"position": {"minX": 381.0, "minY": 221.625, "maxX": 396.5, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.023651123046875}, "domain": "pixel"}, {"position": {"minX": 565.5, "minY": 244.5, "maxX": 584.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.02313232421875}, "domain": "pixel"}, {"position": {"minX": 564.5, "minY": 234.25, "maxX": 593.5, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.020050048828125}, "domain": "pixel"}, {"position": {"minX": 569.5, "minY": 232.75, "maxX": 586.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.019866943359375}, "domain": "pixel"}, {"position": {"minX": 568.5, "minY": 238.375, "maxX": 590.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0175628662109375}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 224.0, "maxX": 530.5, "maxY": 252.25}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0163116455078125}, "domain": "pixel"}, {"position": {"minX": 570.5, "minY": 248.125, "maxX": 587.5, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01441192626953125}, "domain": "pixel"}, {"position": {"minX": 292.75, "minY": 193.875, "maxX": 306.25, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01348876953125}, "domain": "pixel"}, {"position": {"minX": 446.75, "minY": 229.25, "maxX": 466.25, "maxY": 253.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01146697998046875}, "domain": "pixel"}, {"position": {"minX": 164.375, "minY": 193.75, "maxX": 178.875, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01032257080078125}, "domain": "pixel"}, {"position": {"minX": 286.0, "minY": 207.5, "maxX": 305.0, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01003265380859375}, "domain": "pixel"}, {"position": {"minX": 337.0, "minY": 208.125, "maxX": 357.0, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0089874267578125}, "domain": "pixel"}, {"position": {"minX": 380.75, "minY": 201.75, "maxX": 399.75, "maxY": 234.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00859832763671875}, "domain": "pixel"}, {"position": {"minX": 435.5, "minY": 215.0, "maxX": 460.5, "maxY": 251.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00815582275390625}, "domain": "pixel"}, {"position": {"minX": 448.25, "minY": 223.625, "maxX": 469.75, "maxY": 248.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00794219970703125}, "domain": "pixel"}, {"position": {"minX": 220.125, "minY": 202.5, "maxX": 237.875, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007106781005859375}, "domain": "pixel"}, {"position": {"minX": 288.0, "minY": 190.125, "maxX": 306.5, "maxY": 224.125}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00658416748046875}, "domain": "pixel"}, {"position": {"minX": 507.25, "minY": 233.75, "maxX": 537.0, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00649261474609375}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 199.875, "maxX": 349.5, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005702972412109375}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 200.5, "maxX": 313.5, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005329132080078125}, "domain": "pixel"}, {"position": {"minX": 155.875, "minY": 183.0, "maxX": 176.125, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004795074462890625}, "domain": "pixel"}, {"position": {"minX": 220.0, "minY": 193.625, "maxX": 237.75, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004688262939453125}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 218.875, "maxX": 404.0, "maxY": 236.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00400543212890625}, "domain": "pixel"}, {"position": {"minX": 383.0, "minY": 208.25, "maxX": 402.0, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003925323486328125}, "domain": "pixel"}, {"position": {"minX": 323.5, "minY": 207.5, "maxX": 344.0, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003589630126953125}, "domain": "pixel"}, {"position": {"minX": 436.75, "minY": 229.375, "maxX": 457.75, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003299713134765625}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 220.875, "maxX": 594.0, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032558441162109375}, "domain": "pixel"}, {"position": {"minX": 445.75, "minY": 215.25, "maxX": 466.25, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030155181884765625}, "domain": "pixel"}, {"position": {"minX": 226.625, "minY": 204.5, "maxX": 242.625, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028781890869140625}, "domain": "pixel"}, {"position": {"minX": 320.5, "minY": 202.5, "maxX": 346.5, "maxY": 237.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025787353515625}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 211.125, "maxX": 308.0, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025691986083984375}, "domain": "pixel"}, {"position": {"minX": 169.125, "minY": 192.875, "maxX": 186.375, "maxY": 214.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025424957275390625}, "domain": "pixel"}, {"position": {"minX": 273.25, "minY": 25.671875, "maxX": 297.25, "maxY": 65.6875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002536773681640625}, "domain": "pixel"}, {"position": {"minX": 434.25, "minY": 224.25, "maxX": 457.25, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00251007080078125}, "domain": "pixel"}, {"position": {"minX": 437.75, "minY": 218.5, "maxX": 468.75, "maxY": 246.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024204254150390625}, "domain": "pixel"}, {"position": {"minX": 371.75, "minY": 207.125, "maxX": 392.75, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023632049560546875}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 221.75, "maxX": 402.0, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00234222412109375}, "domain": "pixel"}, {"position": {"minX": 325.0, "minY": 201.25, "maxX": 357.5, "maxY": 231.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002300262451171875}, "domain": "pixel"}, {"position": {"minX": 294.25, "minY": 207.25, "maxX": 313.75, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021076202392578125}, "domain": "pixel"}, {"position": {"minX": 157.625, "minY": 195.625, "maxX": 177.875, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002105712890625}, "domain": "pixel"}, {"position": {"minX": 155.5, "minY": 191.5, "maxX": 173.5, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002101898193359375}, "domain": "pixel"}, {"position": {"minX": 372.75, "minY": 215.5, "maxX": 394.75, "maxY": 240.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002079010009765625}, "domain": "pixel"}, {"position": {"minX": 165.0, "minY": 199.375, "maxX": 179.5, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020618438720703125}, "domain": "pixel"}, {"position": {"minX": 283.25, "minY": 202.375, "maxX": 312.25, "maxY": 229.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018777847290039062}, "domain": "pixel"}, {"position": {"minX": 285.5, "minY": 203.375, "maxX": 307.5, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018310546875}, "domain": "pixel"}, {"position": {"minX": 564.0, "minY": 230.25, "maxX": 583.0, "maxY": 257.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017347335815429688}, "domain": "pixel"}, {"position": {"minX": 434.75, "minY": 222.0, "maxX": 462.25, "maxY": 260.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001708984375}, "domain": "pixel"}, {"position": {"minX": 324.25, "minY": 220.0, "maxX": 342.75, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001651763916015625}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 230.875, "maxX": 538.0, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00162506103515625}, "domain": "pixel"}, {"position": {"minX": 220.25, "minY": 204.875, "maxX": 237.75, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016193389892578125}, "domain": "pixel"}, {"position": {"minX": 555.0, "minY": 231.0, "maxX": 595.0, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015554428100585938}, "domain": "pixel"}, {"position": {"minX": 508.0, "minY": 223.0, "maxX": 526.0, "maxY": 249.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001434326171875}, "domain": "pixel"}, {"position": {"minX": 378.5, "minY": 198.25, "maxX": 396.0, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014123916625976562}, "domain": "pixel"}, {"position": {"minX": 442.75, "minY": 198.5, "maxX": 464.75, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013599395751953125}, "domain": "pixel"}, {"position": {"minX": 125.375, "minY": 180.25, "maxX": 144.125, "maxY": 213.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013456344604492188}, "domain": "pixel"}, {"position": {"minX": 509.5, "minY": 232.25, "maxX": 533.5, "maxY": 276.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013256072998046875}, "domain": "pixel"}, {"position": {"minX": 275.5, "minY": 38.5, "maxX": 293.5, "maxY": 65.1875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013189315795898438}, "domain": "pixel"}, {"position": {"minX": 501.0, "minY": 227.375, "maxX": 526.0, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012960433959960938}, "domain": "pixel"}, {"position": {"minX": 373.5, "minY": 199.75, "maxX": 391.0, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012569427490234375}, "domain": "pixel"}, {"position": {"minX": 513.0, "minY": 215.5, "maxX": 541.0, "maxY": 255.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012464523315429688}, "domain": "pixel"}, {"position": {"minX": 139.75, "minY": 179.75, "maxX": 163.25, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012302398681640625}, "domain": "pixel"}, {"position": {"minX": 507.0, "minY": 241.375, "maxX": 528.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012006759643554688}, "domain": "pixel"}, {"position": {"minX": 274.5, "minY": 197.0, "maxX": 298.0, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011224746704101562}, "domain": "pixel"}, {"position": {"minX": 231.25, "minY": 195.125, "maxX": 252.0, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010404586791992188}, "domain": "pixel"}, {"position": {"minX": 326.25, "minY": 216.875, "maxX": 358.25, "maxY": 247.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010404586791992188}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_11a35ac9d59bb3937991.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_11a35ac9d59bb3937991.boxes2D.json new file mode 100644 index 0000000..96c66db --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_11a35ac9d59bb3937991.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 455.0, "minY": 232.625, "maxX": 477.5, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.378173828125}, "domain": "pixel"}, {"position": {"minX": 530.5, "minY": 241.5, "maxX": 549.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 251.375, "maxX": 607.0, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.35302734375}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 209.75, "maxX": 320.0, "maxY": 236.5}, "class_id": 0, "box_caption": "coureur 0.333", "scores": {"class_score": 0.333251953125}, "domain": "pixel"}, {"position": {"minX": 344.5, "minY": 216.125, "maxX": 364.0, "maxY": 245.375}, "class_id": 0, "box_caption": "coureur 0.330", "scores": {"class_score": 0.330078125}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 202.375, "maxX": 247.75, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.300", "scores": {"class_score": 0.300048828125}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 226.5, "maxX": 414.0, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.281", "scores": {"class_score": 0.281494140625}, "domain": "pixel"}, {"position": {"minX": 165.25, "minY": 200.375, "maxX": 182.5, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.075", "scores": {"class_score": 0.0753173828125}, "domain": "pixel"}, {"position": {"minX": 161.625, "minY": 194.75, "maxX": 180.875, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01458740234375}, "domain": "pixel"}, {"position": {"minX": 228.75, "minY": 195.875, "maxX": 246.5, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01126861572265625}, "domain": "pixel"}, {"position": {"minX": 168.625, "minY": 197.0, "maxX": 184.625, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0085601806640625}, "domain": "pixel"}, {"position": {"minX": 157.25, "minY": 199.875, "maxX": 175.25, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00829315185546875}, "domain": "pixel"}, {"position": {"minX": 399.75, "minY": 219.125, "maxX": 416.75, "maxY": 244.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007465362548828125}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 222.75, "maxX": 411.75, "maxY": 249.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0061187744140625}, "domain": "pixel"}, {"position": {"minX": 533.0, "minY": 234.5, "maxX": 548.0, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0056610107421875}, "domain": "pixel"}, {"position": {"minX": 347.25, "minY": 211.5, "maxX": 362.25, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005268096923828125}, "domain": "pixel"}, {"position": {"minX": 589.0, "minY": 255.25, "maxX": 610.0, "maxY": 280.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005077362060546875}, "domain": "pixel"}, {"position": {"minX": 234.0, "minY": 210.625, "maxX": 249.0, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0049285888671875}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 224.875, "maxX": 361.75, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0042266845703125}, "domain": "pixel"}, {"position": {"minX": 347.5, "minY": 215.5, "maxX": 369.5, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037059783935546875}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 204.375, "maxX": 185.5, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003520965576171875}, "domain": "pixel"}, {"position": {"minX": 157.625, "minY": 198.25, "maxX": 184.875, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034542083740234375}, "domain": "pixel"}, {"position": {"minX": 458.75, "minY": 226.25, "maxX": 474.75, "maxY": 255.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003452301025390625}, "domain": "pixel"}, {"position": {"minX": 150.0, "minY": 194.5, "maxX": 166.75, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032138824462890625}, "domain": "pixel"}, {"position": {"minX": 392.75, "minY": 226.25, "maxX": 417.75, "maxY": 253.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003025054931640625}, "domain": "pixel"}, {"position": {"minX": 224.125, "minY": 201.125, "maxX": 242.875, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00289154052734375}, "domain": "pixel"}, {"position": {"minX": 296.75, "minY": 206.5, "maxX": 316.75, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002727508544921875}, "domain": "pixel"}, {"position": {"minX": 226.75, "minY": 205.0, "maxX": 249.0, "maxY": 235.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00189208984375}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 204.75, "maxX": 316.75, "maxY": 229.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018320083618164062}, "domain": "pixel"}, {"position": {"minX": 150.0, "minY": 201.625, "maxX": 164.75, "maxY": 219.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016603469848632812}, "domain": "pixel"}, {"position": {"minX": 460.0, "minY": 237.75, "maxX": 481.5, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016031265258789062}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 242.125, "maxX": 605.0, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00157928466796875}, "domain": "pixel"}, {"position": {"minX": 597.5, "minY": 215.25, "maxX": 615.5, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00122833251953125}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 213.0, "maxX": 245.25, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011911392211914062}, "domain": "pixel"}, {"position": {"minX": 583.0, "minY": 249.625, "maxX": 601.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001148223876953125}, "domain": "pixel"}, {"position": {"minX": 618.5, "minY": 227.875, "maxX": 635.5, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010633468627929688}, "domain": "pixel"}, {"position": {"minX": 391.5, "minY": 230.0, "maxX": 410.5, "maxY": 254.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00102996826171875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_15d922827c88c4f2d4b2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_15d922827c88c4f2d4b2.boxes2D.json new file mode 100644 index 0000000..02f2b9f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_15d922827c88c4f2d4b2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 331.0, "minY": 207.5, "maxX": 351.5, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.402587890625}, "domain": "pixel"}, {"position": {"minX": 289.25, "minY": 200.25, "maxX": 309.25, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.402099609375}, "domain": "pixel"}, {"position": {"minX": 439.75, "minY": 221.125, "maxX": 463.75, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.386", "scores": {"class_score": 0.38623046875}, "domain": "pixel"}, {"position": {"minX": 511.0, "minY": 231.0, "maxX": 531.0, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.360", "scores": {"class_score": 0.3603515625}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 216.75, "maxX": 398.25, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.310", "scores": {"class_score": 0.31005859375}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 237.125, "maxX": 586.0, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.309", "scores": {"class_score": 0.30908203125}, "domain": "pixel"}, {"position": {"minX": 225.875, "minY": 192.625, "maxX": 245.875, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.280", "scores": {"class_score": 0.2802734375}, "domain": "pixel"}, {"position": {"minX": 162.0, "minY": 188.75, "maxX": 182.0, "maxY": 209.75}, "class_id": 0, "box_caption": "coureur 0.214", "scores": {"class_score": 0.2137451171875}, "domain": "pixel"}, {"position": {"minX": 228.375, "minY": 187.625, "maxX": 243.125, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.032", "scores": {"class_score": 0.0321044921875}, "domain": "pixel"}, {"position": {"minX": 168.375, "minY": 192.5, "maxX": 183.625, "maxY": 211.75}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.0308380126953125}, "domain": "pixel"}, {"position": {"minX": 101.75, "minY": 187.75, "maxX": 113.5, "maxY": 206.75}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0247802734375}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 227.5, "maxX": 530.0, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017669677734375}, "domain": "pixel"}, {"position": {"minX": 231.625, "minY": 199.25, "maxX": 250.375, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01352691650390625}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 210.375, "maxX": 399.75, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0123443603515625}, "domain": "pixel"}, {"position": {"minX": 159.0, "minY": 187.625, "maxX": 176.75, "maxY": 208.375}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01189422607421875}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 216.5, "maxX": 401.75, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01039886474609375}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 219.625, "maxX": 399.75, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00971221923828125}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 202.625, "maxX": 354.75, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00922393798828125}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 201.5, "maxX": 312.5, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00894927978515625}, "domain": "pixel"}, {"position": {"minX": 326.75, "minY": 208.625, "maxX": 346.25, "maxY": 233.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00522613525390625}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 195.375, "maxX": 306.5, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005199432373046875}, "domain": "pixel"}, {"position": {"minX": 503.5, "minY": 230.25, "maxX": 527.5, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004161834716796875}, "domain": "pixel"}, {"position": {"minX": 342.0, "minY": 199.625, "maxX": 361.5, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038890838623046875}, "domain": "pixel"}, {"position": {"minX": 621.5, "minY": 206.0, "maxX": 639.5, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002960205078125}, "domain": "pixel"}, {"position": {"minX": 223.5, "minY": 196.25, "maxX": 241.0, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00279998779296875}, "domain": "pixel"}, {"position": {"minX": 375.25, "minY": 212.625, "maxX": 395.75, "maxY": 240.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027713775634765625}, "domain": "pixel"}, {"position": {"minX": 162.875, "minY": 179.25, "maxX": 181.375, "maxY": 206.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002658843994140625}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 212.125, "maxX": 352.25, "maxY": 234.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026397705078125}, "domain": "pixel"}, {"position": {"minX": 354.0, "minY": 191.375, "maxX": 370.5, "maxY": 219.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00225067138671875}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 229.0, "maxX": 587.0, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001995086669921875}, "domain": "pixel"}, {"position": {"minX": 99.375, "minY": 184.75, "maxX": 113.625, "maxY": 211.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018892288208007812}, "domain": "pixel"}, {"position": {"minX": 101.375, "minY": 179.625, "maxX": 115.125, "maxY": 203.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018167495727539062}, "domain": "pixel"}, {"position": {"minX": 379.75, "minY": 201.0, "maxX": 397.25, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017995834350585938}, "domain": "pixel"}, {"position": {"minX": 336.5, "minY": 197.5, "maxX": 351.0, "maxY": 226.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001739501953125}, "domain": "pixel"}, {"position": {"minX": 627.0, "minY": 209.5, "maxX": 642.0, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001728057861328125}, "domain": "pixel"}, {"position": {"minX": 564.5, "minY": 242.5, "maxX": 583.5, "maxY": 267.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017108917236328125}, "domain": "pixel"}, {"position": {"minX": 542.0, "minY": 202.125, "maxX": 556.0, "maxY": 225.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015659332275390625}, "domain": "pixel"}, {"position": {"minX": 165.125, "minY": 184.75, "maxX": 187.625, "maxY": 212.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014410018920898438}, "domain": "pixel"}, {"position": {"minX": 626.5, "minY": 212.75, "maxX": 644.5, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013208389282226562}, "domain": "pixel"}, {"position": {"minX": 506.5, "minY": 225.625, "maxX": 534.5, "maxY": 255.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013036727905273438}, "domain": "pixel"}, {"position": {"minX": 287.25, "minY": 202.875, "maxX": 304.75, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001194000244140625}, "domain": "pixel"}, {"position": {"minX": 326.75, "minY": 209.0, "maxX": 355.75, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011043548583984375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_41e985e88aca632ce1d5.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_41e985e88aca632ce1d5.boxes2D.json new file mode 100644 index 0000000..317476e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_41e985e88aca632ce1d5.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 526.0, "minY": 239.25, "maxX": 551.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.383", "scores": {"class_score": 0.38330078125}, "domain": "pixel"}, {"position": {"minX": 234.875, "minY": 201.125, "maxX": 252.875, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.370", "scores": {"class_score": 0.370361328125}, "domain": "pixel"}, {"position": {"minX": 343.5, "minY": 217.0, "maxX": 365.0, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.333", "scores": {"class_score": 0.3330078125}, "domain": "pixel"}, {"position": {"minX": 456.0, "minY": 231.875, "maxX": 473.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.327", "scores": {"class_score": 0.3271484375}, "domain": "pixel"}, {"position": {"minX": 584.5, "minY": 249.0, "maxX": 604.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.309", "scores": {"class_score": 0.309326171875}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 212.75, "maxX": 318.0, "maxY": 236.5}, "class_id": 0, "box_caption": "coureur 0.309", "scores": {"class_score": 0.30859375}, "domain": "pixel"}, {"position": {"minX": 395.5, "minY": 226.0, "maxX": 411.5, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.300", "scores": {"class_score": 0.30029296875}, "domain": "pixel"}, {"position": {"minX": 173.0, "minY": 196.5, "maxX": 189.0, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.137", "scores": {"class_score": 0.136962890625}, "domain": "pixel"}, {"position": {"minX": 138.0, "minY": 195.25, "maxX": 154.5, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.109", "scores": {"class_score": 0.10919189453125}, "domain": "pixel"}, {"position": {"minX": 177.375, "minY": 199.875, "maxX": 192.625, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0254364013671875}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 204.375, "maxX": 317.25, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.016448974609375}, "domain": "pixel"}, {"position": {"minX": 530.0, "minY": 235.5, "maxX": 548.0, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01543426513671875}, "domain": "pixel"}, {"position": {"minX": 298.25, "minY": 211.25, "maxX": 321.25, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00971221923828125}, "domain": "pixel"}, {"position": {"minX": 231.25, "minY": 204.75, "maxX": 248.5, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00839996337890625}, "domain": "pixel"}, {"position": {"minX": 458.25, "minY": 227.375, "maxX": 473.25, "maxY": 253.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00817108154296875}, "domain": "pixel"}, {"position": {"minX": 135.5, "minY": 190.0, "maxX": 151.5, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0079345703125}, "domain": "pixel"}, {"position": {"minX": 301.75, "minY": 218.25, "maxX": 316.25, "maxY": 242.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007030487060546875}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 228.75, "maxX": 409.5, "maxY": 253.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0068511962890625}, "domain": "pixel"}, {"position": {"minX": 167.125, "minY": 193.5, "maxX": 185.125, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0058135986328125}, "domain": "pixel"}, {"position": {"minX": 495.25, "minY": 213.875, "maxX": 511.75, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005481719970703125}, "domain": "pixel"}, {"position": {"minX": 492.5, "minY": 216.75, "maxX": 509.0, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004878997802734375}, "domain": "pixel"}, {"position": {"minX": 346.0, "minY": 211.375, "maxX": 362.5, "maxY": 238.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004425048828125}, "domain": "pixel"}, {"position": {"minX": 350.5, "minY": 223.375, "maxX": 368.0, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003459930419921875}, "domain": "pixel"}, {"position": {"minX": 497.75, "minY": 207.75, "maxX": 512.5, "maxY": 235.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00341033935546875}, "domain": "pixel"}, {"position": {"minX": 297.5, "minY": 207.5, "maxX": 316.0, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00339508056640625}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 226.375, "maxX": 417.0, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030078887939453125}, "domain": "pixel"}, {"position": {"minX": 239.0, "minY": 205.25, "maxX": 256.0, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002788543701171875}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 245.25, "maxX": 602.0, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00252532958984375}, "domain": "pixel"}, {"position": {"minX": 138.875, "minY": 187.875, "maxX": 155.875, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024585723876953125}, "domain": "pixel"}, {"position": {"minX": 227.5, "minY": 198.375, "maxX": 253.5, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023593902587890625}, "domain": "pixel"}, {"position": {"minX": 529.0, "minY": 241.25, "maxX": 556.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021686553955078125}, "domain": "pixel"}, {"position": {"minX": 172.125, "minY": 186.875, "maxX": 188.625, "maxY": 213.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019407272338867188}, "domain": "pixel"}, {"position": {"minX": 523.5, "minY": 242.75, "maxX": 545.5, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018024444580078125}, "domain": "pixel"}, {"position": {"minX": 345.25, "minY": 219.875, "maxX": 367.25, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016574859619140625}, "domain": "pixel"}, {"position": {"minX": 168.625, "minY": 188.0, "maxX": 193.625, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014362335205078125}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 214.5, "maxX": 413.5, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013837814331054688}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 187.75, "maxX": 181.875, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013256072998046875}, "domain": "pixel"}, {"position": {"minX": 169.125, "minY": 197.0, "maxX": 195.875, "maxY": 224.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012960433959960938}, "domain": "pixel"}, {"position": {"minX": 143.25, "minY": 195.25, "maxX": 160.0, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011529922485351562}, "domain": "pixel"}, {"position": {"minX": 132.5, "minY": 194.625, "maxX": 152.75, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011396408081054688}, "domain": "pixel"}, {"position": {"minX": 133.75, "minY": 199.0, "maxX": 149.75, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010280609130859375}, "domain": "pixel"}, {"position": {"minX": 583.0, "minY": 250.625, "maxX": 608.0, "maxY": 285.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010213851928710938}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_598a40d5faafb013bc9f.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_598a40d5faafb013bc9f.boxes2D.json new file mode 100644 index 0000000..eeb5291 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_598a40d5faafb013bc9f.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 448.5, "minY": 232.75, "maxX": 468.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.398193359375}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 240.375, "maxX": 544.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.359130859375}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 249.125, "maxX": 598.5, "maxY": 278.5}, "class_id": 0, "box_caption": "coureur 0.326", "scores": {"class_score": 0.32568359375}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 209.25, "maxX": 311.0, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.316", "scores": {"class_score": 0.31591796875}, "domain": "pixel"}, {"position": {"minX": 335.0, "minY": 215.25, "maxX": 354.5, "maxY": 245.25}, "class_id": 0, "box_caption": "coureur 0.289", "scores": {"class_score": 0.288818359375}, "domain": "pixel"}, {"position": {"minX": 386.0, "minY": 225.25, "maxX": 405.5, "maxY": 249.25}, "class_id": 0, "box_caption": "coureur 0.282", "scores": {"class_score": 0.2822265625}, "domain": "pixel"}, {"position": {"minX": 218.25, "minY": 205.0, "maxX": 234.25, "maxY": 228.25}, "class_id": 0, "box_caption": "coureur 0.251", "scores": {"class_score": 0.25146484375}, "domain": "pixel"}, {"position": {"minX": 157.375, "minY": 203.0, "maxX": 173.625, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.138", "scores": {"class_score": 0.1375732421875}, "domain": "pixel"}, {"position": {"minX": 213.625, "minY": 202.125, "maxX": 232.625, "maxY": 225.375}, "class_id": 0, "box_caption": "coureur 0.072", "scores": {"class_score": 0.0723876953125}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 220.125, "maxX": 404.5, "maxY": 245.125}, "class_id": 0, "box_caption": "coureur 0.032", "scores": {"class_score": 0.031646728515625}, "domain": "pixel"}, {"position": {"minX": 160.75, "minY": 196.0, "maxX": 177.0, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0196685791015625}, "domain": "pixel"}, {"position": {"minX": 381.75, "minY": 229.0, "maxX": 402.75, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0174102783203125}, "domain": "pixel"}, {"position": {"minX": 523.0, "minY": 234.625, "maxX": 542.0, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01346588134765625}, "domain": "pixel"}, {"position": {"minX": 219.875, "minY": 211.0, "maxX": 233.875, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01023101806640625}, "domain": "pixel"}, {"position": {"minX": 221.75, "minY": 203.5, "maxX": 241.25, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0100860595703125}, "domain": "pixel"}, {"position": {"minX": 152.625, "minY": 202.25, "maxX": 168.875, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00786590576171875}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 203.875, "maxX": 308.0, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00689697265625}, "domain": "pixel"}, {"position": {"minX": 212.0, "minY": 195.0, "maxX": 230.75, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00618743896484375}, "domain": "pixel"}, {"position": {"minX": 579.5, "minY": 242.125, "maxX": 596.5, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005748748779296875}, "domain": "pixel"}, {"position": {"minX": 451.5, "minY": 227.125, "maxX": 466.5, "maxY": 254.875}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005641937255859375}, "domain": "pixel"}, {"position": {"minX": 153.875, "minY": 199.75, "maxX": 179.125, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005161285400390625}, "domain": "pixel"}, {"position": {"minX": 288.25, "minY": 208.0, "maxX": 307.75, "maxY": 233.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003993988037109375}, "domain": "pixel"}, {"position": {"minX": 216.875, "minY": 195.875, "maxX": 236.125, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00362396240234375}, "domain": "pixel"}, {"position": {"minX": 452.0, "minY": 237.875, "maxX": 472.5, "maxY": 264.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002376556396484375}, "domain": "pixel"}, {"position": {"minX": 328.5, "minY": 217.0, "maxX": 349.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002368927001953125}, "domain": "pixel"}, {"position": {"minX": 161.25, "minY": 204.0, "maxX": 177.0, "maxY": 227.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020599365234375}, "domain": "pixel"}, {"position": {"minX": 167.875, "minY": 199.625, "maxX": 184.875, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020351409912109375}, "domain": "pixel"}, {"position": {"minX": 643.0, "minY": 216.75, "maxX": 662.0, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017719268798828125}, "domain": "pixel"}, {"position": {"minX": 338.5, "minY": 210.75, "maxX": 353.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016412734985351562}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 225.25, "maxX": 350.25, "maxY": 251.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00162506103515625}, "domain": "pixel"}, {"position": {"minX": 439.5, "minY": 230.875, "maxX": 463.5, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00154876708984375}, "domain": "pixel"}, {"position": {"minX": 297.5, "minY": 218.625, "maxX": 313.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014104843139648438}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 243.75, "maxX": 540.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012111663818359375}, "domain": "pixel"}, {"position": {"minX": 380.0, "minY": 234.75, "maxX": 398.5, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001194000244140625}, "domain": "pixel"}, {"position": {"minX": 386.5, "minY": 221.125, "maxX": 412.0, "maxY": 251.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011930465698242188}, "domain": "pixel"}, {"position": {"minX": 386.25, "minY": 213.5, "maxX": 402.75, "maxY": 242.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011539459228515625}, "domain": "pixel"}, {"position": {"minX": 581.0, "minY": 254.875, "maxX": 602.0, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010166168212890625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5ca27e8b8736ffb32cd8.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5ca27e8b8736ffb32cd8.boxes2D.json new file mode 100644 index 0000000..c344d27 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5ca27e8b8736ffb32cd8.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 231.75, "minY": 201.375, "maxX": 251.75, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.419677734375}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 252.75, "maxX": 606.5, "maxY": 278.25}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.397705078125}, "domain": "pixel"}, {"position": {"minX": 458.5, "minY": 236.0, "maxX": 474.5, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.354", "scores": {"class_score": 0.35400390625}, "domain": "pixel"}, {"position": {"minX": 528.0, "minY": 240.375, "maxX": 555.0, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.342529296875}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 227.5, "maxX": 413.5, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.317", "scores": {"class_score": 0.3173828125}, "domain": "pixel"}, {"position": {"minX": 304.0, "minY": 214.0, "maxX": 319.0, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.303", "scores": {"class_score": 0.302978515625}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 217.5, "maxX": 367.25, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.286", "scores": {"class_score": 0.286376953125}, "domain": "pixel"}, {"position": {"minX": 348.75, "minY": 223.0, "maxX": 368.75, "maxY": 246.75}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0300140380859375}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 223.5, "maxX": 415.75, "maxY": 251.25}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.0211944580078125}, "domain": "pixel"}, {"position": {"minX": 653.0, "minY": 226.5, "maxX": 667.0, "maxY": 249.0}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0184783935546875}, "domain": "pixel"}, {"position": {"minX": 300.5, "minY": 212.875, "maxX": 322.5, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.012664794921875}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 220.75, "maxX": 412.5, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01171112060546875}, "domain": "pixel"}, {"position": {"minX": 234.0, "minY": 194.75, "maxX": 250.75, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01136016845703125}, "domain": "pixel"}, {"position": {"minX": 459.75, "minY": 226.75, "maxX": 475.25, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.010772705078125}, "domain": "pixel"}, {"position": {"minX": 172.0, "minY": 199.125, "maxX": 189.25, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00882720947265625}, "domain": "pixel"}, {"position": {"minX": 177.5, "minY": 199.625, "maxX": 192.5, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00814056396484375}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 208.875, "maxX": 365.75, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007843017578125}, "domain": "pixel"}, {"position": {"minX": 157.875, "minY": 199.875, "maxX": 172.625, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007808685302734375}, "domain": "pixel"}, {"position": {"minX": 454.5, "minY": 233.0, "maxX": 477.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00724029541015625}, "domain": "pixel"}, {"position": {"minX": 211.75, "minY": 202.0, "maxX": 226.25, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007228851318359375}, "domain": "pixel"}, {"position": {"minX": 302.25, "minY": 218.75, "maxX": 317.25, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006122589111328125}, "domain": "pixel"}, {"position": {"minX": 532.0, "minY": 234.625, "maxX": 551.0, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00577545166015625}, "domain": "pixel"}, {"position": {"minX": 160.25, "minY": 197.75, "maxX": 178.0, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005008697509765625}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 230.375, "maxX": 417.5, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0045013427734375}, "domain": "pixel"}, {"position": {"minX": 133.875, "minY": 194.0, "maxX": 150.125, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038967132568359375}, "domain": "pixel"}, {"position": {"minX": 138.625, "minY": 195.625, "maxX": 155.375, "maxY": 216.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030994415283203125}, "domain": "pixel"}, {"position": {"minX": 174.625, "minY": 190.625, "maxX": 190.125, "maxY": 218.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003021240234375}, "domain": "pixel"}, {"position": {"minX": 400.0, "minY": 218.5, "maxX": 417.0, "maxY": 245.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029850006103515625}, "domain": "pixel"}, {"position": {"minX": 459.75, "minY": 231.875, "maxX": 480.25, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00255584716796875}, "domain": "pixel"}, {"position": {"minX": 208.0, "minY": 201.125, "maxX": 223.0, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024852752685546875}, "domain": "pixel"}, {"position": {"minX": 458.75, "minY": 242.5, "maxX": 474.25, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002483367919921875}, "domain": "pixel"}, {"position": {"minX": 652.0, "minY": 226.125, "maxX": 671.0, "maxY": 258.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023097991943359375}, "domain": "pixel"}, {"position": {"minX": 342.25, "minY": 222.125, "maxX": 362.25, "maxY": 245.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002208709716796875}, "domain": "pixel"}, {"position": {"minX": 229.5, "minY": 195.875, "maxX": 247.5, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018177032470703125}, "domain": "pixel"}, {"position": {"minX": 296.25, "minY": 213.125, "maxX": 315.75, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017251968383789062}, "domain": "pixel"}, {"position": {"minX": 305.5, "minY": 202.0, "maxX": 322.5, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001697540283203125}, "domain": "pixel"}, {"position": {"minX": 238.25, "minY": 202.25, "maxX": 256.5, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014476776123046875}, "domain": "pixel"}, {"position": {"minX": 296.0, "minY": 206.5, "maxX": 314.0, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012865066528320312}, "domain": "pixel"}, {"position": {"minX": 592.5, "minY": 249.5, "maxX": 615.5, "maxY": 280.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011892318725585938}, "domain": "pixel"}, {"position": {"minX": 232.875, "minY": 204.125, "maxX": 254.625, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011701583862304688}, "domain": "pixel"}, {"position": {"minX": 580.5, "minY": 254.5, "maxX": 603.5, "maxY": 281.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010995864868164062}, "domain": "pixel"}, {"position": {"minX": 652.5, "minY": 217.625, "maxX": 667.5, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010900497436523438}, "domain": "pixel"}, {"position": {"minX": 144.75, "minY": 189.5, "maxX": 162.25, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010309219360351562}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 231.625, "maxX": 412.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010251998901367188}, "domain": "pixel"}, {"position": {"minX": 305.75, "minY": 222.0, "maxX": 321.75, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001003265380859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5dce485ce8bc78853a96.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5dce485ce8bc78853a96.boxes2D.json new file mode 100644 index 0000000..45733fe --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5dce485ce8bc78853a96.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 587.5, "minY": 250.75, "maxX": 605.5, "maxY": 277.75}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.38818359375}, "domain": "pixel"}, {"position": {"minX": 344.0, "minY": 215.625, "maxX": 366.0, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.377685546875}, "domain": "pixel"}, {"position": {"minX": 233.0, "minY": 200.0, "maxX": 253.25, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.373", "scores": {"class_score": 0.37255859375}, "domain": "pixel"}, {"position": {"minX": 457.25, "minY": 233.0, "maxX": 478.25, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.37109375}, "domain": "pixel"}, {"position": {"minX": 531.5, "minY": 243.75, "maxX": 551.5, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.360", "scores": {"class_score": 0.359619140625}, "domain": "pixel"}, {"position": {"minX": 304.0, "minY": 210.875, "maxX": 324.0, "maxY": 234.875}, "class_id": 0, "box_caption": "coureur 0.334", "scores": {"class_score": 0.333984375}, "domain": "pixel"}, {"position": {"minX": 398.75, "minY": 227.25, "maxX": 414.75, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.317", "scores": {"class_score": 0.3173828125}, "domain": "pixel"}, {"position": {"minX": 235.5, "minY": 197.375, "maxX": 251.5, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.056", "scores": {"class_score": 0.0560302734375}, "domain": "pixel"}, {"position": {"minX": 173.75, "minY": 196.375, "maxX": 193.5, "maxY": 220.625}, "class_id": 0, "box_caption": "coureur 0.049", "scores": {"class_score": 0.049407958984375}, "domain": "pixel"}, {"position": {"minX": 171.75, "minY": 199.25, "maxX": 188.0, "maxY": 220.25}, "class_id": 0, "box_caption": "coureur 0.045", "scores": {"class_score": 0.045166015625}, "domain": "pixel"}, {"position": {"minX": 185.125, "minY": 197.375, "maxX": 202.875, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.037", "scores": {"class_score": 0.037200927734375}, "domain": "pixel"}, {"position": {"minX": 347.25, "minY": 211.125, "maxX": 363.75, "maxY": 239.625}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0218048095703125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 223.125, "maxX": 417.0, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0195159912109375}, "domain": "pixel"}, {"position": {"minX": 177.125, "minY": 197.625, "maxX": 198.875, "maxY": 216.625}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.01702880859375}, "domain": "pixel"}, {"position": {"minX": 114.8125, "minY": 194.75, "maxX": 132.25, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0160675048828125}, "domain": "pixel"}, {"position": {"minX": 168.125, "minY": 200.875, "maxX": 183.875, "maxY": 222.875}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0141448974609375}, "domain": "pixel"}, {"position": {"minX": 308.0, "minY": 208.75, "maxX": 329.5, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.012939453125}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 255.375, "maxX": 604.0, "maxY": 284.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01183319091796875}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 221.25, "maxX": 413.25, "maxY": 243.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.011627197265625}, "domain": "pixel"}, {"position": {"minX": 460.25, "minY": 226.875, "maxX": 475.75, "maxY": 255.125}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01145172119140625}, "domain": "pixel"}, {"position": {"minX": 342.5, "minY": 221.75, "maxX": 361.5, "maxY": 245.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01068115234375}, "domain": "pixel"}, {"position": {"minX": 400.25, "minY": 219.25, "maxX": 417.25, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00856781005859375}, "domain": "pixel"}, {"position": {"minX": 193.625, "minY": 200.625, "maxX": 207.125, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007648468017578125}, "domain": "pixel"}, {"position": {"minX": 237.0, "minY": 205.125, "maxX": 256.25, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0072479248046875}, "domain": "pixel"}, {"position": {"minX": 401.25, "minY": 230.375, "maxX": 417.25, "maxY": 249.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00632476806640625}, "domain": "pixel"}, {"position": {"minX": 110.5, "minY": 190.875, "maxX": 128.125, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00629425048828125}, "domain": "pixel"}, {"position": {"minX": 229.875, "minY": 204.25, "maxX": 249.875, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032939910888671875}, "domain": "pixel"}, {"position": {"minX": 306.5, "minY": 205.0, "maxX": 323.5, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003269195556640625}, "domain": "pixel"}, {"position": {"minX": 121.5, "minY": 195.375, "maxX": 139.0, "maxY": 216.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002979278564453125}, "domain": "pixel"}, {"position": {"minX": 550.0, "minY": 216.25, "maxX": 567.0, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028820037841796875}, "domain": "pixel"}, {"position": {"minX": 589.0, "minY": 242.75, "maxX": 605.0, "maxY": 272.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026092529296875}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 205.375, "maxX": 312.5, "maxY": 231.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023441314697265625}, "domain": "pixel"}, {"position": {"minX": 310.0, "minY": 213.75, "maxX": 327.5, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023403167724609375}, "domain": "pixel"}, {"position": {"minX": 462.25, "minY": 238.375, "maxX": 481.25, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022754669189453125}, "domain": "pixel"}, {"position": {"minX": 275.5, "minY": 201.0, "maxX": 290.5, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002162933349609375}, "domain": "pixel"}, {"position": {"minX": 235.0, "minY": 208.5, "maxX": 252.25, "maxY": 235.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001972198486328125}, "domain": "pixel"}, {"position": {"minX": 192.25, "minY": 195.75, "maxX": 208.0, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019054412841796875}, "domain": "pixel"}, {"position": {"minX": 533.0, "minY": 234.0, "maxX": 549.0, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018825531005859375}, "domain": "pixel"}, {"position": {"minX": 166.0, "minY": 195.625, "maxX": 184.0, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017652511596679688}, "domain": "pixel"}, {"position": {"minX": 171.125, "minY": 203.875, "maxX": 186.125, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017223358154296875}, "domain": "pixel"}, {"position": {"minX": 580.5, "minY": 249.25, "maxX": 608.5, "maxY": 280.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017156600952148438}, "domain": "pixel"}, {"position": {"minX": 555.0, "minY": 215.625, "maxX": 570.0, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013990402221679688}, "domain": "pixel"}, {"position": {"minX": 169.125, "minY": 189.875, "maxX": 200.375, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013408660888671875}, "domain": "pixel"}, {"position": {"minX": 391.75, "minY": 224.625, "maxX": 411.25, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012083053588867188}, "domain": "pixel"}, {"position": {"minX": 129.875, "minY": 194.5, "maxX": 145.625, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011997222900390625}, "domain": "pixel"}, {"position": {"minX": 307.0, "minY": 217.0, "maxX": 322.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010995864868164062}, "domain": "pixel"}, {"position": {"minX": 124.875, "minY": 189.125, "maxX": 139.125, "maxY": 213.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010318756103515625}, "domain": "pixel"}, {"position": {"minX": 110.125, "minY": 189.25, "maxX": 124.375, "maxY": 209.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010213851928710938}, "domain": "pixel"}, {"position": {"minX": 593.5, "minY": 248.75, "maxX": 615.5, "maxY": 280.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010166168212890625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5e9dabfe97b02866a5e8.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5e9dabfe97b02866a5e8.boxes2D.json new file mode 100644 index 0000000..083416b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_5e9dabfe97b02866a5e8.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 332.5, "minY": 213.5, "maxX": 347.5, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.418", "scores": {"class_score": 0.417724609375}, "domain": "pixel"}, {"position": {"minX": 441.5, "minY": 226.75, "maxX": 462.0, "maxY": 252.0}, "class_id": 0, "box_caption": "coureur 0.373", "scores": {"class_score": 0.37255859375}, "domain": "pixel"}, {"position": {"minX": 383.75, "minY": 217.75, "maxX": 398.25, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.351806640625}, "domain": "pixel"}, {"position": {"minX": 224.125, "minY": 194.125, "maxX": 241.875, "maxY": 218.625}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.345703125}, "domain": "pixel"}, {"position": {"minX": 512.0, "minY": 235.625, "maxX": 535.0, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.343994140625}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 242.625, "maxX": 588.5, "maxY": 268.75}, "class_id": 0, "box_caption": "coureur 0.332", "scores": {"class_score": 0.33203125}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 202.5, "maxX": 307.0, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.292", "scores": {"class_score": 0.291748046875}, "domain": "pixel"}, {"position": {"minX": 162.25, "minY": 191.375, "maxX": 177.5, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.090", "scores": {"class_score": 0.089599609375}, "domain": "pixel"}, {"position": {"minX": 382.75, "minY": 212.125, "maxX": 397.75, "maxY": 236.625}, "class_id": 0, "box_caption": "coureur 0.062", "scores": {"class_score": 0.062042236328125}, "domain": "pixel"}, {"position": {"minX": 159.25, "minY": 195.5, "maxX": 175.0, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.052", "scores": {"class_score": 0.052001953125}, "domain": "pixel"}, {"position": {"minX": 333.25, "minY": 218.625, "maxX": 346.25, "maxY": 241.375}, "class_id": 0, "box_caption": "coureur 0.049", "scores": {"class_score": 0.048736572265625}, "domain": "pixel"}, {"position": {"minX": 445.0, "minY": 221.0, "maxX": 461.0, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.024", "scores": {"class_score": 0.023773193359375}, "domain": "pixel"}, {"position": {"minX": 125.75, "minY": 193.75, "maxX": 141.25, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0103607177734375}, "domain": "pixel"}, {"position": {"minX": 376.25, "minY": 214.0, "maxX": 396.75, "maxY": 243.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00902557373046875}, "domain": "pixel"}, {"position": {"minX": 571.5, "minY": 236.0, "maxX": 588.5, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0081024169921875}, "domain": "pixel"}, {"position": {"minX": 333.75, "minY": 204.125, "maxX": 348.25, "maxY": 230.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00804901123046875}, "domain": "pixel"}, {"position": {"minX": 163.75, "minY": 188.125, "maxX": 179.75, "maxY": 212.125}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007450103759765625}, "domain": "pixel"}, {"position": {"minX": 437.5, "minY": 229.5, "maxX": 458.5, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00658416748046875}, "domain": "pixel"}, {"position": {"minX": 129.875, "minY": 193.25, "maxX": 146.625, "maxY": 215.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005645751953125}, "domain": "pixel"}, {"position": {"minX": 220.125, "minY": 193.5, "maxX": 245.875, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00559234619140625}, "domain": "pixel"}, {"position": {"minX": 289.75, "minY": 209.125, "maxX": 306.25, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005580902099609375}, "domain": "pixel"}, {"position": {"minX": 330.75, "minY": 207.25, "maxX": 350.75, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00506591796875}, "domain": "pixel"}, {"position": {"minX": 168.5, "minY": 188.75, "maxX": 183.25, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003688812255859375}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 188.375, "maxX": 241.375, "maxY": 213.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035991668701171875}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 240.75, "maxX": 539.0, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003421783447265625}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 207.25, "maxX": 602.0, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032711029052734375}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 216.75, "maxX": 353.5, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032024383544921875}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 196.0, "maxX": 307.0, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003093719482421875}, "domain": "pixel"}, {"position": {"minX": 382.25, "minY": 221.625, "maxX": 400.75, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00307464599609375}, "domain": "pixel"}, {"position": {"minX": 280.5, "minY": 201.875, "maxX": 299.5, "maxY": 229.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027751922607421875}, "domain": "pixel"}, {"position": {"minX": 413.5, "minY": 210.0, "maxX": 427.0, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026378631591796875}, "domain": "pixel"}, {"position": {"minX": 156.625, "minY": 188.0, "maxX": 180.375, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026035308837890625}, "domain": "pixel"}, {"position": {"minX": 327.0, "minY": 215.875, "maxX": 346.0, "maxY": 239.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00188446044921875}, "domain": "pixel"}, {"position": {"minX": 571.5, "minY": 244.375, "maxX": 593.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018749237060546875}, "domain": "pixel"}, {"position": {"minX": 516.5, "minY": 226.25, "maxX": 532.5, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016937255859375}, "domain": "pixel"}, {"position": {"minX": 293.25, "minY": 206.25, "maxX": 311.25, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015420913696289062}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 197.0, "maxX": 247.75, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013875961303710938}, "domain": "pixel"}, {"position": {"minX": 159.0, "minY": 187.25, "maxX": 175.75, "maxY": 212.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013256072998046875}, "domain": "pixel"}, {"position": {"minX": 124.875, "minY": 186.875, "maxX": 141.375, "maxY": 211.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012598037719726562}, "domain": "pixel"}, {"position": {"minX": 146.25, "minY": 187.625, "maxX": 163.5, "maxY": 213.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012121200561523438}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 214.75, "maxX": 407.5, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012006759643554688}, "domain": "pixel"}, {"position": {"minX": 230.5, "minY": 190.5, "maxX": 245.5, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00118255615234375}, "domain": "pixel"}, {"position": {"minX": 503.5, "minY": 232.0, "maxX": 527.5, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00118255615234375}, "domain": "pixel"}, {"position": {"minX": 137.5, "minY": 193.0, "maxX": 153.5, "maxY": 215.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010509490966796875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_6f7acbd6accd5bb6a67c.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_6f7acbd6accd5bb6a67c.boxes2D.json new file mode 100644 index 0000000..c53d495 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_6f7acbd6accd5bb6a67c.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 455.5, "minY": 233.0, "maxX": 476.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.40087890625}, "domain": "pixel"}, {"position": {"minX": 583.5, "minY": 249.75, "maxX": 607.5, "maxY": 276.25}, "class_id": 0, "box_caption": "coureur 0.375", "scores": {"class_score": 0.374755859375}, "domain": "pixel"}, {"position": {"minX": 345.5, "minY": 216.0, "maxX": 362.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.317", "scores": {"class_score": 0.316650390625}, "domain": "pixel"}, {"position": {"minX": 233.875, "minY": 201.75, "maxX": 256.25, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.300", "scores": {"class_score": 0.2998046875}, "domain": "pixel"}, {"position": {"minX": 530.0, "minY": 242.875, "maxX": 551.0, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.289", "scores": {"class_score": 0.288818359375}, "domain": "pixel"}, {"position": {"minX": 302.75, "minY": 210.5, "maxX": 321.25, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.263", "scores": {"class_score": 0.2626953125}, "domain": "pixel"}, {"position": {"minX": 399.0, "minY": 228.0, "maxX": 414.0, "maxY": 249.0}, "class_id": 0, "box_caption": "coureur 0.262", "scores": {"class_score": 0.26171875}, "domain": "pixel"}, {"position": {"minX": 171.0, "minY": 199.5, "maxX": 187.5, "maxY": 220.25}, "class_id": 0, "box_caption": "coureur 0.213", "scores": {"class_score": 0.2132568359375}, "domain": "pixel"}, {"position": {"minX": 166.625, "minY": 196.0, "maxX": 184.125, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.124", "scores": {"class_score": 0.123779296875}, "domain": "pixel"}, {"position": {"minX": 175.625, "minY": 201.625, "maxX": 190.875, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.035", "scores": {"class_score": 0.035369873046875}, "domain": "pixel"}, {"position": {"minX": 240.0, "minY": 206.0, "maxX": 261.0, "maxY": 227.25}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.03021240234375}, "domain": "pixel"}, {"position": {"minX": 245.125, "minY": 203.75, "maxX": 264.5, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0299835205078125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 224.25, "maxX": 416.0, "maxY": 251.5}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01273345947265625}, "domain": "pixel"}, {"position": {"minX": 586.5, "minY": 243.625, "maxX": 605.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01241302490234375}, "domain": "pixel"}, {"position": {"minX": 235.75, "minY": 196.0, "maxX": 252.75, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.012359619140625}, "domain": "pixel"}, {"position": {"minX": 459.0, "minY": 227.25, "maxX": 475.0, "maxY": 255.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0111846923828125}, "domain": "pixel"}, {"position": {"minX": 172.375, "minY": 203.5, "maxX": 187.125, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0108642578125}, "domain": "pixel"}, {"position": {"minX": 248.75, "minY": 208.875, "maxX": 265.75, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00995635986328125}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 219.625, "maxX": 413.75, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00959014892578125}, "domain": "pixel"}, {"position": {"minX": 347.75, "minY": 225.125, "maxX": 361.75, "maxY": 251.125}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0090789794921875}, "domain": "pixel"}, {"position": {"minX": 230.75, "minY": 201.75, "maxX": 249.0, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00775146484375}, "domain": "pixel"}, {"position": {"minX": 347.0, "minY": 211.25, "maxX": 361.5, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00582122802734375}, "domain": "pixel"}, {"position": {"minX": 175.25, "minY": 196.0, "maxX": 192.75, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00576019287109375}, "domain": "pixel"}, {"position": {"minX": 533.0, "minY": 234.25, "maxX": 549.0, "maxY": 264.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00452423095703125}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 202.625, "maxX": 319.5, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004119873046875}, "domain": "pixel"}, {"position": {"minX": 166.375, "minY": 197.125, "maxX": 192.125, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004058837890625}, "domain": "pixel"}, {"position": {"minX": 500.75, "minY": 210.25, "maxX": 516.5, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037250518798828125}, "domain": "pixel"}, {"position": {"minX": 393.25, "minY": 222.375, "maxX": 411.75, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033931732177734375}, "domain": "pixel"}, {"position": {"minX": 296.75, "minY": 206.125, "maxX": 315.75, "maxY": 233.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022945404052734375}, "domain": "pixel"}, {"position": {"minX": 227.125, "minY": 197.5, "maxX": 255.875, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016813278198242188}, "domain": "pixel"}, {"position": {"minX": 256.75, "minY": 207.125, "maxX": 273.25, "maxY": 229.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015506744384765625}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 239.5, "maxX": 615.5, "maxY": 288.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014944076538085938}, "domain": "pixel"}, {"position": {"minX": 130.625, "minY": 192.5, "maxX": 145.875, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013742446899414062}, "domain": "pixel"}, {"position": {"minX": 591.0, "minY": 247.5, "maxX": 618.0, "maxY": 279.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00122833251953125}, "domain": "pixel"}, {"position": {"minX": 237.875, "minY": 193.75, "maxX": 260.0, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010433197021484375}, "domain": "pixel"}, {"position": {"minX": 176.875, "minY": 204.75, "maxX": 192.625, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010385513305664062}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 226.125, "maxX": 412.5, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001007080078125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_767b8e496fc12b3286ac.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_767b8e496fc12b3286ac.boxes2D.json new file mode 100644 index 0000000..6bb3bef --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_767b8e496fc12b3286ac.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 298.5, "minY": 210.25, "maxX": 314.0, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.352294921875}, "domain": "pixel"}, {"position": {"minX": 340.0, "minY": 217.875, "maxX": 363.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.336", "scores": {"class_score": 0.336181640625}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 239.5, "maxX": 552.5, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.335", "scores": {"class_score": 0.334716796875}, "domain": "pixel"}, {"position": {"minX": 224.875, "minY": 203.125, "maxX": 244.875, "maxY": 226.625}, "class_id": 0, "box_caption": "coureur 0.330", "scores": {"class_score": 0.330078125}, "domain": "pixel"}, {"position": {"minX": 584.5, "minY": 249.875, "maxX": 602.5, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.322509765625}, "domain": "pixel"}, {"position": {"minX": 454.25, "minY": 235.25, "maxX": 471.25, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.317", "scores": {"class_score": 0.316650390625}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 225.125, "maxX": 409.25, "maxY": 247.875}, "class_id": 0, "box_caption": "coureur 0.277", "scores": {"class_score": 0.27734375}, "domain": "pixel"}, {"position": {"minX": 166.625, "minY": 197.0, "maxX": 182.625, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.174", "scores": {"class_score": 0.17431640625}, "domain": "pixel"}, {"position": {"minX": 231.25, "minY": 201.875, "maxX": 250.0, "maxY": 226.125}, "class_id": 0, "box_caption": "coureur 0.089", "scores": {"class_score": 0.08892822265625}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 216.75, "maxX": 408.5, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.029", "scores": {"class_score": 0.029205322265625}, "domain": "pixel"}, {"position": {"minX": 617.0, "minY": 222.375, "maxX": 636.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0250701904296875}, "domain": "pixel"}, {"position": {"minX": 299.75, "minY": 204.5, "maxX": 314.75, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0245819091796875}, "domain": "pixel"}, {"position": {"minX": 222.25, "minY": 205.375, "maxX": 240.0, "maxY": 228.375}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0199127197265625}, "domain": "pixel"}, {"position": {"minX": 299.75, "minY": 217.5, "maxX": 313.75, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0180511474609375}, "domain": "pixel"}, {"position": {"minX": 242.25, "minY": 203.625, "maxX": 260.0, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.016387939453125}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 234.875, "maxX": 549.5, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01406097412109375}, "domain": "pixel"}, {"position": {"minX": 227.125, "minY": 197.5, "maxX": 244.625, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.0131683349609375}, "domain": "pixel"}, {"position": {"minX": 249.125, "minY": 202.0, "maxX": 264.5, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007476806640625}, "domain": "pixel"}, {"position": {"minX": 452.5, "minY": 231.25, "maxX": 470.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0072174072265625}, "domain": "pixel"}, {"position": {"minX": 613.0, "minY": 224.75, "maxX": 631.0, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00658416748046875}, "domain": "pixel"}, {"position": {"minX": 387.0, "minY": 219.0, "maxX": 412.0, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006290435791015625}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 243.375, "maxX": 603.0, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006256103515625}, "domain": "pixel"}, {"position": {"minX": 159.25, "minY": 197.0, "maxX": 185.5, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004703521728515625}, "domain": "pixel"}, {"position": {"minX": 335.0, "minY": 216.5, "maxX": 356.5, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00391387939453125}, "domain": "pixel"}, {"position": {"minX": 164.375, "minY": 203.125, "maxX": 179.875, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00307464599609375}, "domain": "pixel"}, {"position": {"minX": 216.0, "minY": 200.0, "maxX": 236.0, "maxY": 227.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029964447021484375}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 242.625, "maxX": 546.5, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025482177734375}, "domain": "pixel"}, {"position": {"minX": 159.25, "minY": 200.375, "maxX": 177.25, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023345947265625}, "domain": "pixel"}, {"position": {"minX": 343.0, "minY": 209.0, "maxX": 364.0, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002079010009765625}, "domain": "pixel"}, {"position": {"minX": 299.25, "minY": 208.0, "maxX": 320.25, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019073486328125}, "domain": "pixel"}, {"position": {"minX": 580.0, "minY": 245.0, "maxX": 601.0, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018215179443359375}, "domain": "pixel"}, {"position": {"minX": 388.25, "minY": 211.375, "maxX": 405.25, "maxY": 239.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017032623291015625}, "domain": "pixel"}, {"position": {"minX": 519.5, "minY": 234.375, "maxX": 544.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016632080078125}, "domain": "pixel"}, {"position": {"minX": 395.5, "minY": 211.75, "maxX": 410.5, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015869140625}, "domain": "pixel"}, {"position": {"minX": 453.75, "minY": 242.75, "maxX": 468.75, "maxY": 267.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014934539794921875}, "domain": "pixel"}, {"position": {"minX": 456.75, "minY": 228.0, "maxX": 473.25, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011348724365234375}, "domain": "pixel"}, {"position": {"minX": 333.5, "minY": 223.5, "maxX": 354.0, "maxY": 246.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010013580322265625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_80b7498d0937d8c489ba.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_80b7498d0937d8c489ba.boxes2D.json new file mode 100644 index 0000000..7261429 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_80b7498d0937d8c489ba.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 575.0, "minY": 247.125, "maxX": 596.0, "maxY": 274.0}, "class_id": 0, "box_caption": "coureur 0.404", "scores": {"class_score": 0.404052734375}, "domain": "pixel"}, {"position": {"minX": 336.75, "minY": 215.375, "maxX": 357.25, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 389.5, "minY": 225.625, "maxX": 403.5, "maxY": 244.875}, "class_id": 0, "box_caption": "coureur 0.370", "scores": {"class_score": 0.369873046875}, "domain": "pixel"}, {"position": {"minX": 295.5, "minY": 207.625, "maxX": 313.0, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.367431640625}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 231.625, "maxX": 464.5, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.330", "scores": {"class_score": 0.329833984375}, "domain": "pixel"}, {"position": {"minX": 517.0, "minY": 238.75, "maxX": 546.0, "maxY": 263.75}, "class_id": 0, "box_caption": "coureur 0.315", "scores": {"class_score": 0.3154296875}, "domain": "pixel"}, {"position": {"minX": 227.5, "minY": 199.75, "maxX": 245.25, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.179", "scores": {"class_score": 0.178955078125}, "domain": "pixel"}, {"position": {"minX": 171.125, "minY": 196.0, "maxX": 188.375, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.092", "scores": {"class_score": 0.0916748046875}, "domain": "pixel"}, {"position": {"minX": 231.375, "minY": 202.75, "maxX": 247.875, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.050", "scores": {"class_score": 0.050445556640625}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 223.375, "maxX": 405.25, "maxY": 250.125}, "class_id": 0, "box_caption": "coureur 0.031", "scores": {"class_score": 0.0309600830078125}, "domain": "pixel"}, {"position": {"minX": 421.75, "minY": 209.25, "maxX": 436.25, "maxY": 231.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0138702392578125}, "domain": "pixel"}, {"position": {"minX": 523.5, "minY": 241.375, "maxX": 548.5, "maxY": 266.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01092529296875}, "domain": "pixel"}, {"position": {"minX": 447.0, "minY": 236.25, "maxX": 466.5, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006153106689453125}, "domain": "pixel"}, {"position": {"minX": 223.625, "minY": 195.5, "maxX": 240.125, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00611114501953125}, "domain": "pixel"}, {"position": {"minX": 168.5, "minY": 198.125, "maxX": 184.0, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00600433349609375}, "domain": "pixel"}, {"position": {"minX": 174.0, "minY": 195.125, "maxX": 195.25, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005218505859375}, "domain": "pixel"}, {"position": {"minX": 342.75, "minY": 221.875, "maxX": 359.75, "maxY": 246.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0046844482421875}, "domain": "pixel"}, {"position": {"minX": 166.0, "minY": 189.625, "maxX": 184.5, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0037059783935546875}, "domain": "pixel"}, {"position": {"minX": 568.5, "minY": 246.125, "maxX": 591.5, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0034465789794921875}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 220.125, "maxX": 408.5, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033664703369140625}, "domain": "pixel"}, {"position": {"minX": 447.0, "minY": 227.0, "maxX": 463.0, "maxY": 251.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00313568115234375}, "domain": "pixel"}, {"position": {"minX": 516.0, "minY": 241.875, "maxX": 538.0, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027217864990234375}, "domain": "pixel"}, {"position": {"minX": 383.5, "minY": 226.125, "maxX": 401.0, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023975372314453125}, "domain": "pixel"}, {"position": {"minX": 387.5, "minY": 214.25, "maxX": 403.0, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021495819091796875}, "domain": "pixel"}, {"position": {"minX": 440.0, "minY": 231.375, "maxX": 461.5, "maxY": 261.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020275115966796875}, "domain": "pixel"}, {"position": {"minX": 419.5, "minY": 204.375, "maxX": 432.5, "maxY": 230.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018377304077148438}, "domain": "pixel"}, {"position": {"minX": 522.0, "minY": 229.5, "maxX": 542.0, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017414093017578125}, "domain": "pixel"}, {"position": {"minX": 335.0, "minY": 209.0, "maxX": 355.0, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016660690307617188}, "domain": "pixel"}, {"position": {"minX": 422.75, "minY": 204.25, "maxX": 435.25, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016603469848632812}, "domain": "pixel"}, {"position": {"minX": 168.75, "minY": 197.0, "maxX": 195.5, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016374588012695312}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 249.625, "maxX": 598.0, "maxY": 283.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001621246337890625}, "domain": "pixel"}, {"position": {"minX": 420.25, "minY": 212.5, "maxX": 435.25, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016193389892578125}, "domain": "pixel"}, {"position": {"minX": 425.0, "minY": 208.75, "maxX": 440.0, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015506744384765625}, "domain": "pixel"}, {"position": {"minX": 185.25, "minY": 195.25, "maxX": 203.0, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015211105346679688}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 224.125, "maxX": 553.0, "maxY": 271.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014944076538085938}, "domain": "pixel"}, {"position": {"minX": 188.125, "minY": 199.0, "maxX": 203.375, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00145721435546875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_8b86ec87feee58d715a2.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_8b86ec87feee58d715a2.boxes2D.json new file mode 100644 index 0000000..1e81c95 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_8b86ec87feee58d715a2.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 579.5, "minY": 248.0, "maxX": 600.5, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.412", "scores": {"class_score": 0.41162109375}, "domain": "pixel"}, {"position": {"minX": 296.5, "minY": 208.25, "maxX": 317.0, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.4111328125}, "domain": "pixel"}, {"position": {"minX": 448.75, "minY": 231.25, "maxX": 473.25, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.398193359375}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 239.625, "maxX": 543.0, "maxY": 267.25}, "class_id": 0, "box_caption": "coureur 0.363", "scores": {"class_score": 0.362548828125}, "domain": "pixel"}, {"position": {"minX": 394.25, "minY": 227.125, "maxX": 408.75, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.339", "scores": {"class_score": 0.338623046875}, "domain": "pixel"}, {"position": {"minX": 341.75, "minY": 215.25, "maxX": 359.25, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.338", "scores": {"class_score": 0.338134765625}, "domain": "pixel"}, {"position": {"minX": 170.0, "minY": 193.75, "maxX": 184.75, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.278", "scores": {"class_score": 0.2783203125}, "domain": "pixel"}, {"position": {"minX": 233.375, "minY": 202.75, "maxX": 249.375, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.193", "scores": {"class_score": 0.1934814453125}, "domain": "pixel"}, {"position": {"minX": 392.75, "minY": 222.625, "maxX": 412.75, "maxY": 249.375}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.02093505859375}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 196.25, "maxX": 246.25, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.021", "scores": {"class_score": 0.020782470703125}, "domain": "pixel"}, {"position": {"minX": 122.125, "minY": 195.125, "maxX": 137.875, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.020172119140625}, "domain": "pixel"}, {"position": {"minX": 197.25, "minY": 201.875, "maxX": 210.5, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.017791748046875}, "domain": "pixel"}, {"position": {"minX": 523.0, "minY": 241.0, "maxX": 547.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0096435546875}, "domain": "pixel"}, {"position": {"minX": 118.625, "minY": 196.0, "maxX": 133.625, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00902557373046875}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 235.875, "maxX": 541.0, "maxY": 261.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00843048095703125}, "domain": "pixel"}, {"position": {"minX": 580.5, "minY": 243.375, "maxX": 597.5, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00829315185546875}, "domain": "pixel"}, {"position": {"minX": 240.25, "minY": 209.0, "maxX": 256.5, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007251739501953125}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 221.0, "maxX": 407.75, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006969451904296875}, "domain": "pixel"}, {"position": {"minX": 165.25, "minY": 192.875, "maxX": 186.0, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005298614501953125}, "domain": "pixel"}, {"position": {"minX": 197.125, "minY": 195.75, "maxX": 212.625, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00481414794921875}, "domain": "pixel"}, {"position": {"minX": 476.75, "minY": 207.5, "maxX": 494.75, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0045318603515625}, "domain": "pixel"}, {"position": {"minX": 125.375, "minY": 188.0, "maxX": 139.625, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004390716552734375}, "domain": "pixel"}, {"position": {"minX": 227.5, "minY": 199.125, "maxX": 251.25, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004253387451171875}, "domain": "pixel"}, {"position": {"minX": 166.5, "minY": 197.25, "maxX": 182.5, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00365447998046875}, "domain": "pixel"}, {"position": {"minX": 236.25, "minY": 195.625, "maxX": 252.75, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032863616943359375}, "domain": "pixel"}, {"position": {"minX": 168.375, "minY": 188.0, "maxX": 191.125, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00319671630859375}, "domain": "pixel"}, {"position": {"minX": 520.5, "minY": 237.75, "maxX": 541.5, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003032684326171875}, "domain": "pixel"}, {"position": {"minX": 454.0, "minY": 235.625, "maxX": 475.0, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002498626708984375}, "domain": "pixel"}, {"position": {"minX": 493.75, "minY": 217.125, "maxX": 508.25, "maxY": 243.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023250579833984375}, "domain": "pixel"}, {"position": {"minX": 455.0, "minY": 226.25, "maxX": 474.5, "maxY": 252.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002285003662109375}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 229.5, "maxX": 407.25, "maxY": 250.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022487640380859375}, "domain": "pixel"}, {"position": {"minX": 167.875, "minY": 188.25, "maxX": 183.875, "maxY": 212.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016489028930664062}, "domain": "pixel"}, {"position": {"minX": 341.0, "minY": 224.625, "maxX": 356.0, "maxY": 251.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016298294067382812}, "domain": "pixel"}, {"position": {"minX": 295.0, "minY": 202.875, "maxX": 314.5, "maxY": 229.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015592575073242188}, "domain": "pixel"}, {"position": {"minX": 238.25, "minY": 201.625, "maxX": 257.25, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00145721435546875}, "domain": "pixel"}, {"position": {"minX": 236.375, "minY": 207.375, "maxX": 254.875, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014219284057617188}, "domain": "pixel"}, {"position": {"minX": 397.5, "minY": 225.75, "maxX": 415.5, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011148452758789062}, "domain": "pixel"}, {"position": {"minX": 338.25, "minY": 218.875, "maxX": 359.75, "maxY": 252.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011119842529296875}, "domain": "pixel"}, {"position": {"minX": 197.25, "minY": 207.875, "maxX": 209.75, "maxY": 226.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001102447509765625}, "domain": "pixel"}, {"position": {"minX": 200.375, "minY": 200.25, "maxX": 216.875, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011014938354492188}, "domain": "pixel"}, {"position": {"minX": 204.625, "minY": 199.125, "maxX": 221.625, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010919570922851562}, "domain": "pixel"}, {"position": {"minX": 494.25, "minY": 225.875, "maxX": 506.25, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010738372802734375}, "domain": "pixel"}, {"position": {"minX": 344.75, "minY": 211.125, "maxX": 360.75, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010280609130859375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_a44cad5f4aadefa73afc.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_a44cad5f4aadefa73afc.boxes2D.json new file mode 100644 index 0000000..e2502d3 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_a44cad5f4aadefa73afc.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 515.5, "minY": 237.375, "maxX": 533.5, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.421630859375}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 206.0, "maxX": 310.0, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.417", "scores": {"class_score": 0.417236328125}, "domain": "pixel"}, {"position": {"minX": 224.125, "minY": 199.0, "maxX": 242.125, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.3916015625}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 229.25, "maxX": 464.25, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.387451171875}, "domain": "pixel"}, {"position": {"minX": 329.75, "minY": 213.125, "maxX": 352.25, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.385", "scores": {"class_score": 0.384765625}, "domain": "pixel"}, {"position": {"minX": 571.5, "minY": 243.5, "maxX": 588.5, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.3720703125}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 217.0, "maxX": 401.75, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.306", "scores": {"class_score": 0.30615234375}, "domain": "pixel"}, {"position": {"minX": 162.875, "minY": 196.5, "maxX": 181.875, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.109", "scores": {"class_score": 0.10870361328125}, "domain": "pixel"}, {"position": {"minX": 387.25, "minY": 212.375, "maxX": 403.75, "maxY": 236.625}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.045562744140625}, "domain": "pixel"}, {"position": {"minX": 169.0, "minY": 196.5, "maxX": 184.5, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0304718017578125}, "domain": "pixel"}, {"position": {"minX": 154.0, "minY": 195.25, "maxX": 177.0, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.011444091796875}, "domain": "pixel"}, {"position": {"minX": 148.875, "minY": 195.375, "maxX": 166.125, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00983428955078125}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 222.875, "maxX": 398.75, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0081024169921875}, "domain": "pixel"}, {"position": {"minX": 229.125, "minY": 201.0, "maxX": 247.125, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00672149658203125}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 215.5, "maxX": 407.5, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00589752197265625}, "domain": "pixel"}, {"position": {"minX": 222.25, "minY": 206.0, "maxX": 239.75, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005428314208984375}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 231.0, "maxX": 532.0, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003704071044921875}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 208.25, "maxX": 409.75, "maxY": 233.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003391265869140625}, "domain": "pixel"}, {"position": {"minX": 574.0, "minY": 236.0, "maxX": 588.0, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032558441162109375}, "domain": "pixel"}, {"position": {"minX": 154.0, "minY": 187.75, "maxX": 184.5, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029125213623046875}, "domain": "pixel"}, {"position": {"minX": 325.25, "minY": 215.5, "maxX": 347.25, "maxY": 240.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0028553009033203125}, "domain": "pixel"}, {"position": {"minX": 448.0, "minY": 229.875, "maxX": 472.5, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002681732177734375}, "domain": "pixel"}, {"position": {"minX": 102.25, "minY": 169.375, "maxX": 114.5, "maxY": 193.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026760101318359375}, "domain": "pixel"}, {"position": {"minX": 102.4375, "minY": 176.75, "maxX": 113.0625, "maxY": 196.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026454925537109375}, "domain": "pixel"}, {"position": {"minX": 214.25, "minY": 198.125, "maxX": 235.75, "maxY": 226.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002475738525390625}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 202.5, "maxX": 315.0, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022602081298828125}, "domain": "pixel"}, {"position": {"minX": 163.875, "minY": 187.875, "maxX": 181.125, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00218963623046875}, "domain": "pixel"}, {"position": {"minX": 574.5, "minY": 243.5, "maxX": 593.5, "maxY": 265.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021648406982421875}, "domain": "pixel"}, {"position": {"minX": 510.0, "minY": 238.625, "maxX": 538.0, "maxY": 270.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021572113037109375}, "domain": "pixel"}, {"position": {"minX": 295.5, "minY": 211.625, "maxX": 312.5, "maxY": 235.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020427703857421875}, "domain": "pixel"}, {"position": {"minX": 419.0, "minY": 207.375, "maxX": 434.5, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019292831420898438}, "domain": "pixel"}, {"position": {"minX": 376.0, "minY": 215.0, "maxX": 395.0, "maxY": 243.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00153350830078125}, "domain": "pixel"}, {"position": {"minX": 438.5, "minY": 222.25, "maxX": 461.5, "maxY": 252.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012941360473632812}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 203.0, "maxX": 412.0, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001277923583984375}, "domain": "pixel"}, {"position": {"minX": 417.5, "minY": 202.0, "maxX": 431.0, "maxY": 228.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012569427490234375}, "domain": "pixel"}, {"position": {"minX": 414.0, "minY": 208.5, "maxX": 429.0, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012388229370117188}, "domain": "pixel"}, {"position": {"minX": 295.75, "minY": 203.125, "maxX": 312.25, "maxY": 227.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012302398681640625}, "domain": "pixel"}, {"position": {"minX": 288.25, "minY": 202.0, "maxX": 306.75, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012140274047851562}, "domain": "pixel"}, {"position": {"minX": 566.0, "minY": 245.875, "maxX": 586.0, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012035369873046875}, "domain": "pixel"}, {"position": {"minX": 618.0, "minY": 214.5, "maxX": 633.0, "maxY": 241.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011987686157226562}, "domain": "pixel"}, {"position": {"minX": 223.875, "minY": 204.0, "maxX": 243.625, "maxY": 234.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011882781982421875}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 197.875, "maxX": 308.0, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011682510375976562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_a6db32c07da563e524eb.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_a6db32c07da563e524eb.boxes2D.json new file mode 100644 index 0000000..5e3b486 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_a6db32c07da563e524eb.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 386.0, "minY": 223.5, "maxX": 402.5, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.381103515625}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 231.625, "maxX": 466.5, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.360", "scores": {"class_score": 0.360107421875}, "domain": "pixel"}, {"position": {"minX": 288.75, "minY": 209.75, "maxX": 307.25, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.350", "scores": {"class_score": 0.35009765625}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 248.0, "maxX": 596.0, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.346", "scores": {"class_score": 0.346435546875}, "domain": "pixel"}, {"position": {"minX": 521.0, "minY": 239.875, "maxX": 541.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.339", "scores": {"class_score": 0.339111328125}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 216.25, "maxX": 353.5, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.284", "scores": {"class_score": 0.28369140625}, "domain": "pixel"}, {"position": {"minX": 218.0, "minY": 202.375, "maxX": 239.5, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.258", "scores": {"class_score": 0.2578125}, "domain": "pixel"}, {"position": {"minX": 155.75, "minY": 198.5, "maxX": 171.0, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.145", "scores": {"class_score": 0.1453857421875}, "domain": "pixel"}, {"position": {"minX": 224.75, "minY": 205.75, "maxX": 243.0, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.047", "scores": {"class_score": 0.047454833984375}, "domain": "pixel"}, {"position": {"minX": 291.0, "minY": 205.25, "maxX": 308.0, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0120391845703125}, "domain": "pixel"}, {"position": {"minX": 229.125, "minY": 203.75, "maxX": 247.125, "maxY": 228.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01076507568359375}, "domain": "pixel"}, {"position": {"minX": 214.0, "minY": 202.75, "maxX": 233.0, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.01013946533203125}, "domain": "pixel"}, {"position": {"minX": 159.125, "minY": 201.625, "maxX": 174.375, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00855255126953125}, "domain": "pixel"}, {"position": {"minX": 523.5, "minY": 234.0, "maxX": 539.5, "maxY": 264.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00838470458984375}, "domain": "pixel"}, {"position": {"minX": 219.875, "minY": 195.875, "maxX": 237.375, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00829315185546875}, "domain": "pixel"}, {"position": {"minX": 387.5, "minY": 214.375, "maxX": 402.0, "maxY": 242.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007564544677734375}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 243.125, "maxX": 595.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007110595703125}, "domain": "pixel"}, {"position": {"minX": 150.0, "minY": 193.75, "maxX": 169.0, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00664520263671875}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 208.75, "maxX": 313.25, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00661468505859375}, "domain": "pixel"}, {"position": {"minX": 449.25, "minY": 225.75, "maxX": 465.75, "maxY": 255.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00579071044921875}, "domain": "pixel"}, {"position": {"minX": 156.875, "minY": 205.375, "maxX": 170.625, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0033016204833984375}, "domain": "pixel"}, {"position": {"minX": 232.125, "minY": 209.0, "maxX": 249.125, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0032825469970703125}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 246.625, "maxX": 591.0, "maxY": 280.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031986236572265625}, "domain": "pixel"}, {"position": {"minX": 574.0, "minY": 245.75, "maxX": 604.0, "maxY": 281.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00232696533203125}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 224.0, "maxX": 407.0, "maxY": 253.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021915435791015625}, "domain": "pixel"}, {"position": {"minX": 210.375, "minY": 199.25, "maxX": 238.125, "maxY": 228.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00208282470703125}, "domain": "pixel"}, {"position": {"minX": 333.0, "minY": 211.5, "maxX": 349.5, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001819610595703125}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 216.75, "maxX": 306.0, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018186569213867188}, "domain": "pixel"}, {"position": {"minX": 442.75, "minY": 224.5, "maxX": 469.25, "maxY": 258.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001739501953125}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 242.125, "maxX": 544.5, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014448165893554688}, "domain": "pixel"}, {"position": {"minX": 280.25, "minY": 206.25, "maxX": 298.25, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011463165283203125}, "domain": "pixel"}, {"position": {"minX": 228.25, "minY": 212.0, "maxX": 243.75, "maxY": 234.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011005401611328125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_adf73f75112e68387de5.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_adf73f75112e68387de5.boxes2D.json new file mode 100644 index 0000000..352f68e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_adf73f75112e68387de5.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 290.5, "minY": 201.75, "maxX": 306.5, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.405", "scores": {"class_score": 0.405029296875}, "domain": "pixel"}, {"position": {"minX": 329.0, "minY": 209.5, "maxX": 353.0, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.400", "scores": {"class_score": 0.400390625}, "domain": "pixel"}, {"position": {"minX": 442.5, "minY": 223.875, "maxX": 462.0, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.396", "scores": {"class_score": 0.396240234375}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 217.5, "maxX": 398.25, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.37841796875}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 240.125, "maxX": 586.0, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.376", "scores": {"class_score": 0.375732421875}, "domain": "pixel"}, {"position": {"minX": 512.0, "minY": 233.75, "maxX": 532.0, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.369", "scores": {"class_score": 0.369140625}, "domain": "pixel"}, {"position": {"minX": 225.5, "minY": 196.875, "maxX": 240.25, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.309", "scores": {"class_score": 0.309326171875}, "domain": "pixel"}, {"position": {"minX": 162.625, "minY": 193.875, "maxX": 178.625, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.218", "scores": {"class_score": 0.2183837890625}, "domain": "pixel"}, {"position": {"minX": 381.5, "minY": 213.125, "maxX": 398.0, "maxY": 234.125}, "class_id": 0, "box_caption": "coureur 0.075", "scores": {"class_score": 0.07537841796875}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 204.0, "maxX": 350.5, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.023223876953125}, "domain": "pixel"}, {"position": {"minX": 167.0, "minY": 194.625, "maxX": 182.25, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0115814208984375}, "domain": "pixel"}, {"position": {"minX": 221.125, "minY": 195.625, "maxX": 244.125, "maxY": 223.375}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01116180419921875}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 196.375, "maxX": 305.75, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0106048583984375}, "domain": "pixel"}, {"position": {"minX": 327.5, "minY": 213.5, "maxX": 347.5, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0104522705078125}, "domain": "pixel"}, {"position": {"minX": 515.0, "minY": 227.75, "maxX": 531.0, "maxY": 255.75}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0086822509765625}, "domain": "pixel"}, {"position": {"minX": 379.25, "minY": 216.75, "maxX": 403.25, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00807952880859375}, "domain": "pixel"}, {"position": {"minX": 226.0, "minY": 202.0, "maxX": 241.0, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006824493408203125}, "domain": "pixel"}, {"position": {"minX": 445.5, "minY": 228.0, "maxX": 464.5, "maxY": 253.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005977630615234375}, "domain": "pixel"}, {"position": {"minX": 156.875, "minY": 187.75, "maxX": 180.875, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00594329833984375}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 208.5, "maxX": 306.0, "maxY": 235.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00524139404296875}, "domain": "pixel"}, {"position": {"minX": 385.25, "minY": 222.875, "maxX": 402.25, "maxY": 240.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035533905029296875}, "domain": "pixel"}, {"position": {"minX": 375.5, "minY": 211.0, "maxX": 396.5, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003467559814453125}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 187.875, "maxX": 242.875, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003330230712890625}, "domain": "pixel"}, {"position": {"minX": 505.0, "minY": 232.5, "maxX": 527.0, "maxY": 263.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003131866455078125}, "domain": "pixel"}, {"position": {"minX": 378.25, "minY": 201.375, "maxX": 395.25, "maxY": 229.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030059814453125}, "domain": "pixel"}, {"position": {"minX": 373.75, "minY": 205.0, "maxX": 392.25, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027904510498046875}, "domain": "pixel"}, {"position": {"minX": 513.0, "minY": 239.75, "maxX": 531.0, "maxY": 268.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00260162353515625}, "domain": "pixel"}, {"position": {"minX": 372.25, "minY": 199.75, "maxX": 391.25, "maxY": 227.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022640228271484375}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 7.78125, "maxX": 516.5, "maxY": 109.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002132415771484375}, "domain": "pixel"}, {"position": {"minX": 293.25, "minY": 206.75, "maxX": 310.75, "maxY": 230.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017604827880859375}, "domain": "pixel"}, {"position": {"minX": 228.75, "minY": 197.75, "maxX": 247.0, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00168609619140625}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 235.75, "maxX": 582.5, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016574859619140625}, "domain": "pixel"}, {"position": {"minX": 445.0, "minY": 212.5, "maxX": 461.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016078948974609375}, "domain": "pixel"}, {"position": {"minX": 388.75, "minY": 214.375, "maxX": 407.75, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014429092407226562}, "domain": "pixel"}, {"position": {"minX": 114.9375, "minY": 186.625, "maxX": 132.875, "maxY": 209.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014352798461914062}, "domain": "pixel"}, {"position": {"minX": 280.0, "minY": 201.0, "maxX": 299.0, "maxY": 229.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013761520385742188}, "domain": "pixel"}, {"position": {"minX": 159.5, "minY": 196.75, "maxX": 175.0, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013217926025390625}, "domain": "pixel"}, {"position": {"minX": 121.5, "minY": 186.375, "maxX": 138.25, "maxY": 208.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013179779052734375}, "domain": "pixel"}, {"position": {"minX": 403.25, "minY": 199.875, "maxX": 419.25, "maxY": 225.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00121307373046875}, "domain": "pixel"}, {"position": {"minX": 511.25, "minY": 231.125, "maxX": 540.0, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012083053588867188}, "domain": "pixel"}, {"position": {"minX": 151.0, "minY": 186.625, "maxX": 167.5, "maxY": 212.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011920928955078125}, "domain": "pixel"}, {"position": {"minX": 102.6875, "minY": 185.625, "maxX": 118.6875, "maxY": 209.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00115203857421875}, "domain": "pixel"}, {"position": {"minX": 112.125, "minY": 185.75, "maxX": 127.375, "maxY": 210.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011196136474609375}, "domain": "pixel"}, {"position": {"minX": 377.5, "minY": 208.0, "maxX": 402.5, "maxY": 236.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010976791381835938}, "domain": "pixel"}, {"position": {"minX": 438.75, "minY": 226.5, "maxX": 459.75, "maxY": 254.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010519027709960938}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_bb1273f6e4fc0bd73beb.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_bb1273f6e4fc0bd73beb.boxes2D.json new file mode 100644 index 0000000..616f734 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_bb1273f6e4fc0bd73beb.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 135.625, "minY": 257.25, "maxX": 176.625, "maxY": 327.75}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.396728515625}, "domain": "pixel"}, {"position": {"minX": 215.0, "minY": 126.75, "maxX": 275.75, "maxY": 194.75}, "class_id": 0, "box_caption": "coureur 0.370", "scores": {"class_score": 0.370361328125}, "domain": "pixel"}, {"position": {"minX": 376.75, "minY": 172.75, "maxX": 400.25, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.308", "scores": {"class_score": 0.308349609375}, "domain": "pixel"}, {"position": {"minX": 342.75, "minY": 119.375, "maxX": 379.25, "maxY": 186.125}, "class_id": 0, "box_caption": "coureur 0.268", "scores": {"class_score": 0.26806640625}, "domain": "pixel"}, {"position": {"minX": 500.5, "minY": 65.8125, "maxX": 532.5, "maxY": 131.75}, "class_id": 0, "box_caption": "coureur 0.218", "scores": {"class_score": 0.2177734375}, "domain": "pixel"}, {"position": {"minX": 432.25, "minY": 241.125, "maxX": 473.25, "maxY": 323.5}, "class_id": 0, "box_caption": "coureur 0.156", "scores": {"class_score": 0.15625}, "domain": "pixel"}, {"position": {"minX": 441.25, "minY": 179.875, "maxX": 465.75, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.137", "scores": {"class_score": 0.1365966796875}, "domain": "pixel"}, {"position": {"minX": 368.75, "minY": 169.25, "maxX": 401.75, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.088", "scores": {"class_score": 0.08770751953125}, "domain": "pixel"}, {"position": {"minX": 436.5, "minY": 180.125, "maxX": 467.5, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.082", "scores": {"class_score": 0.08184814453125}, "domain": "pixel"}, {"position": {"minX": 425.75, "minY": 258.25, "maxX": 467.25, "maxY": 326.75}, "class_id": 0, "box_caption": "coureur 0.063", "scores": {"class_score": 0.06280517578125}, "domain": "pixel"}, {"position": {"minX": 224.5, "minY": 128.5, "maxX": 266.0, "maxY": 183.5}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.04412841796875}, "domain": "pixel"}, {"position": {"minX": 444.0, "minY": 170.25, "maxX": 468.0, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.023", "scores": {"class_score": 0.0229339599609375}, "domain": "pixel"}, {"position": {"minX": 458.75, "minY": 300.25, "maxX": 477.25, "maxY": 331.75}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0186309814453125}, "domain": "pixel"}, {"position": {"minX": 416.25, "minY": 223.25, "maxX": 470.25, "maxY": 314.25}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.01357269287109375}, "domain": "pixel"}, {"position": {"minX": 434.5, "minY": 200.125, "maxX": 470.5, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01287078857421875}, "domain": "pixel"}, {"position": {"minX": 253.625, "minY": 169.625, "maxX": 271.25, "maxY": 201.375}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01247406005859375}, "domain": "pixel"}, {"position": {"minX": 390.5, "minY": 225.25, "maxX": 429.5, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01216888427734375}, "domain": "pixel"}, {"position": {"minX": 433.0, "minY": 218.875, "maxX": 478.0, "maxY": 309.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0112152099609375}, "domain": "pixel"}, {"position": {"minX": 350.5, "minY": 120.0, "maxX": 380.0, "maxY": 165.5}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01116943359375}, "domain": "pixel"}, {"position": {"minX": 438.5, "minY": 271.75, "maxX": 466.5, "maxY": 314.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0099029541015625}, "domain": "pixel"}, {"position": {"minX": 338.75, "minY": 123.625, "maxX": 383.25, "maxY": 212.375}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00980377197265625}, "domain": "pixel"}, {"position": {"minX": 439.5, "minY": 220.75, "maxX": 473.5, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00962066650390625}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 177.0, "maxX": 417.5, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0089569091796875}, "domain": "pixel"}, {"position": {"minX": 400.0, "minY": 225.5, "maxX": 441.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00841522216796875}, "domain": "pixel"}, {"position": {"minX": 415.75, "minY": 216.375, "maxX": 459.75, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0079803466796875}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 223.125, "maxX": 477.0, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00653076171875}, "domain": "pixel"}, {"position": {"minX": 420.0, "minY": 203.25, "maxX": 462.5, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0065155029296875}, "domain": "pixel"}, {"position": {"minX": 437.25, "minY": 171.5, "maxX": 473.25, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006435394287109375}, "domain": "pixel"}, {"position": {"minX": 451.75, "minY": 227.5, "maxX": 472.75, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005725860595703125}, "domain": "pixel"}, {"position": {"minX": 378.5, "minY": 161.875, "maxX": 398.5, "maxY": 203.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005588531494140625}, "domain": "pixel"}, {"position": {"minX": 447.5, "minY": 181.0, "maxX": 467.5, "maxY": 210.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005466461181640625}, "domain": "pixel"}, {"position": {"minX": 446.0, "minY": 225.75, "maxX": 478.0, "maxY": 298.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005428314208984375}, "domain": "pixel"}, {"position": {"minX": 506.75, "minY": 57.8125, "maxX": 534.5, "maxY": 105.4375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005382537841796875}, "domain": "pixel"}, {"position": {"minX": 430.5, "minY": 278.75, "maxX": 458.5, "maxY": 320.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005107879638671875}, "domain": "pixel"}, {"position": {"minX": 505.5, "minY": 57.84375, "maxX": 542.5, "maxY": 121.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0049896240234375}, "domain": "pixel"}, {"position": {"minX": 407.5, "minY": 234.25, "maxX": 432.0, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004856109619140625}, "domain": "pixel"}, {"position": {"minX": 446.5, "minY": 175.875, "maxX": 477.0, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004680633544921875}, "domain": "pixel"}, {"position": {"minX": 620.5, "minY": 197.5, "maxX": 638.5, "maxY": 226.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004596710205078125}, "domain": "pixel"}, {"position": {"minX": 372.5, "minY": 156.75, "maxX": 408.5, "maxY": 211.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004314422607421875}, "domain": "pixel"}, {"position": {"minX": 392.25, "minY": 231.75, "maxX": 418.25, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036468505859375}, "domain": "pixel"}, {"position": {"minX": 438.25, "minY": 178.875, "maxX": 459.25, "maxY": 213.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00348663330078125}, "domain": "pixel"}, {"position": {"minX": 256.25, "minY": 165.875, "maxX": 273.25, "maxY": 196.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030231475830078125}, "domain": "pixel"}, {"position": {"minX": 235.25, "minY": 142.25, "maxX": 279.75, "maxY": 211.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029163360595703125}, "domain": "pixel"}, {"position": {"minX": 352.5, "minY": 130.25, "maxX": 387.0, "maxY": 203.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00255584716796875}, "domain": "pixel"}, {"position": {"minX": 352.5, "minY": 123.4375, "maxX": 374.5, "maxY": 156.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00238800048828125}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 224.625, "maxX": 409.0, "maxY": 265.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023784637451171875}, "domain": "pixel"}, {"position": {"minX": 513.0, "minY": 58.90625, "maxX": 531.0, "maxY": 93.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023632049560546875}, "domain": "pixel"}, {"position": {"minX": 335.0, "minY": 126.375, "maxX": 372.5, "maxY": 196.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002262115478515625}, "domain": "pixel"}, {"position": {"minX": 445.0, "minY": 277.75, "maxX": 471.0, "maxY": 318.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022182464599609375}, "domain": "pixel"}, {"position": {"minX": 208.625, "minY": 138.875, "maxX": 268.75, "maxY": 206.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022029876708984375}, "domain": "pixel"}, {"position": {"minX": 436.25, "minY": 277.75, "maxX": 474.25, "maxY": 328.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021991729736328125}, "domain": "pixel"}, {"position": {"minX": 398.5, "minY": 235.125, "maxX": 427.0, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021820068359375}, "domain": "pixel"}, {"position": {"minX": 371.75, "minY": 167.0, "maxX": 397.75, "maxY": 210.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002178192138671875}, "domain": "pixel"}, {"position": {"minX": 432.25, "minY": 206.5, "maxX": 457.25, "maxY": 249.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021152496337890625}, "domain": "pixel"}, {"position": {"minX": 284.0, "minY": 168.625, "maxX": 302.5, "maxY": 206.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021038055419921875}, "domain": "pixel"}, {"position": {"minX": 403.0, "minY": 180.5, "maxX": 424.0, "maxY": 215.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00205230712890625}, "domain": "pixel"}, {"position": {"minX": 450.5, "minY": 209.75, "maxX": 478.5, "maxY": 261.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00194549560546875}, "domain": "pixel"}, {"position": {"minX": 430.75, "minY": 190.625, "maxX": 476.75, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018367767333984375}, "domain": "pixel"}, {"position": {"minX": 229.0, "minY": 114.375, "maxX": 285.0, "maxY": 189.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018224716186523438}, "domain": "pixel"}, {"position": {"minX": 201.0, "minY": 138.75, "maxX": 253.0, "maxY": 195.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017957687377929688}, "domain": "pixel"}, {"position": {"minX": 414.75, "minY": 194.5, "maxX": 469.75, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001781463623046875}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 213.125, "maxX": 451.25, "maxY": 282.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016260147094726562}, "domain": "pixel"}, {"position": {"minX": 340.5, "minY": 104.875, "maxX": 381.5, "maxY": 167.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016164779663085938}, "domain": "pixel"}, {"position": {"minX": 445.75, "minY": 174.5, "maxX": 471.25, "maxY": 205.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015811920166015625}, "domain": "pixel"}, {"position": {"minX": 442.5, "minY": 177.25, "maxX": 463.0, "maxY": 204.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015802383422851562}, "domain": "pixel"}, {"position": {"minX": 401.5, "minY": 236.75, "maxX": 458.0, "maxY": 319.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001499176025390625}, "domain": "pixel"}, {"position": {"minX": 429.5, "minY": 289.25, "maxX": 448.5, "maxY": 324.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00145721435546875}, "domain": "pixel"}, {"position": {"minX": 140.0, "minY": 264.0, "maxX": 171.0, "maxY": 318.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001399993896484375}, "domain": "pixel"}, {"position": {"minX": 406.75, "minY": 184.25, "maxX": 429.25, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013799667358398438}, "domain": "pixel"}, {"position": {"minX": 621.0, "minY": 195.0, "maxX": 636.0, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013370513916015625}, "domain": "pixel"}, {"position": {"minX": 406.0, "minY": 208.375, "maxX": 447.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013208389282226562}, "domain": "pixel"}, {"position": {"minX": 607.0, "minY": 193.75, "maxX": 640.0, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013132095336914062}, "domain": "pixel"}, {"position": {"minX": 410.25, "minY": 261.25, "maxX": 457.75, "maxY": 329.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001270294189453125}, "domain": "pixel"}, {"position": {"minX": 453.75, "minY": 219.25, "maxX": 477.25, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011758804321289062}, "domain": "pixel"}, {"position": {"minX": 451.25, "minY": 161.875, "maxX": 480.75, "maxY": 209.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001163482666015625}, "domain": "pixel"}, {"position": {"minX": 336.5, "minY": 116.0, "maxX": 372.5, "maxY": 171.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011587142944335938}, "domain": "pixel"}, {"position": {"minX": 244.25, "minY": 162.375, "maxX": 278.25, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001140594482421875}, "domain": "pixel"}, {"position": {"minX": 456.0, "minY": 290.25, "maxX": 478.5, "maxY": 328.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001079559326171875}, "domain": "pixel"}, {"position": {"minX": 443.75, "minY": 261.75, "maxX": 476.75, "maxY": 327.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010690689086914062}, "domain": "pixel"}, {"position": {"minX": 371.25, "minY": 170.5, "maxX": 407.75, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010089874267578125}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_c275fd257fb5ee4140b1.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_c275fd257fb5ee4140b1.boxes2D.json new file mode 100644 index 0000000..10de01b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_59_c275fd257fb5ee4140b1.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 338.75, "minY": 216.25, "maxX": 358.25, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.368", "scores": {"class_score": 0.367919921875}, "domain": "pixel"}, {"position": {"minX": 449.0, "minY": 232.875, "maxX": 472.5, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.3671875}, "domain": "pixel"}, {"position": {"minX": 294.25, "minY": 210.875, "maxX": 312.75, "maxY": 235.375}, "class_id": 0, "box_caption": "coureur 0.350", "scores": {"class_score": 0.35009765625}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 243.0, "maxX": 544.0, "maxY": 271.5}, "class_id": 0, "box_caption": "coureur 0.349", "scores": {"class_score": 0.3486328125}, "domain": "pixel"}, {"position": {"minX": 579.5, "minY": 249.625, "maxX": 601.5, "maxY": 279.5}, "class_id": 0, "box_caption": "coureur 0.345", "scores": {"class_score": 0.3447265625}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 226.25, "maxX": 407.75, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.273", "scores": {"class_score": 0.272705078125}, "domain": "pixel"}, {"position": {"minX": 223.25, "minY": 201.625, "maxX": 241.0, "maxY": 225.125}, "class_id": 0, "box_caption": "coureur 0.194", "scores": {"class_score": 0.1942138671875}, "domain": "pixel"}, {"position": {"minX": 268.75, "minY": 202.75, "maxX": 281.75, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.052", "scores": {"class_score": 0.052337646484375}, "domain": "pixel"}, {"position": {"minX": 391.25, "minY": 222.0, "maxX": 413.25, "maxY": 250.25}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.0274200439453125}, "domain": "pixel"}, {"position": {"minX": 189.125, "minY": 196.125, "maxX": 203.375, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.01806640625}, "domain": "pixel"}, {"position": {"minX": 640.0, "minY": 221.625, "maxX": 660.0, "maxY": 245.375}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0143585205078125}, "domain": "pixel"}, {"position": {"minX": 393.5, "minY": 220.875, "maxX": 410.5, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01285552978515625}, "domain": "pixel"}, {"position": {"minX": 220.75, "minY": 196.75, "maxX": 239.0, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01261138916015625}, "domain": "pixel"}, {"position": {"minX": 271.75, "minY": 201.375, "maxX": 288.75, "maxY": 229.125}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00876617431640625}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 221.25, "maxX": 406.0, "maxY": 243.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00856781005859375}, "domain": "pixel"}, {"position": {"minX": 342.25, "minY": 222.375, "maxX": 360.75, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0083465576171875}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 227.5, "maxX": 469.25, "maxY": 255.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0079193115234375}, "domain": "pixel"}, {"position": {"minX": 215.375, "minY": 199.875, "maxX": 235.125, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00756072998046875}, "domain": "pixel"}, {"position": {"minX": 340.75, "minY": 211.125, "maxX": 355.25, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007335662841796875}, "domain": "pixel"}, {"position": {"minX": 294.0, "minY": 204.75, "maxX": 311.5, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006511688232421875}, "domain": "pixel"}, {"position": {"minX": 340.75, "minY": 224.125, "maxX": 356.75, "maxY": 251.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005859375}, "domain": "pixel"}, {"position": {"minX": 292.75, "minY": 204.625, "maxX": 316.75, "maxY": 238.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00536346435546875}, "domain": "pixel"}, {"position": {"minX": 228.875, "minY": 201.125, "maxX": 246.625, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004848480224609375}, "domain": "pixel"}, {"position": {"minX": 163.375, "minY": 200.625, "maxX": 179.625, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004276275634765625}, "domain": "pixel"}, {"position": {"minX": 636.0, "minY": 225.5, "maxX": 655.0, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036449432373046875}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 218.0, "maxX": 308.0, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.003246307373046875}, "domain": "pixel"}, {"position": {"minX": 159.625, "minY": 198.25, "maxX": 176.625, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030574798583984375}, "domain": "pixel"}, {"position": {"minX": 577.5, "minY": 255.25, "maxX": 599.5, "maxY": 284.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024433135986328125}, "domain": "pixel"}, {"position": {"minX": 192.0, "minY": 196.125, "maxX": 207.75, "maxY": 223.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002429962158203125}, "domain": "pixel"}, {"position": {"minX": 225.5, "minY": 195.75, "maxX": 242.5, "maxY": 221.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024127960205078125}, "domain": "pixel"}, {"position": {"minX": 521.0, "minY": 238.0, "maxX": 542.0, "maxY": 269.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00238037109375}, "domain": "pixel"}, {"position": {"minX": 191.375, "minY": 188.375, "maxX": 205.875, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023021697998046875}, "domain": "pixel"}, {"position": {"minX": 262.5, "minY": 200.125, "maxX": 278.5, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019388198852539062}, "domain": "pixel"}, {"position": {"minX": 618.5, "minY": 216.875, "maxX": 638.5, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019063949584960938}, "domain": "pixel"}, {"position": {"minX": 527.5, "minY": 248.125, "maxX": 546.5, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018682479858398438}, "domain": "pixel"}, {"position": {"minX": 114.625, "minY": 198.75, "maxX": 129.75, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001811981201171875}, "domain": "pixel"}, {"position": {"minX": 161.75, "minY": 189.375, "maxX": 176.75, "maxY": 217.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017375946044921875}, "domain": "pixel"}, {"position": {"minX": 156.5, "minY": 195.5, "maxX": 174.0, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00173187255859375}, "domain": "pixel"}, {"position": {"minX": 156.75, "minY": 202.25, "maxX": 172.75, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016412734985351562}, "domain": "pixel"}, {"position": {"minX": 269.0, "minY": 195.875, "maxX": 283.0, "maxY": 220.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015192031860351562}, "domain": "pixel"}, {"position": {"minX": 528.5, "minY": 243.25, "maxX": 553.5, "maxY": 275.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00147247314453125}, "domain": "pixel"}, {"position": {"minX": 526.5, "minY": 233.75, "maxX": 542.5, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012693405151367188}, "domain": "pixel"}, {"position": {"minX": 635.5, "minY": 218.5, "maxX": 657.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001171112060546875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_04987163bb2ac9cb8044.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_04987163bb2ac9cb8044.boxes2D.json new file mode 100644 index 0000000..2b2d5d9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_04987163bb2ac9cb8044.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 586.0, "minY": 254.125, "maxX": 605.0, "maxY": 278.75}, "class_id": 0, "box_caption": "coureur 0.422", "scores": {"class_score": 0.422119140625}, "domain": "pixel"}, {"position": {"minX": 455.5, "minY": 235.625, "maxX": 478.0, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.420", "scores": {"class_score": 0.419677734375}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 243.125, "maxX": 550.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.395", "scores": {"class_score": 0.39453125}, "domain": "pixel"}, {"position": {"minX": 347.0, "minY": 218.875, "maxX": 363.0, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.39111328125}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 210.25, "maxX": 320.5, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.388427734375}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 227.5, "maxX": 413.25, "maxY": 250.5}, "class_id": 0, "box_caption": "coureur 0.290", "scores": {"class_score": 0.2900390625}, "domain": "pixel"}, {"position": {"minX": 228.75, "minY": 201.0, "maxX": 246.5, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.277", "scores": {"class_score": 0.276611328125}, "domain": "pixel"}, {"position": {"minX": 164.625, "minY": 199.0, "maxX": 181.625, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.057", "scores": {"class_score": 0.0567626953125}, "domain": "pixel"}, {"position": {"minX": 121.6875, "minY": 189.125, "maxX": 140.5, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.051", "scores": {"class_score": 0.05145263671875}, "domain": "pixel"}, {"position": {"minX": 169.5, "minY": 200.875, "maxX": 184.0, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.030", "scores": {"class_score": 0.0303802490234375}, "domain": "pixel"}, {"position": {"minX": 160.875, "minY": 195.875, "maxX": 178.125, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.0162200927734375}, "domain": "pixel"}, {"position": {"minX": 224.875, "minY": 199.0, "maxX": 242.625, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.01561737060546875}, "domain": "pixel"}, {"position": {"minX": 565.0, "minY": 220.125, "maxX": 578.0, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01270294189453125}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 222.5, "maxX": 413.75, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0108795166015625}, "domain": "pixel"}, {"position": {"minX": 233.125, "minY": 206.75, "maxX": 247.125, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0086822509765625}, "domain": "pixel"}, {"position": {"minX": 154.75, "minY": 195.375, "maxX": 175.25, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00862884521484375}, "domain": "pixel"}, {"position": {"minX": 563.5, "minY": 222.75, "maxX": 577.5, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0084991455078125}, "domain": "pixel"}, {"position": {"minX": 117.5, "minY": 194.375, "maxX": 136.75, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007030487060546875}, "domain": "pixel"}, {"position": {"minX": 391.5, "minY": 232.125, "maxX": 411.0, "maxY": 254.375}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005542755126953125}, "domain": "pixel"}, {"position": {"minX": 122.0625, "minY": 195.5, "maxX": 138.5, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00534820556640625}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 225.0, "maxX": 410.25, "maxY": 249.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030841827392578125}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 216.375, "maxX": 369.25, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00206756591796875}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 212.5, "maxX": 362.25, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020084381103515625}, "domain": "pixel"}, {"position": {"minX": 559.5, "minY": 223.25, "maxX": 574.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018720626831054688}, "domain": "pixel"}, {"position": {"minX": 494.5, "minY": 77.125, "maxX": 524.0, "maxY": 125.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017919540405273438}, "domain": "pixel"}, {"position": {"minX": 184.0, "minY": 57.34375, "maxX": 224.75, "maxY": 110.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017118453979492188}, "domain": "pixel"}, {"position": {"minX": 117.6875, "minY": 199.875, "maxX": 133.5, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015306472778320312}, "domain": "pixel"}, {"position": {"minX": 149.0, "minY": 193.375, "maxX": 166.5, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001468658447265625}, "domain": "pixel"}, {"position": {"minX": 297.5, "minY": 207.875, "maxX": 316.0, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014352798461914062}, "domain": "pixel"}, {"position": {"minX": 158.75, "minY": 200.0, "maxX": 183.75, "maxY": 221.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013742446899414062}, "domain": "pixel"}, {"position": {"minX": 598.5, "minY": 217.375, "maxX": 612.5, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013685226440429688}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 206.375, "maxX": 186.5, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011205673217773438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_2a866382b6189cc37748.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_2a866382b6189cc37748.boxes2D.json new file mode 100644 index 0000000..bb0bab5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_2a866382b6189cc37748.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 519.5, "minY": 241.5, "maxX": 541.5, "maxY": 269.5}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.40869140625}, "domain": "pixel"}, {"position": {"minX": 288.75, "minY": 209.75, "maxX": 305.75, "maxY": 234.75}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 576.0, "minY": 250.125, "maxX": 596.0, "maxY": 276.5}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.372314453125}, "domain": "pixel"}, {"position": {"minX": 444.5, "minY": 235.0, "maxX": 467.0, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.355", "scores": {"class_score": 0.354736328125}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 223.625, "maxX": 400.75, "maxY": 247.625}, "class_id": 0, "box_caption": "coureur 0.338", "scores": {"class_score": 0.337890625}, "domain": "pixel"}, {"position": {"minX": 332.0, "minY": 217.875, "maxX": 353.0, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.328", "scores": {"class_score": 0.328369140625}, "domain": "pixel"}, {"position": {"minX": 217.375, "minY": 202.625, "maxX": 238.125, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.324", "scores": {"class_score": 0.32421875}, "domain": "pixel"}, {"position": {"minX": 155.75, "minY": 199.75, "maxX": 170.25, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.222", "scores": {"class_score": 0.2215576171875}, "domain": "pixel"}, {"position": {"minX": 224.5, "minY": 206.375, "maxX": 242.75, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.036", "scores": {"class_score": 0.036285400390625}, "domain": "pixel"}, {"position": {"minX": 159.375, "minY": 200.625, "maxX": 174.375, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.027374267578125}, "domain": "pixel"}, {"position": {"minX": 155.75, "minY": 204.75, "maxX": 171.0, "maxY": 224.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0137939453125}, "domain": "pixel"}, {"position": {"minX": 151.625, "minY": 201.625, "maxX": 168.375, "maxY": 220.875}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01287841796875}, "domain": "pixel"}, {"position": {"minX": 383.5, "minY": 228.5, "maxX": 400.5, "maxY": 250.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0091552734375}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 218.5, "maxX": 401.5, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00902557373046875}, "domain": "pixel"}, {"position": {"minX": 214.875, "minY": 205.875, "maxX": 233.125, "maxY": 226.375}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00885009765625}, "domain": "pixel"}, {"position": {"minX": 622.0, "minY": 217.875, "maxX": 638.0, "maxY": 238.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0076446533203125}, "domain": "pixel"}, {"position": {"minX": 569.5, "minY": 248.75, "maxX": 590.5, "maxY": 277.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0062103271484375}, "domain": "pixel"}, {"position": {"minX": 150.25, "minY": 194.125, "maxX": 167.25, "maxY": 217.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00402069091796875}, "domain": "pixel"}, {"position": {"minX": 231.75, "minY": 209.5, "maxX": 248.5, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035152435302734375}, "domain": "pixel"}, {"position": {"minX": 625.0, "minY": 218.25, "maxX": 644.0, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027065277099609375}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 207.125, "maxX": 310.5, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00266265869140625}, "domain": "pixel"}, {"position": {"minX": 388.0, "minY": 223.75, "maxX": 408.0, "maxY": 247.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022029876708984375}, "domain": "pixel"}, {"position": {"minX": 152.625, "minY": 200.0, "maxX": 175.625, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018739700317382812}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 218.625, "maxX": 359.25, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001750946044921875}, "domain": "pixel"}, {"position": {"minX": 246.75, "minY": 59.875, "maxX": 277.25, "maxY": 110.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017423629760742188}, "domain": "pixel"}, {"position": {"minX": 438.0, "minY": 228.25, "maxX": 472.5, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014858245849609375}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 243.75, "maxX": 546.5, "maxY": 274.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011348724365234375}, "domain": "pixel"}, {"position": {"minX": 326.5, "minY": 210.375, "maxX": 357.0, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010671615600585938}, "domain": "pixel"}, {"position": {"minX": 387.75, "minY": 209.625, "maxX": 403.25, "maxY": 239.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010318756103515625}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_35a00238c52c0b044a0c.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_35a00238c52c0b044a0c.boxes2D.json new file mode 100644 index 0000000..33b39a9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_35a00238c52c0b044a0c.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 458.5, "minY": 235.25, "maxX": 478.0, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.431", "scores": {"class_score": 0.430908203125}, "domain": "pixel"}, {"position": {"minX": 587.5, "minY": 253.125, "maxX": 604.5, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.3876953125}, "domain": "pixel"}, {"position": {"minX": 530.0, "minY": 244.375, "maxX": 551.0, "maxY": 272.0}, "class_id": 0, "box_caption": "coureur 0.384", "scores": {"class_score": 0.38427734375}, "domain": "pixel"}, {"position": {"minX": 347.25, "minY": 217.625, "maxX": 365.25, "maxY": 241.875}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.373779296875}, "domain": "pixel"}, {"position": {"minX": 304.75, "minY": 209.25, "maxX": 320.75, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.361", "scores": {"class_score": 0.36083984375}, "domain": "pixel"}, {"position": {"minX": 234.375, "minY": 201.125, "maxX": 251.625, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.338", "scores": {"class_score": 0.337646484375}, "domain": "pixel"}, {"position": {"minX": 399.5, "minY": 228.25, "maxX": 413.0, "maxY": 247.75}, "class_id": 0, "box_caption": "coureur 0.279", "scores": {"class_score": 0.27880859375}, "domain": "pixel"}, {"position": {"minX": 176.125, "minY": 197.5, "maxX": 192.375, "maxY": 218.25}, "class_id": 0, "box_caption": "coureur 0.066", "scores": {"class_score": 0.06585693359375}, "domain": "pixel"}, {"position": {"minX": 113.3125, "minY": 192.0, "maxX": 133.375, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.063", "scores": {"class_score": 0.06329345703125}, "domain": "pixel"}, {"position": {"minX": 178.25, "minY": 196.75, "maxX": 196.75, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.0435791015625}, "domain": "pixel"}, {"position": {"minX": 172.625, "minY": 199.0, "maxX": 188.375, "maxY": 219.75}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.033966064453125}, "domain": "pixel"}, {"position": {"minX": 184.5, "minY": 196.125, "maxX": 201.5, "maxY": 215.625}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0184783935546875}, "domain": "pixel"}, {"position": {"minX": 118.5625, "minY": 193.375, "maxX": 139.5, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.0081329345703125}, "domain": "pixel"}, {"position": {"minX": 342.5, "minY": 219.375, "maxX": 363.5, "maxY": 245.375}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00782012939453125}, "domain": "pixel"}, {"position": {"minX": 187.25, "minY": 198.875, "maxX": 203.5, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0067596435546875}, "domain": "pixel"}, {"position": {"minX": 397.0, "minY": 221.875, "maxX": 413.0, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006237030029296875}, "domain": "pixel"}, {"position": {"minX": 168.625, "minY": 200.75, "maxX": 182.875, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005580902099609375}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 225.0, "maxX": 417.25, "maxY": 248.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00438690185546875}, "domain": "pixel"}, {"position": {"minX": 295.5, "minY": 208.25, "maxX": 312.0, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003787994384765625}, "domain": "pixel"}, {"position": {"minX": 108.75, "minY": 186.0, "maxX": 129.125, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00310516357421875}, "domain": "pixel"}, {"position": {"minX": 194.5, "minY": 201.0, "maxX": 208.75, "maxY": 222.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029315948486328125}, "domain": "pixel"}, {"position": {"minX": 551.0, "minY": 217.0, "maxX": 565.0, "maxY": 238.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027904510498046875}, "domain": "pixel"}, {"position": {"minX": 154.375, "minY": 56.59375, "maxX": 192.375, "maxY": 111.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024509429931640625}, "domain": "pixel"}, {"position": {"minX": 172.0, "minY": 191.25, "maxX": 198.5, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015926361083984375}, "domain": "pixel"}, {"position": {"minX": 589.0, "minY": 258.75, "maxX": 605.0, "maxY": 282.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013599395751953125}, "domain": "pixel"}, {"position": {"minX": 554.5, "minY": 216.5, "maxX": 568.5, "maxY": 239.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012159347534179688}, "domain": "pixel"}, {"position": {"minX": 308.0, "minY": 206.0, "maxX": 327.0, "maxY": 232.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010614395141601562}, "domain": "pixel"}, {"position": {"minX": 237.0, "minY": 204.375, "maxX": 256.75, "maxY": 232.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00104522705078125}, "domain": "pixel"}, {"position": {"minX": 171.25, "minY": 205.875, "maxX": 187.25, "maxY": 225.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010223388671875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_48733418a3bc57355056.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_48733418a3bc57355056.boxes2D.json new file mode 100644 index 0000000..e3b2589 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_48733418a3bc57355056.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 459.0, "minY": 237.0, "maxX": 474.5, "maxY": 262.5}, "class_id": 0, "box_caption": "coureur 0.399", "scores": {"class_score": 0.3994140625}, "domain": "pixel"}, {"position": {"minX": 527.0, "minY": 242.125, "maxX": 556.0, "maxY": 270.75}, "class_id": 0, "box_caption": "coureur 0.386", "scores": {"class_score": 0.385986328125}, "domain": "pixel"}, {"position": {"minX": 588.0, "minY": 253.375, "maxX": 606.0, "maxY": 278.0}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.359130859375}, "domain": "pixel"}, {"position": {"minX": 346.0, "minY": 219.375, "maxX": 367.0, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.355", "scores": {"class_score": 0.35546875}, "domain": "pixel"}, {"position": {"minX": 232.875, "minY": 201.375, "maxX": 250.625, "maxY": 225.375}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.352294921875}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 228.25, "maxX": 413.5, "maxY": 252.25}, "class_id": 0, "box_caption": "coureur 0.323", "scores": {"class_score": 0.3232421875}, "domain": "pixel"}, {"position": {"minX": 303.75, "minY": 213.0, "maxX": 318.75, "maxY": 237.5}, "class_id": 0, "box_caption": "coureur 0.280", "scores": {"class_score": 0.279541015625}, "domain": "pixel"}, {"position": {"minX": 175.875, "minY": 198.25, "maxX": 188.875, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0247039794921875}, "domain": "pixel"}, {"position": {"minX": 105.3125, "minY": 189.25, "maxX": 124.9375, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01145172119140625}, "domain": "pixel"}, {"position": {"minX": 652.5, "minY": 229.125, "maxX": 666.5, "maxY": 251.625}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0108489990234375}, "domain": "pixel"}, {"position": {"minX": 131.125, "minY": 192.5, "maxX": 147.875, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0090484619140625}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 230.5, "maxX": 411.25, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006015777587890625}, "domain": "pixel"}, {"position": {"minX": 302.25, "minY": 219.375, "maxX": 317.75, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005710601806640625}, "domain": "pixel"}, {"position": {"minX": 396.75, "minY": 232.375, "maxX": 413.75, "maxY": 260.0}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005596160888671875}, "domain": "pixel"}, {"position": {"minX": 175.25, "minY": 59.09375, "maxX": 205.0, "maxY": 111.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00518798828125}, "domain": "pixel"}, {"position": {"minX": 156.75, "minY": 199.375, "maxX": 171.25, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00417327880859375}, "domain": "pixel"}, {"position": {"minX": 178.125, "minY": 196.5, "maxX": 191.375, "maxY": 217.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004119873046875}, "domain": "pixel"}, {"position": {"minX": 301.0, "minY": 208.375, "maxX": 322.5, "maxY": 237.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0036182403564453125}, "domain": "pixel"}, {"position": {"minX": 348.25, "minY": 223.875, "maxX": 370.25, "maxY": 246.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031890869140625}, "domain": "pixel"}, {"position": {"minX": 210.625, "minY": 200.25, "maxX": 224.875, "maxY": 223.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002758026123046875}, "domain": "pixel"}, {"position": {"minX": 397.25, "minY": 221.375, "maxX": 412.25, "maxY": 244.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026302337646484375}, "domain": "pixel"}, {"position": {"minX": 162.75, "minY": 200.25, "maxX": 177.0, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024280548095703125}, "domain": "pixel"}, {"position": {"minX": 207.0, "minY": 199.375, "maxX": 221.25, "maxY": 223.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002407073974609375}, "domain": "pixel"}, {"position": {"minX": 573.5, "minY": 218.625, "maxX": 586.5, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002208709716796875}, "domain": "pixel"}, {"position": {"minX": 229.375, "minY": 195.375, "maxX": 249.125, "maxY": 222.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021820068359375}, "domain": "pixel"}, {"position": {"minX": 156.25, "minY": 196.75, "maxX": 169.0, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002056121826171875}, "domain": "pixel"}, {"position": {"minX": 102.375, "minY": 186.75, "maxX": 119.875, "maxY": 216.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001628875732421875}, "domain": "pixel"}, {"position": {"minX": 299.0, "minY": 215.625, "maxX": 314.0, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014047622680664062}, "domain": "pixel"}, {"position": {"minX": 234.5, "minY": 204.25, "maxX": 253.25, "maxY": 234.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013885498046875}, "domain": "pixel"}, {"position": {"minX": 566.5, "minY": 219.125, "maxX": 580.5, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001354217529296875}, "domain": "pixel"}, {"position": {"minX": 137.0, "minY": 193.375, "maxX": 155.25, "maxY": 216.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012664794921875}, "domain": "pixel"}, {"position": {"minX": 480.25, "minY": 70.375, "maxX": 508.25, "maxY": 117.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011281967163085938}, "domain": "pixel"}, {"position": {"minX": 148.0, "minY": 194.375, "maxX": 166.0, "maxY": 215.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010833740234375}, "domain": "pixel"}, {"position": {"minX": 107.9375, "minY": 196.875, "maxX": 125.4375, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010461807250976562}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 223.75, "maxX": 587.0, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010385513305664062}, "domain": "pixel"}, {"position": {"minX": 142.625, "minY": 190.75, "maxX": 158.625, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010042190551757812}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_4c846c9af76363398236.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_4c846c9af76363398236.boxes2D.json new file mode 100644 index 0000000..6c42c8c --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_4c846c9af76363398236.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 575.0, "minY": 248.5, "maxX": 595.0, "maxY": 273.5}, "class_id": 0, "box_caption": "coureur 0.386", "scores": {"class_score": 0.38623046875}, "domain": "pixel"}, {"position": {"minX": 519.0, "minY": 239.625, "maxX": 545.0, "maxY": 266.75}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.377685546875}, "domain": "pixel"}, {"position": {"minX": 296.25, "minY": 206.5, "maxX": 312.75, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.328", "scores": {"class_score": 0.327880859375}, "domain": "pixel"}, {"position": {"minX": 337.5, "minY": 215.25, "maxX": 357.5, "maxY": 242.25}, "class_id": 0, "box_caption": "coureur 0.328", "scores": {"class_score": 0.32763671875}, "domain": "pixel"}, {"position": {"minX": 389.75, "minY": 225.5, "maxX": 402.75, "maxY": 244.25}, "class_id": 0, "box_caption": "coureur 0.321", "scores": {"class_score": 0.3212890625}, "domain": "pixel"}, {"position": {"minX": 449.5, "minY": 234.5, "maxX": 463.5, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.293", "scores": {"class_score": 0.293212890625}, "domain": "pixel"}, {"position": {"minX": 228.5, "minY": 198.25, "maxX": 245.5, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.255", "scores": {"class_score": 0.254638671875}, "domain": "pixel"}, {"position": {"minX": 172.125, "minY": 198.125, "maxX": 186.625, "maxY": 219.375}, "class_id": 0, "box_caption": "coureur 0.057", "scores": {"class_score": 0.057098388671875}, "domain": "pixel"}, {"position": {"minX": 167.375, "minY": 194.0, "maxX": 182.625, "maxY": 216.75}, "class_id": 0, "box_caption": "coureur 0.051", "scores": {"class_score": 0.0511474609375}, "domain": "pixel"}, {"position": {"minX": 447.25, "minY": 236.0, "maxX": 466.75, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.01849365234375}, "domain": "pixel"}, {"position": {"minX": 452.25, "minY": 234.25, "maxX": 468.25, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0166015625}, "domain": "pixel"}, {"position": {"minX": 384.0, "minY": 226.5, "maxX": 401.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007030487060546875}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 248.375, "maxX": 591.0, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005413055419921875}, "domain": "pixel"}, {"position": {"minX": 443.75, "minY": 235.125, "maxX": 459.75, "maxY": 261.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00519561767578125}, "domain": "pixel"}, {"position": {"minX": 224.0, "minY": 195.0, "maxX": 241.0, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004150390625}, "domain": "pixel"}, {"position": {"minX": 421.25, "minY": 209.5, "maxX": 433.75, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00321197509765625}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 228.875, "maxX": 465.25, "maxY": 253.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027313232421875}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 219.75, "maxX": 407.25, "maxY": 241.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026035308837890625}, "domain": "pixel"}, {"position": {"minX": 386.5, "minY": 224.375, "maxX": 406.0, "maxY": 246.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024852752685546875}, "domain": "pixel"}, {"position": {"minX": 578.5, "minY": 249.375, "maxX": 601.5, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00217437744140625}, "domain": "pixel"}, {"position": {"minX": 231.625, "minY": 194.125, "maxX": 250.375, "maxY": 220.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021343231201171875}, "domain": "pixel"}, {"position": {"minX": 187.5, "minY": 198.625, "maxX": 203.0, "maxY": 222.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016489028930664062}, "domain": "pixel"}, {"position": {"minX": 515.0, "minY": 227.5, "maxX": 552.0, "maxY": 268.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016489028930664062}, "domain": "pixel"}, {"position": {"minX": 605.0, "minY": 225.0, "maxX": 618.0, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014982223510742188}, "domain": "pixel"}, {"position": {"minX": 571.0, "minY": 243.625, "maxX": 599.0, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014543533325195312}, "domain": "pixel"}, {"position": {"minX": 174.75, "minY": 193.875, "maxX": 196.25, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012502670288085938}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 220.5, "maxX": 401.0, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010938644409179688}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_538565e18fb318378b1b.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_538565e18fb318378b1b.boxes2D.json new file mode 100644 index 0000000..b6654fd --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_538565e18fb318378b1b.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 526.0, "minY": 243.75, "maxX": 545.0, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.40869140625}, "domain": "pixel"}, {"position": {"minX": 579.0, "minY": 252.25, "maxX": 602.0, "maxY": 277.75}, "class_id": 0, "box_caption": "coureur 0.398", "scores": {"class_score": 0.397705078125}, "domain": "pixel"}, {"position": {"minX": 448.75, "minY": 235.125, "maxX": 472.75, "maxY": 260.75}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.3916015625}, "domain": "pixel"}, {"position": {"minX": 339.25, "minY": 218.875, "maxX": 356.25, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.390", "scores": {"class_score": 0.3896484375}, "domain": "pixel"}, {"position": {"minX": 293.75, "minY": 211.375, "maxX": 311.25, "maxY": 236.125}, "class_id": 0, "box_caption": "coureur 0.302", "scores": {"class_score": 0.301513671875}, "domain": "pixel"}, {"position": {"minX": 223.0, "minY": 200.75, "maxX": 240.25, "maxY": 226.25}, "class_id": 0, "box_caption": "coureur 0.272", "scores": {"class_score": 0.2724609375}, "domain": "pixel"}, {"position": {"minX": 391.5, "minY": 230.875, "maxX": 406.5, "maxY": 249.875}, "class_id": 0, "box_caption": "coureur 0.242", "scores": {"class_score": 0.2420654296875}, "domain": "pixel"}, {"position": {"minX": 163.75, "minY": 199.375, "maxX": 179.25, "maxY": 218.375}, "class_id": 0, "box_caption": "coureur 0.045", "scores": {"class_score": 0.044921875}, "domain": "pixel"}, {"position": {"minX": 269.25, "minY": 202.125, "maxX": 282.75, "maxY": 223.375}, "class_id": 0, "box_caption": "coureur 0.025", "scores": {"class_score": 0.0252838134765625}, "domain": "pixel"}, {"position": {"minX": 162.0, "minY": 191.0, "maxX": 179.25, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0191802978515625}, "domain": "pixel"}, {"position": {"minX": 218.75, "minY": 201.875, "maxX": 235.75, "maxY": 226.125}, "class_id": 0, "box_caption": "coureur 0.016", "scores": {"class_score": 0.015594482421875}, "domain": "pixel"}, {"position": {"minX": 115.0625, "minY": 200.75, "maxX": 129.875, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01201629638671875}, "domain": "pixel"}, {"position": {"minX": 159.125, "minY": 200.75, "maxX": 174.375, "maxY": 219.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01129150390625}, "domain": "pixel"}, {"position": {"minX": 187.5, "minY": 194.625, "maxX": 202.75, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00801849365234375}, "domain": "pixel"}, {"position": {"minX": 636.0, "minY": 225.25, "maxX": 653.0, "maxY": 243.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005451202392578125}, "domain": "pixel"}, {"position": {"minX": 170.625, "minY": 190.125, "maxX": 187.875, "maxY": 215.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004756927490234375}, "domain": "pixel"}, {"position": {"minX": 340.0, "minY": 218.375, "maxX": 360.5, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00447845458984375}, "domain": "pixel"}, {"position": {"minX": 273.25, "minY": 203.375, "maxX": 287.75, "maxY": 227.875}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038967132568359375}, "domain": "pixel"}, {"position": {"minX": 110.1875, "minY": 193.375, "maxX": 126.8125, "maxY": 218.375}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0038623809814453125}, "domain": "pixel"}, {"position": {"minX": 226.875, "minY": 203.125, "maxX": 245.125, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003662109375}, "domain": "pixel"}, {"position": {"minX": 289.25, "minY": 216.125, "maxX": 306.75, "maxY": 237.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.0035762786865234375}, "domain": "pixel"}, {"position": {"minX": 628.5, "minY": 220.25, "maxX": 644.5, "maxY": 239.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031452178955078125}, "domain": "pixel"}, {"position": {"minX": 171.5, "minY": 198.625, "maxX": 187.5, "maxY": 220.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030059814453125}, "domain": "pixel"}, {"position": {"minX": 640.5, "minY": 224.75, "maxX": 658.5, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0029125213623046875}, "domain": "pixel"}, {"position": {"minX": 389.5, "minY": 221.375, "maxX": 406.5, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027332305908203125}, "domain": "pixel"}, {"position": {"minX": 629.5, "minY": 224.0, "maxX": 645.5, "maxY": 243.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00269317626953125}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 207.75, "maxX": 317.5, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002681732177734375}, "domain": "pixel"}, {"position": {"minX": 621.5, "minY": 219.125, "maxX": 636.5, "maxY": 238.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024852752685546875}, "domain": "pixel"}, {"position": {"minX": 265.75, "minY": 201.0, "maxX": 279.75, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024204254150390625}, "domain": "pixel"}, {"position": {"minX": 291.75, "minY": 218.125, "maxX": 309.25, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00225067138671875}, "domain": "pixel"}, {"position": {"minX": 595.0, "minY": 16.9375, "maxX": 641.0, "maxY": 73.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020503997802734375}, "domain": "pixel"}, {"position": {"minX": 572.5, "minY": 254.875, "maxX": 598.5, "maxY": 278.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015554428100585938}, "domain": "pixel"}, {"position": {"minX": 179.625, "minY": 194.25, "maxX": 197.625, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015087127685546875}, "domain": "pixel"}, {"position": {"minX": 188.875, "minY": 201.75, "maxX": 202.875, "maxY": 218.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014896392822265625}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 233.25, "maxX": 407.0, "maxY": 260.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00147247314453125}, "domain": "pixel"}, {"position": {"minX": 305.75, "minY": 78.375, "maxX": 345.25, "maxY": 137.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013065338134765625}, "domain": "pixel"}, {"position": {"minX": 540.0, "minY": 12.15625, "maxX": 591.0, "maxY": 100.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013017654418945312}, "domain": "pixel"}, {"position": {"minX": 157.0, "minY": 186.5, "maxX": 183.5, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 441.0, "minY": 230.0, "maxX": 476.0, "maxY": 266.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001232147216796875}, "domain": "pixel"}, {"position": {"minX": 614.5, "minY": 219.125, "maxX": 628.5, "maxY": 238.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012006759643554688}, "domain": "pixel"}, {"position": {"minX": 292.25, "minY": 205.5, "maxX": 311.75, "maxY": 230.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00110626220703125}, "domain": "pixel"}, {"position": {"minX": 401.75, "minY": 7.9375, "maxX": 477.75, "maxY": 104.8125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00110626220703125}, "domain": "pixel"}, {"position": {"minX": 222.0, "minY": 62.25, "maxX": 251.25, "maxY": 109.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010919570922851562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_7eacc743031f8500f046.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_7eacc743031f8500f046.boxes2D.json new file mode 100644 index 0000000..b696018 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_7eacc743031f8500f046.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 441.75, "minY": 227.875, "maxX": 460.75, "maxY": 252.875}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.380126953125}, "domain": "pixel"}, {"position": {"minX": 511.25, "minY": 237.625, "maxX": 533.5, "maxY": 263.5}, "class_id": 0, "box_caption": "coureur 0.353", "scores": {"class_score": 0.35302734375}, "domain": "pixel"}, {"position": {"minX": 289.5, "minY": 204.375, "maxX": 307.0, "maxY": 228.875}, "class_id": 0, "box_caption": "coureur 0.337", "scores": {"class_score": 0.3369140625}, "domain": "pixel"}, {"position": {"minX": 568.5, "minY": 243.5, "maxX": 587.5, "maxY": 269.0}, "class_id": 0, "box_caption": "coureur 0.332", "scores": {"class_score": 0.33203125}, "domain": "pixel"}, {"position": {"minX": 332.75, "minY": 213.875, "maxX": 346.25, "maxY": 235.875}, "class_id": 0, "box_caption": "coureur 0.327", "scores": {"class_score": 0.326904296875}, "domain": "pixel"}, {"position": {"minX": 224.625, "minY": 193.0, "maxX": 241.375, "maxY": 219.0}, "class_id": 0, "box_caption": "coureur 0.308", "scores": {"class_score": 0.3076171875}, "domain": "pixel"}, {"position": {"minX": 383.75, "minY": 223.75, "maxX": 397.25, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.291", "scores": {"class_score": 0.290771484375}, "domain": "pixel"}, {"position": {"minX": 158.375, "minY": 194.0, "maxX": 175.625, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.228", "scores": {"class_score": 0.227783203125}, "domain": "pixel"}, {"position": {"minX": 332.5, "minY": 218.375, "maxX": 347.5, "maxY": 241.375}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.03399658203125}, "domain": "pixel"}, {"position": {"minX": 156.625, "minY": 188.75, "maxX": 174.375, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0193939208984375}, "domain": "pixel"}, {"position": {"minX": 378.0, "minY": 220.25, "maxX": 394.0, "maxY": 243.0}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0141754150390625}, "domain": "pixel"}, {"position": {"minX": 383.5, "minY": 227.5, "maxX": 397.5, "maxY": 248.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01236724853515625}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 216.5, "maxX": 398.5, "maxY": 239.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00881195068359375}, "domain": "pixel"}, {"position": {"minX": 150.625, "minY": 192.0, "maxX": 169.625, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00794219970703125}, "domain": "pixel"}, {"position": {"minX": 514.0, "minY": 233.0, "maxX": 530.0, "maxY": 258.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007595062255859375}, "domain": "pixel"}, {"position": {"minX": 474.25, "minY": 235.75, "maxX": 489.25, "maxY": 255.75}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00731658935546875}, "domain": "pixel"}, {"position": {"minX": 381.25, "minY": 213.75, "maxX": 396.75, "maxY": 236.0}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003997802734375}, "domain": "pixel"}, {"position": {"minX": 381.25, "minY": 222.25, "maxX": 401.25, "maxY": 244.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026149749755859375}, "domain": "pixel"}, {"position": {"minX": 471.75, "minY": 238.75, "maxX": 486.75, "maxY": 258.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024433135986328125}, "domain": "pixel"}, {"position": {"minX": 332.25, "minY": 209.0, "maxX": 351.25, "maxY": 235.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020465850830078125}, "domain": "pixel"}, {"position": {"minX": 165.75, "minY": 189.625, "maxX": 181.75, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019397735595703125}, "domain": "pixel"}, {"position": {"minX": 127.5, "minY": 187.25, "maxX": 145.25, "maxY": 212.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00174713134765625}, "domain": "pixel"}, {"position": {"minX": 333.0, "minY": 204.5, "maxX": 347.5, "maxY": 231.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016889572143554688}, "domain": "pixel"}, {"position": {"minX": 414.25, "minY": 208.75, "maxX": 427.75, "maxY": 229.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013761520385742188}, "domain": "pixel"}, {"position": {"minX": 460.0, "minY": 231.25, "maxX": 479.5, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001373291015625}, "domain": "pixel"}, {"position": {"minX": 124.375, "minY": 193.375, "maxX": 140.375, "maxY": 214.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013589859008789062}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 198.25, "maxX": 246.25, "maxY": 223.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001316070556640625}, "domain": "pixel"}, {"position": {"minX": 541.5, "minY": 210.125, "maxX": 554.5, "maxY": 230.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012664794921875}, "domain": "pixel"}, {"position": {"minX": 153.75, "minY": 194.25, "maxX": 179.5, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012235641479492188}, "domain": "pixel"}, {"position": {"minX": 504.75, "minY": 236.375, "maxX": 527.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011777877807617188}, "domain": "pixel"}, {"position": {"minX": 504.0, "minY": 228.5, "maxX": 539.0, "maxY": 267.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011262893676757812}, "domain": "pixel"}, {"position": {"minX": 563.5, "minY": 246.625, "maxX": 591.5, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011186599731445312}, "domain": "pixel"}, {"position": {"minX": 357.5, "minY": 215.375, "maxX": 371.5, "maxY": 237.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010595321655273438}, "domain": "pixel"}, {"position": {"minX": 288.5, "minY": 208.125, "maxX": 308.5, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00103759765625}, "domain": "pixel"}, {"position": {"minX": 292.0, "minY": 205.375, "maxX": 312.0, "maxY": 231.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010290145874023438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_81e4e82e7b2af3b2fe06.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_81e4e82e7b2af3b2fe06.boxes2D.json new file mode 100644 index 0000000..a77fb2b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_81e4e82e7b2af3b2fe06.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 455.75, "minY": 234.875, "maxX": 476.25, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.403", "scores": {"class_score": 0.40283203125}, "domain": "pixel"}, {"position": {"minX": 586.0, "minY": 250.625, "maxX": 606.0, "maxY": 275.5}, "class_id": 0, "box_caption": "coureur 0.402", "scores": {"class_score": 0.402099609375}, "domain": "pixel"}, {"position": {"minX": 529.5, "minY": 244.0, "maxX": 550.5, "maxY": 273.0}, "class_id": 0, "box_caption": "coureur 0.391", "scores": {"class_score": 0.39111328125}, "domain": "pixel"}, {"position": {"minX": 348.0, "minY": 218.125, "maxX": 362.5, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.373779296875}, "domain": "pixel"}, {"position": {"minX": 304.0, "minY": 209.5, "maxX": 320.5, "maxY": 234.0}, "class_id": 0, "box_caption": "coureur 0.365", "scores": {"class_score": 0.365234375}, "domain": "pixel"}, {"position": {"minX": 398.25, "minY": 230.5, "maxX": 412.75, "maxY": 250.75}, "class_id": 0, "box_caption": "coureur 0.310", "scores": {"class_score": 0.310302734375}, "domain": "pixel"}, {"position": {"minX": 235.0, "minY": 200.0, "maxX": 254.0, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.280", "scores": {"class_score": 0.27978515625}, "domain": "pixel"}, {"position": {"minX": 170.5, "minY": 197.875, "maxX": 186.25, "maxY": 220.375}, "class_id": 0, "box_caption": "coureur 0.181", "scores": {"class_score": 0.181396484375}, "domain": "pixel"}, {"position": {"minX": 165.75, "minY": 194.875, "maxX": 182.75, "maxY": 216.875}, "class_id": 0, "box_caption": "coureur 0.088", "scores": {"class_score": 0.08837890625}, "domain": "pixel"}, {"position": {"minX": 245.125, "minY": 205.75, "maxX": 263.25, "maxY": 227.5}, "class_id": 0, "box_caption": "coureur 0.044", "scores": {"class_score": 0.043670654296875}, "domain": "pixel"}, {"position": {"minX": 238.0, "minY": 202.625, "maxX": 259.25, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.042", "scores": {"class_score": 0.041595458984375}, "domain": "pixel"}, {"position": {"minX": 249.0, "minY": 208.5, "maxX": 266.0, "maxY": 229.5}, "class_id": 0, "box_caption": "coureur 0.028", "scores": {"class_score": 0.02777099609375}, "domain": "pixel"}, {"position": {"minX": 176.0, "minY": 201.125, "maxX": 190.75, "maxY": 221.625}, "class_id": 0, "box_caption": "coureur 0.027", "scores": {"class_score": 0.026580810546875}, "domain": "pixel"}, {"position": {"minX": 397.75, "minY": 233.75, "maxX": 413.25, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0110015869140625}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 229.875, "maxX": 411.0, "maxY": 255.625}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007465362548828125}, "domain": "pixel"}, {"position": {"minX": 135.75, "minY": 56.75, "maxX": 174.5, "maxY": 111.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00521087646484375}, "domain": "pixel"}, {"position": {"minX": 300.5, "minY": 203.0, "maxX": 320.0, "maxY": 231.75}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00411224365234375}, "domain": "pixel"}, {"position": {"minX": 172.625, "minY": 204.0, "maxX": 188.625, "maxY": 225.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00390625}, "domain": "pixel"}, {"position": {"minX": 175.25, "minY": 195.5, "maxX": 192.0, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002666473388671875}, "domain": "pixel"}, {"position": {"minX": 298.0, "minY": 207.375, "maxX": 314.5, "maxY": 232.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00218963623046875}, "domain": "pixel"}, {"position": {"minX": 396.25, "minY": 225.625, "maxX": 416.75, "maxY": 252.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021495819091796875}, "domain": "pixel"}, {"position": {"minX": 158.25, "minY": 192.0, "maxX": 177.0, "maxY": 215.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018625259399414062}, "domain": "pixel"}, {"position": {"minX": 255.5, "minY": 207.375, "maxX": 273.0, "maxY": 230.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017213821411132812}, "domain": "pixel"}, {"position": {"minX": 167.25, "minY": 198.875, "maxX": 191.25, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015125274658203125}, "domain": "pixel"}, {"position": {"minX": 500.0, "minY": 216.375, "maxX": 514.5, "maxY": 236.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014963150024414062}, "domain": "pixel"}, {"position": {"minX": 501.25, "minY": 210.25, "maxX": 515.0, "maxY": 232.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014247894287109375}, "domain": "pixel"}, {"position": {"minX": 347.5, "minY": 224.125, "maxX": 362.5, "maxY": 252.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013885498046875}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 220.125, "maxX": 412.5, "maxY": 245.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012798309326171875}, "domain": "pixel"}, {"position": {"minX": 187.5, "minY": 172.375, "maxX": 206.25, "maxY": 201.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010538101196289062}, "domain": "pixel"}, {"position": {"minX": 250.5, "minY": 214.5, "maxX": 267.5, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010461807250976562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_ae0f031939e7e64026a9.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_ae0f031939e7e64026a9.boxes2D.json new file mode 100644 index 0000000..d8d789b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_ae0f031939e7e64026a9.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 526.0, "minY": 241.0, "maxX": 551.0, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.394", "scores": {"class_score": 0.394287109375}, "domain": "pixel"}, {"position": {"minX": 346.75, "minY": 217.75, "maxX": 364.75, "maxY": 241.75}, "class_id": 0, "box_caption": "coureur 0.381", "scores": {"class_score": 0.380615234375}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 209.625, "maxX": 317.5, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.371337890625}, "domain": "pixel"}, {"position": {"minX": 455.25, "minY": 233.875, "maxX": 470.75, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.367", "scores": {"class_score": 0.3671875}, "domain": "pixel"}, {"position": {"minX": 585.5, "minY": 250.875, "maxX": 602.5, "maxY": 275.25}, "class_id": 0, "box_caption": "coureur 0.339", "scores": {"class_score": 0.339111328125}, "domain": "pixel"}, {"position": {"minX": 234.375, "minY": 200.5, "maxX": 252.375, "maxY": 225.5}, "class_id": 0, "box_caption": "coureur 0.296", "scores": {"class_score": 0.296142578125}, "domain": "pixel"}, {"position": {"minX": 395.0, "minY": 227.625, "maxX": 409.5, "maxY": 250.375}, "class_id": 0, "box_caption": "coureur 0.286", "scores": {"class_score": 0.285888671875}, "domain": "pixel"}, {"position": {"minX": 172.5, "minY": 197.125, "maxX": 188.5, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.183", "scores": {"class_score": 0.18310546875}, "domain": "pixel"}, {"position": {"minX": 138.5, "minY": 194.5, "maxX": 153.75, "maxY": 214.25}, "class_id": 0, "box_caption": "coureur 0.059", "scores": {"class_score": 0.059295654296875}, "domain": "pixel"}, {"position": {"minX": 176.875, "minY": 199.75, "maxX": 191.625, "maxY": 220.5}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.04620361328125}, "domain": "pixel"}, {"position": {"minX": 390.0, "minY": 229.5, "maxX": 410.5, "maxY": 253.5}, "class_id": 0, "box_caption": "coureur 0.043", "scores": {"class_score": 0.042633056640625}, "domain": "pixel"}, {"position": {"minX": 299.25, "minY": 207.0, "maxX": 321.25, "maxY": 237.25}, "class_id": 0, "box_caption": "coureur 0.034", "scores": {"class_score": 0.03363037109375}, "domain": "pixel"}, {"position": {"minX": 165.625, "minY": 193.125, "maxX": 185.125, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.0109405517578125}, "domain": "pixel"}, {"position": {"minX": 396.5, "minY": 221.625, "maxX": 411.0, "maxY": 244.375}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0093841552734375}, "domain": "pixel"}, {"position": {"minX": 135.375, "minY": 191.0, "maxX": 149.875, "maxY": 214.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0073394775390625}, "domain": "pixel"}, {"position": {"minX": 396.75, "minY": 225.5, "maxX": 415.25, "maxY": 247.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004589080810546875}, "domain": "pixel"}, {"position": {"minX": 230.0, "minY": 203.875, "maxX": 248.5, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.00453948974609375}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 191.0, "maxX": 193.375, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002658843994140625}, "domain": "pixel"}, {"position": {"minX": 141.0, "minY": 195.375, "maxX": 157.5, "maxY": 219.875}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002651214599609375}, "domain": "pixel"}, {"position": {"minX": 302.0, "minY": 217.375, "maxX": 317.5, "maxY": 243.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026397705078125}, "domain": "pixel"}, {"position": {"minX": 144.5, "minY": 194.5, "maxX": 161.25, "maxY": 214.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0024127960205078125}, "domain": "pixel"}, {"position": {"minX": 456.75, "minY": 229.25, "maxX": 473.75, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023593902587890625}, "domain": "pixel"}, {"position": {"minX": 298.25, "minY": 212.5, "maxX": 315.25, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021038055419921875}, "domain": "pixel"}, {"position": {"minX": 494.0, "minY": 216.875, "maxX": 508.0, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001827239990234375}, "domain": "pixel"}, {"position": {"minX": 227.875, "minY": 194.5, "maxX": 250.375, "maxY": 222.25}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017070770263671875}, "domain": "pixel"}, {"position": {"minX": 167.125, "minY": 198.625, "maxX": 184.625, "maxY": 220.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001682281494140625}, "domain": "pixel"}, {"position": {"minX": 500.0, "minY": 216.875, "maxX": 514.0, "maxY": 235.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015382766723632812}, "domain": "pixel"}, {"position": {"minX": 133.875, "minY": 196.5, "maxX": 150.375, "maxY": 218.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015325546264648438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_b1a260da98d063aac057.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_b1a260da98d063aac057.boxes2D.json new file mode 100644 index 0000000..f5ba277 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_b1a260da98d063aac057.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 440.75, "minY": 221.875, "maxX": 463.25, "maxY": 247.375}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.3916015625}, "domain": "pixel"}, {"position": {"minX": 511.5, "minY": 232.875, "maxX": 531.5, "maxY": 259.5}, "class_id": 0, "box_caption": "coureur 0.387", "scores": {"class_score": 0.387451171875}, "domain": "pixel"}, {"position": {"minX": 567.0, "minY": 239.75, "maxX": 584.0, "maxY": 264.5}, "class_id": 0, "box_caption": "coureur 0.366", "scores": {"class_score": 0.3662109375}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 199.625, "maxX": 309.5, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.341", "scores": {"class_score": 0.34130859375}, "domain": "pixel"}, {"position": {"minX": 331.25, "minY": 211.125, "maxX": 348.25, "maxY": 231.125}, "class_id": 0, "box_caption": "coureur 0.330", "scores": {"class_score": 0.329833984375}, "domain": "pixel"}, {"position": {"minX": 226.25, "minY": 192.625, "maxX": 244.75, "maxY": 218.375}, "class_id": 0, "box_caption": "coureur 0.281", "scores": {"class_score": 0.281005859375}, "domain": "pixel"}, {"position": {"minX": 382.5, "minY": 216.5, "maxX": 397.0, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.278", "scores": {"class_score": 0.278076171875}, "domain": "pixel"}, {"position": {"minX": 161.625, "minY": 183.875, "maxX": 179.875, "maxY": 209.625}, "class_id": 0, "box_caption": "coureur 0.219", "scores": {"class_score": 0.21923828125}, "domain": "pixel"}, {"position": {"minX": 100.4375, "minY": 184.75, "maxX": 112.9375, "maxY": 207.0}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.045501708984375}, "domain": "pixel"}, {"position": {"minX": 165.625, "minY": 185.0, "maxX": 184.125, "maxY": 209.0}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0172271728515625}, "domain": "pixel"}, {"position": {"minX": 158.125, "minY": 175.375, "maxX": 181.125, "maxY": 209.125}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01259613037109375}, "domain": "pixel"}, {"position": {"minX": 505.5, "minY": 233.5, "maxX": 526.5, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.010101318359375}, "domain": "pixel"}, {"position": {"minX": 328.75, "minY": 215.375, "maxX": 345.25, "maxY": 234.625}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0100555419921875}, "domain": "pixel"}, {"position": {"minX": 229.75, "minY": 196.875, "maxX": 247.5, "maxY": 221.375}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.0065765380859375}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 209.75, "maxX": 399.25, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0061492919921875}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 220.875, "maxX": 399.5, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.00604248046875}, "domain": "pixel"}, {"position": {"minX": 380.25, "minY": 216.375, "maxX": 401.25, "maxY": 241.125}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031757354736328125}, "domain": "pixel"}, {"position": {"minX": 159.375, "minY": 187.75, "maxX": 177.125, "maxY": 212.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002841949462890625}, "domain": "pixel"}, {"position": {"minX": 103.75, "minY": 185.125, "maxX": 117.625, "maxY": 208.375}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026493072509765625}, "domain": "pixel"}, {"position": {"minX": 157.875, "minY": 179.75, "maxX": 175.375, "maxY": 203.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002414703369140625}, "domain": "pixel"}, {"position": {"minX": 167.75, "minY": 191.25, "maxX": 184.25, "maxY": 213.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018291473388671875}, "domain": "pixel"}, {"position": {"minX": 152.0, "minY": 185.125, "maxX": 168.75, "maxY": 210.375}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016765594482421875}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_b5b7d8c32b4c379a053e.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_b5b7d8c32b4c379a053e.boxes2D.json new file mode 100644 index 0000000..f940909 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_b5b7d8c32b4c379a053e.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 330.75, "minY": 209.625, "maxX": 350.75, "maxY": 233.625}, "class_id": 0, "box_caption": "coureur 0.397", "scores": {"class_score": 0.39697265625}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 224.0, "maxX": 461.75, "maxY": 251.25}, "class_id": 0, "box_caption": "coureur 0.388", "scores": {"class_score": 0.3876953125}, "domain": "pixel"}, {"position": {"minX": 567.5, "minY": 241.875, "maxX": 584.5, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.378", "scores": {"class_score": 0.3779296875}, "domain": "pixel"}, {"position": {"minX": 512.0, "minY": 236.125, "maxX": 531.0, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.344482421875}, "domain": "pixel"}, {"position": {"minX": 290.75, "minY": 202.375, "maxX": 305.75, "maxY": 226.875}, "class_id": 0, "box_caption": "coureur 0.318", "scores": {"class_score": 0.31787109375}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 217.875, "maxX": 397.0, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.307", "scores": {"class_score": 0.306640625}, "domain": "pixel"}, {"position": {"minX": 225.625, "minY": 194.25, "maxX": 240.125, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.252", "scores": {"class_score": 0.251953125}, "domain": "pixel"}, {"position": {"minX": 163.25, "minY": 190.5, "maxX": 178.5, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.213", "scores": {"class_score": 0.212890625}, "domain": "pixel"}, {"position": {"minX": 382.0, "minY": 214.75, "maxX": 396.0, "maxY": 233.75}, "class_id": 0, "box_caption": "coureur 0.050", "scores": {"class_score": 0.049774169921875}, "domain": "pixel"}, {"position": {"minX": 165.875, "minY": 191.875, "maxX": 182.875, "maxY": 215.125}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.01513671875}, "domain": "pixel"}, {"position": {"minX": 164.125, "minY": 197.125, "maxX": 178.625, "maxY": 217.375}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01114654541015625}, "domain": "pixel"}, {"position": {"minX": 157.625, "minY": 187.0, "maxX": 176.125, "maxY": 212.0}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00859832763671875}, "domain": "pixel"}, {"position": {"minX": 507.25, "minY": 235.625, "maxX": 526.0, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006282806396484375}, "domain": "pixel"}, {"position": {"minX": 383.75, "minY": 221.5, "maxX": 400.25, "maxY": 241.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.0057525634765625}, "domain": "pixel"}, {"position": {"minX": 384.75, "minY": 213.25, "maxX": 399.75, "maxY": 233.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005596160888671875}, "domain": "pixel"}, {"position": {"minX": 379.0, "minY": 216.125, "maxX": 395.0, "maxY": 239.375}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005031585693359375}, "domain": "pixel"}, {"position": {"minX": 327.25, "minY": 213.5, "maxX": 347.75, "maxY": 237.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00299835205078125}, "domain": "pixel"}, {"position": {"minX": 222.0, "minY": 193.625, "maxX": 244.5, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002841949462890625}, "domain": "pixel"}, {"position": {"minX": 411.5, "minY": 203.125, "maxX": 424.5, "maxY": 225.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002193450927734375}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 237.25, "maxX": 586.0, "maxY": 262.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019168853759765625}, "domain": "pixel"}, {"position": {"minX": 150.125, "minY": 189.0, "maxX": 167.375, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017919540405273438}, "domain": "pixel"}, {"position": {"minX": 225.125, "minY": 187.0, "maxX": 242.375, "maxY": 215.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013446807861328125}, "domain": "pixel"}, {"position": {"minX": 406.25, "minY": 201.875, "maxX": 421.75, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012426376342773438}, "domain": "pixel"}, {"position": {"minX": 412.5, "minY": 209.625, "maxX": 424.0, "maxY": 227.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011281967163085938}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_bc10215c0743642f9e47.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_bc10215c0743642f9e47.boxes2D.json new file mode 100644 index 0000000..c8523f0 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_bc10215c0743642f9e47.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 520.0, "minY": 240.5, "maxX": 545.0, "maxY": 268.0}, "class_id": 0, "box_caption": "coureur 0.415", "scores": {"class_score": 0.4150390625}, "domain": "pixel"}, {"position": {"minX": 577.0, "minY": 251.375, "maxX": 598.0, "maxY": 277.0}, "class_id": 0, "box_caption": "coureur 0.377", "scores": {"class_score": 0.377197265625}, "domain": "pixel"}, {"position": {"minX": 448.75, "minY": 235.375, "maxX": 469.25, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.364", "scores": {"class_score": 0.363525390625}, "domain": "pixel"}, {"position": {"minX": 293.0, "minY": 210.125, "maxX": 310.0, "maxY": 235.125}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.352294921875}, "domain": "pixel"}, {"position": {"minX": 334.75, "minY": 217.75, "maxX": 353.25, "maxY": 244.0}, "class_id": 0, "box_caption": "coureur 0.324", "scores": {"class_score": 0.32373046875}, "domain": "pixel"}, {"position": {"minX": 384.5, "minY": 227.125, "maxX": 404.5, "maxY": 252.625}, "class_id": 0, "box_caption": "coureur 0.318", "scores": {"class_score": 0.31787109375}, "domain": "pixel"}, {"position": {"minX": 217.875, "minY": 204.375, "maxX": 233.375, "maxY": 226.375}, "class_id": 0, "box_caption": "coureur 0.268", "scores": {"class_score": 0.267822265625}, "domain": "pixel"}, {"position": {"minX": 156.25, "minY": 199.5, "maxX": 172.75, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.211", "scores": {"class_score": 0.2109375}, "domain": "pixel"}, {"position": {"minX": 159.625, "minY": 201.875, "maxX": 176.125, "maxY": 221.125}, "class_id": 0, "box_caption": "coureur 0.112", "scores": {"class_score": 0.111572265625}, "domain": "pixel"}, {"position": {"minX": 380.5, "minY": 231.125, "maxX": 402.5, "maxY": 255.125}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0184478759765625}, "domain": "pixel"}, {"position": {"minX": 150.5, "minY": 196.0, "maxX": 169.5, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.018", "scores": {"class_score": 0.0181121826171875}, "domain": "pixel"}, {"position": {"minX": 387.75, "minY": 225.125, "maxX": 408.75, "maxY": 248.625}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.0172576904296875}, "domain": "pixel"}, {"position": {"minX": 157.125, "minY": 204.5, "maxX": 173.125, "maxY": 224.25}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01067352294921875}, "domain": "pixel"}, {"position": {"minX": 222.375, "minY": 203.25, "maxX": 240.625, "maxY": 224.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00835418701171875}, "domain": "pixel"}, {"position": {"minX": 210.75, "minY": 194.5, "maxX": 230.25, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007732391357421875}, "domain": "pixel"}, {"position": {"minX": 211.5, "minY": 203.625, "maxX": 235.5, "maxY": 227.625}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.005870819091796875}, "domain": "pixel"}, {"position": {"minX": 220.25, "minY": 212.5, "maxX": 234.75, "maxY": 232.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005245208740234375}, "domain": "pixel"}, {"position": {"minX": 169.625, "minY": 202.5, "maxX": 186.875, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.0052032470703125}, "domain": "pixel"}, {"position": {"minX": 237.25, "minY": 62.46875, "maxX": 267.0, "maxY": 109.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00279998779296875}, "domain": "pixel"}, {"position": {"minX": 543.5, "minY": 79.3125, "maxX": 584.5, "maxY": 136.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023193359375}, "domain": "pixel"}, {"position": {"minX": 207.75, "minY": 198.875, "maxX": 225.5, "maxY": 223.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002246856689453125}, "domain": "pixel"}, {"position": {"minX": 178.625, "minY": 200.75, "maxX": 194.875, "maxY": 221.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020275115966796875}, "domain": "pixel"}, {"position": {"minX": 441.5, "minY": 234.375, "maxX": 463.0, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018091201782226562}, "domain": "pixel"}, {"position": {"minX": 641.5, "minY": 222.25, "maxX": 662.5, "maxY": 247.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017232894897460938}, "domain": "pixel"}, {"position": {"minX": 388.25, "minY": 221.625, "maxX": 404.25, "maxY": 243.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016231536865234375}, "domain": "pixel"}, {"position": {"minX": 220.125, "minY": 198.375, "maxX": 236.375, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015745162963867188}, "domain": "pixel"}, {"position": {"minX": 556.0, "minY": 9.9375, "maxX": 611.0, "maxY": 102.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015411376953125}, "domain": "pixel"}, {"position": {"minX": 161.5, "minY": 206.875, "maxX": 179.0, "maxY": 225.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012836456298828125}, "domain": "pixel"}, {"position": {"minX": 379.0, "minY": 236.125, "maxX": 400.0, "maxY": 259.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001194000244140625}, "domain": "pixel"}, {"position": {"minX": 179.875, "minY": 195.0, "maxX": 195.125, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010271072387695312}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_c678639041e34cfda772.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_c678639041e34cfda772.boxes2D.json new file mode 100644 index 0000000..7c3593e --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_c678639041e34cfda772.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 339.0, "minY": 219.25, "maxX": 362.5, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.411", "scores": {"class_score": 0.41064453125}, "domain": "pixel"}, {"position": {"minX": 524.5, "minY": 242.25, "maxX": 553.5, "maxY": 269.75}, "class_id": 0, "box_caption": "coureur 0.409", "scores": {"class_score": 0.4091796875}, "domain": "pixel"}, {"position": {"minX": 585.0, "minY": 252.5, "maxX": 602.0, "maxY": 277.5}, "class_id": 0, "box_caption": "coureur 0.401", "scores": {"class_score": 0.400634765625}, "domain": "pixel"}, {"position": {"minX": 454.5, "minY": 237.25, "maxX": 469.5, "maxY": 263.0}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.3740234375}, "domain": "pixel"}, {"position": {"minX": 226.125, "minY": 201.25, "maxX": 243.375, "maxY": 225.75}, "class_id": 0, "box_caption": "coureur 0.333", "scores": {"class_score": 0.3330078125}, "domain": "pixel"}, {"position": {"minX": 393.75, "minY": 226.5, "maxX": 408.75, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.325", "scores": {"class_score": 0.32470703125}, "domain": "pixel"}, {"position": {"minX": 298.0, "minY": 208.5, "maxX": 314.0, "maxY": 238.25}, "class_id": 0, "box_caption": "coureur 0.307", "scores": {"class_score": 0.306884765625}, "domain": "pixel"}, {"position": {"minX": 165.625, "minY": 195.25, "maxX": 180.375, "maxY": 217.75}, "class_id": 0, "box_caption": "coureur 0.253", "scores": {"class_score": 0.253173828125}, "domain": "pixel"}, {"position": {"minX": 229.25, "minY": 202.375, "maxX": 247.75, "maxY": 224.375}, "class_id": 0, "box_caption": "coureur 0.117", "scores": {"class_score": 0.11700439453125}, "domain": "pixel"}, {"position": {"minX": 620.0, "minY": 224.625, "maxX": 634.0, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.045928955078125}, "domain": "pixel"}, {"position": {"minX": 168.125, "minY": 198.0, "maxX": 182.375, "maxY": 220.75}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.0455322265625}, "domain": "pixel"}, {"position": {"minX": 390.25, "minY": 218.5, "maxX": 407.75, "maxY": 245.5}, "class_id": 0, "box_caption": "coureur 0.022", "scores": {"class_score": 0.0215606689453125}, "domain": "pixel"}, {"position": {"minX": 146.875, "minY": 188.625, "maxX": 165.125, "maxY": 214.125}, "class_id": 0, "box_caption": "coureur 0.013", "scores": {"class_score": 0.01285552978515625}, "domain": "pixel"}, {"position": {"minX": 614.5, "minY": 219.875, "maxX": 629.5, "maxY": 240.625}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0098876953125}, "domain": "pixel"}, {"position": {"minX": 156.25, "minY": 193.0, "maxX": 177.25, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.00814056396484375}, "domain": "pixel"}, {"position": {"minX": 391.75, "minY": 223.125, "maxX": 413.25, "maxY": 249.125}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00719451904296875}, "domain": "pixel"}, {"position": {"minX": 163.125, "minY": 189.0, "maxX": 181.625, "maxY": 213.75}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005046844482421875}, "domain": "pixel"}, {"position": {"minX": 514.5, "minY": 71.125, "maxX": 539.5, "maxY": 116.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00444793701171875}, "domain": "pixel"}, {"position": {"minX": 243.125, "minY": 201.75, "maxX": 260.5, "maxY": 222.5}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004421234130859375}, "domain": "pixel"}, {"position": {"minX": 249.75, "minY": 200.75, "maxX": 265.25, "maxY": 222.75}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.00292205810546875}, "domain": "pixel"}, {"position": {"minX": 142.875, "minY": 191.0, "maxX": 159.375, "maxY": 217.0}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002506256103515625}, "domain": "pixel"}, {"position": {"minX": 624.5, "minY": 226.5, "maxX": 640.5, "maxY": 245.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002414703369140625}, "domain": "pixel"}, {"position": {"minX": 452.5, "minY": 231.875, "maxX": 469.0, "maxY": 257.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023822784423828125}, "domain": "pixel"}, {"position": {"minX": 335.25, "minY": 215.75, "maxX": 356.75, "maxY": 242.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001800537109375}, "domain": "pixel"}, {"position": {"minX": 159.625, "minY": 196.5, "maxX": 184.375, "maxY": 221.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016965866088867188}, "domain": "pixel"}, {"position": {"minX": 223.0, "minY": 205.125, "maxX": 240.25, "maxY": 228.125}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001598358154296875}, "domain": "pixel"}, {"position": {"minX": 299.25, "minY": 216.125, "maxX": 314.75, "maxY": 244.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001529693603515625}, "domain": "pixel"}, {"position": {"minX": 148.0, "minY": 195.625, "maxX": 164.75, "maxY": 221.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001476287841796875}, "domain": "pixel"}, {"position": {"minX": 398.0, "minY": 232.625, "maxX": 417.0, "maxY": 253.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013055801391601562}, "domain": "pixel"}, {"position": {"minX": 164.75, "minY": 203.125, "maxX": 181.0, "maxY": 227.125}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010747909545898438}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_cf6485456b2462b7df84.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_cf6485456b2462b7df84.boxes2D.json new file mode 100644 index 0000000..274a5e9 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_cf6485456b2462b7df84.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 449.5, "minY": 232.75, "maxX": 473.0, "maxY": 256.0}, "class_id": 0, "box_caption": "coureur 0.407", "scores": {"class_score": 0.4072265625}, "domain": "pixel"}, {"position": {"minX": 579.5, "minY": 249.5, "maxX": 599.5, "maxY": 274.5}, "class_id": 0, "box_caption": "coureur 0.386", "scores": {"class_score": 0.386474609375}, "domain": "pixel"}, {"position": {"minX": 526.0, "minY": 242.625, "maxX": 544.0, "maxY": 270.0}, "class_id": 0, "box_caption": "coureur 0.371", "scores": {"class_score": 0.37060546875}, "domain": "pixel"}, {"position": {"minX": 341.25, "minY": 217.625, "maxX": 356.75, "maxY": 240.375}, "class_id": 0, "box_caption": "coureur 0.352", "scores": {"class_score": 0.351806640625}, "domain": "pixel"}, {"position": {"minX": 298.5, "minY": 206.75, "maxX": 316.0, "maxY": 232.5}, "class_id": 0, "box_caption": "coureur 0.343", "scores": {"class_score": 0.343017578125}, "domain": "pixel"}, {"position": {"minX": 232.125, "minY": 200.875, "maxX": 250.125, "maxY": 226.625}, "class_id": 0, "box_caption": "coureur 0.297", "scores": {"class_score": 0.296630859375}, "domain": "pixel"}, {"position": {"minX": 394.75, "minY": 228.5, "maxX": 407.75, "maxY": 248.5}, "class_id": 0, "box_caption": "coureur 0.270", "scores": {"class_score": 0.270263671875}, "domain": "pixel"}, {"position": {"minX": 168.875, "minY": 192.875, "maxX": 183.625, "maxY": 216.125}, "class_id": 0, "box_caption": "coureur 0.235", "scores": {"class_score": 0.2353515625}, "domain": "pixel"}, {"position": {"minX": 228.625, "minY": 194.25, "maxX": 247.375, "maxY": 223.25}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.01702880859375}, "domain": "pixel"}, {"position": {"minX": 165.875, "minY": 196.75, "maxX": 181.375, "maxY": 219.5}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.0086822509765625}, "domain": "pixel"}, {"position": {"minX": 196.0, "minY": 200.125, "maxX": 209.5, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.009", "scores": {"class_score": 0.00855255126953125}, "domain": "pixel"}, {"position": {"minX": 239.375, "minY": 209.25, "maxX": 257.0, "maxY": 231.25}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004486083984375}, "domain": "pixel"}, {"position": {"minX": 394.5, "minY": 221.875, "maxX": 409.0, "maxY": 244.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003753662109375}, "domain": "pixel"}, {"position": {"minX": 122.4375, "minY": 193.25, "maxX": 138.375, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0027256011962890625}, "domain": "pixel"}, {"position": {"minX": 521.5, "minY": 244.375, "maxX": 540.5, "maxY": 273.25}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026378631591796875}, "domain": "pixel"}, {"position": {"minX": 336.5, "minY": 214.25, "maxX": 356.0, "maxY": 242.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0025272369384765625}, "domain": "pixel"}, {"position": {"minX": 166.375, "minY": 190.625, "maxX": 188.875, "maxY": 217.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.002330780029296875}, "domain": "pixel"}, {"position": {"minX": 118.0625, "minY": 191.625, "maxX": 134.0, "maxY": 214.875}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0022735595703125}, "domain": "pixel"}, {"position": {"minX": 191.5, "minY": 200.375, "maxX": 206.5, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001964569091796875}, "domain": "pixel"}, {"position": {"minX": 493.0, "minY": 219.0, "maxX": 506.0, "maxY": 238.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014133453369140625}, "domain": "pixel"}, {"position": {"minX": 236.125, "minY": 206.5, "maxX": 252.875, "maxY": 233.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014123916625976562}, "domain": "pixel"}, {"position": {"minX": 171.125, "minY": 189.5, "maxX": 184.375, "maxY": 212.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0014095306396484375}, "domain": "pixel"}, {"position": {"minX": 341.0, "minY": 218.0, "maxX": 360.5, "maxY": 248.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001361846923828125}, "domain": "pixel"}, {"position": {"minX": 295.25, "minY": 207.875, "maxX": 320.25, "maxY": 235.875}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001148223876953125}, "domain": "pixel"}, {"position": {"minX": 581.5, "minY": 243.25, "maxX": 602.5, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011377334594726562}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_d51b66d666e382f6b818.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_d51b66d666e382f6b818.boxes2D.json new file mode 100644 index 0000000..64d0f7f --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_d51b66d666e382f6b818.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 330.5, "minY": 213.75, "maxX": 351.5, "maxY": 237.75}, "class_id": 0, "box_caption": "coureur 0.380", "scores": {"class_score": 0.38037109375}, "domain": "pixel"}, {"position": {"minX": 515.0, "minY": 238.875, "maxX": 533.0, "maxY": 266.5}, "class_id": 0, "box_caption": "coureur 0.374", "scores": {"class_score": 0.3740234375}, "domain": "pixel"}, {"position": {"minX": 572.0, "minY": 245.5, "maxX": 588.0, "maxY": 271.0}, "class_id": 0, "box_caption": "coureur 0.372", "scores": {"class_score": 0.372314453125}, "domain": "pixel"}, {"position": {"minX": 443.25, "minY": 231.75, "maxX": 463.75, "maxY": 255.5}, "class_id": 0, "box_caption": "coureur 0.359", "scores": {"class_score": 0.359130859375}, "domain": "pixel"}, {"position": {"minX": 292.5, "minY": 206.625, "maxX": 308.5, "maxY": 231.375}, "class_id": 0, "box_caption": "coureur 0.318", "scores": {"class_score": 0.318115234375}, "domain": "pixel"}, {"position": {"minX": 224.625, "minY": 196.625, "maxX": 241.875, "maxY": 223.875}, "class_id": 0, "box_caption": "coureur 0.310", "scores": {"class_score": 0.309814453125}, "domain": "pixel"}, {"position": {"minX": 385.75, "minY": 218.75, "maxX": 400.25, "maxY": 238.0}, "class_id": 0, "box_caption": "coureur 0.279", "scores": {"class_score": 0.27880859375}, "domain": "pixel"}, {"position": {"minX": 157.625, "minY": 192.25, "maxX": 178.375, "maxY": 217.5}, "class_id": 0, "box_caption": "coureur 0.075", "scores": {"class_score": 0.0748291015625}, "domain": "pixel"}, {"position": {"minX": 161.75, "minY": 196.0, "maxX": 180.0, "maxY": 215.5}, "class_id": 0, "box_caption": "coureur 0.051", "scores": {"class_score": 0.05126953125}, "domain": "pixel"}, {"position": {"minX": 384.25, "minY": 222.5, "maxX": 398.75, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.046", "scores": {"class_score": 0.046234130859375}, "domain": "pixel"}, {"position": {"minX": 226.5, "minY": 202.25, "maxX": 243.0, "maxY": 228.25}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.01904296875}, "domain": "pixel"}, {"position": {"minX": 167.375, "minY": 195.5, "maxX": 185.125, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.013885498046875}, "domain": "pixel"}, {"position": {"minX": 163.75, "minY": 199.25, "maxX": 182.0, "maxY": 218.5}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01104736328125}, "domain": "pixel"}, {"position": {"minX": 150.0, "minY": 191.0, "maxX": 169.5, "maxY": 216.5}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01090240478515625}, "domain": "pixel"}, {"position": {"minX": 386.75, "minY": 215.5, "maxX": 401.75, "maxY": 233.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.007282257080078125}, "domain": "pixel"}, {"position": {"minX": 170.0, "minY": 200.0, "maxX": 184.75, "maxY": 220.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.006603240966796875}, "domain": "pixel"}, {"position": {"minX": 382.5, "minY": 214.0, "maxX": 399.0, "maxY": 235.5}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006282806396484375}, "domain": "pixel"}, {"position": {"minX": 390.75, "minY": 216.875, "maxX": 406.75, "maxY": 238.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.00390625}, "domain": "pixel"}, {"position": {"minX": 219.75, "minY": 192.625, "maxX": 245.25, "maxY": 222.625}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.003719329833984375}, "domain": "pixel"}, {"position": {"minX": 569.0, "minY": 242.375, "maxX": 592.0, "maxY": 272.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0031147003173828125}, "domain": "pixel"}, {"position": {"minX": 383.25, "minY": 219.5, "maxX": 404.75, "maxY": 240.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0030879974365234375}, "domain": "pixel"}, {"position": {"minX": 448.5, "minY": 232.875, "maxX": 471.0, "maxY": 259.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0023555755615234375}, "domain": "pixel"}, {"position": {"minX": 215.625, "minY": 199.0, "maxX": 232.625, "maxY": 225.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0021381378173828125}, "domain": "pixel"}, {"position": {"minX": 439.25, "minY": 232.75, "maxX": 458.75, "maxY": 254.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0017757415771484375}, "domain": "pixel"}, {"position": {"minX": 229.125, "minY": 199.5, "maxX": 247.625, "maxY": 225.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015993118286132812}, "domain": "pixel"}, {"position": {"minX": 377.75, "minY": 218.375, "maxX": 394.75, "maxY": 241.625}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0015468597412109375}, "domain": "pixel"}, {"position": {"minX": 328.25, "minY": 218.875, "maxX": 351.25, "maxY": 242.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0013647079467773438}, "domain": "pixel"}, {"position": {"minX": 291.5, "minY": 198.875, "maxX": 306.5, "maxY": 224.625}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011568069458007812}, "domain": "pixel"}, {"position": {"minX": 414.5, "minY": 208.375, "maxX": 428.0, "maxY": 228.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011434555053710938}, "domain": "pixel"}, {"position": {"minX": 419.75, "minY": 207.75, "maxX": 433.25, "maxY": 228.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011425018310546875}, "domain": "pixel"}, {"position": {"minX": 152.0, "minY": 186.5, "maxX": 177.0, "maxY": 214.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.00106048583984375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_f38ad842b6c13762048f.boxes2D.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_f38ad842b6c13762048f.boxes2D.json new file mode 100644 index 0000000..1f5cede --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/media/metadata/boxes2D/Bounding Box Debugger/Images_89_f38ad842b6c13762048f.boxes2D.json @@ -0,0 +1 @@ +{"box_data": [{"position": {"minX": 134.5, "minY": 256.25, "maxX": 176.5, "maxY": 327.75}, "class_id": 0, "box_caption": "coureur 0.393", "scores": {"class_score": 0.392822265625}, "domain": "pixel"}, {"position": {"minX": 373.5, "minY": 168.0, "maxX": 402.5, "maxY": 216.25}, "class_id": 0, "box_caption": "coureur 0.392", "scores": {"class_score": 0.39208984375}, "domain": "pixel"}, {"position": {"minX": 334.0, "minY": 125.8125, "maxX": 380.0, "maxY": 186.875}, "class_id": 0, "box_caption": "coureur 0.362", "scores": {"class_score": 0.36181640625}, "domain": "pixel"}, {"position": {"minX": 425.75, "minY": 245.625, "maxX": 470.25, "maxY": 321.5}, "class_id": 0, "box_caption": "coureur 0.344", "scores": {"class_score": 0.344482421875}, "domain": "pixel"}, {"position": {"minX": 209.75, "minY": 131.25, "maxX": 277.0, "maxY": 204.25}, "class_id": 0, "box_caption": "coureur 0.341", "scores": {"class_score": 0.34130859375}, "domain": "pixel"}, {"position": {"minX": 391.0, "minY": 230.375, "maxX": 428.0, "maxY": 272.75}, "class_id": 0, "box_caption": "coureur 0.143", "scores": {"class_score": 0.1431884765625}, "domain": "pixel"}, {"position": {"minX": 428.5, "minY": 183.0, "maxX": 469.0, "maxY": 239.25}, "class_id": 0, "box_caption": "coureur 0.140", "scores": {"class_score": 0.1395263671875}, "domain": "pixel"}, {"position": {"minX": 499.75, "minY": 74.875, "maxX": 531.5, "maxY": 123.5}, "class_id": 0, "box_caption": "coureur 0.138", "scores": {"class_score": 0.1383056640625}, "domain": "pixel"}, {"position": {"minX": 432.25, "minY": 232.5, "maxX": 476.75, "maxY": 310.5}, "class_id": 0, "box_caption": "coureur 0.119", "scores": {"class_score": 0.119384765625}, "domain": "pixel"}, {"position": {"minX": 229.5, "minY": 124.125, "maxX": 272.75, "maxY": 187.875}, "class_id": 0, "box_caption": "coureur 0.084", "scores": {"class_score": 0.083740234375}, "domain": "pixel"}, {"position": {"minX": 501.75, "minY": 61.65625, "maxX": 534.0, "maxY": 115.375}, "class_id": 0, "box_caption": "coureur 0.043", "scores": {"class_score": 0.043182373046875}, "domain": "pixel"}, {"position": {"minX": 437.5, "minY": 179.125, "maxX": 465.5, "maxY": 228.625}, "class_id": 0, "box_caption": "coureur 0.035", "scores": {"class_score": 0.0347900390625}, "domain": "pixel"}, {"position": {"minX": 417.25, "minY": 201.375, "maxX": 463.75, "maxY": 253.625}, "class_id": 0, "box_caption": "coureur 0.028", "scores": {"class_score": 0.02825927734375}, "domain": "pixel"}, {"position": {"minX": 392.25, "minY": 231.75, "maxX": 443.75, "maxY": 284.75}, "class_id": 0, "box_caption": "coureur 0.020", "scores": {"class_score": 0.0199432373046875}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 224.25, "maxX": 419.0, "maxY": 268.75}, "class_id": 0, "box_caption": "coureur 0.019", "scores": {"class_score": 0.0189056396484375}, "domain": "pixel"}, {"position": {"minX": 442.25, "minY": 231.75, "maxX": 479.75, "maxY": 295.25}, "class_id": 0, "box_caption": "coureur 0.017", "scores": {"class_score": 0.017333984375}, "domain": "pixel"}, {"position": {"minX": 513.5, "minY": 61.625, "maxX": 531.5, "maxY": 93.0}, "class_id": 0, "box_caption": "coureur 0.015", "scores": {"class_score": 0.0154876708984375}, "domain": "pixel"}, {"position": {"minX": 124.1875, "minY": 268.0, "maxX": 181.25, "maxY": 354.5}, "class_id": 0, "box_caption": "coureur 0.014", "scores": {"class_score": 0.0140838623046875}, "domain": "pixel"}, {"position": {"minX": 426.75, "minY": 264.25, "maxX": 460.75, "maxY": 323.75}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.0124664306640625}, "domain": "pixel"}, {"position": {"minX": 428.5, "minY": 190.125, "maxX": 459.5, "maxY": 249.625}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.01229095458984375}, "domain": "pixel"}, {"position": {"minX": 430.0, "minY": 199.5, "maxX": 471.5, "maxY": 257.0}, "class_id": 0, "box_caption": "coureur 0.012", "scores": {"class_score": 0.011810302734375}, "domain": "pixel"}, {"position": {"minX": 437.25, "minY": 166.375, "maxX": 473.25, "maxY": 218.125}, "class_id": 0, "box_caption": "coureur 0.011", "scores": {"class_score": 0.01053619384765625}, "domain": "pixel"}, {"position": {"minX": 379.75, "minY": 162.25, "maxX": 417.75, "maxY": 212.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.010101318359375}, "domain": "pixel"}, {"position": {"minX": 256.25, "minY": 168.25, "maxX": 273.75, "maxY": 205.5}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.0100250244140625}, "domain": "pixel"}, {"position": {"minX": 405.0, "minY": 211.125, "maxX": 451.5, "maxY": 265.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.00988006591796875}, "domain": "pixel"}, {"position": {"minX": 434.5, "minY": 239.875, "maxX": 460.0, "maxY": 299.25}, "class_id": 0, "box_caption": "coureur 0.010", "scores": {"class_score": 0.009857177734375}, "domain": "pixel"}, {"position": {"minX": 413.75, "minY": 219.625, "maxX": 462.75, "maxY": 278.25}, "class_id": 0, "box_caption": "coureur 0.008", "scores": {"class_score": 0.007518768310546875}, "domain": "pixel"}, {"position": {"minX": 456.0, "minY": 298.0, "maxX": 478.5, "maxY": 335.0}, "class_id": 0, "box_caption": "coureur 0.007", "scores": {"class_score": 0.00719451904296875}, "domain": "pixel"}, {"position": {"minX": 450.75, "minY": 225.375, "maxX": 471.75, "maxY": 262.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006458282470703125}, "domain": "pixel"}, {"position": {"minX": 389.0, "minY": 235.375, "maxX": 429.5, "maxY": 291.25}, "class_id": 0, "box_caption": "coureur 0.006", "scores": {"class_score": 0.006011962890625}, "domain": "pixel"}, {"position": {"minX": 113.25, "minY": 254.5, "maxX": 179.75, "maxY": 338.0}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.005474090576171875}, "domain": "pixel"}, {"position": {"minX": 449.25, "minY": 226.5, "maxX": 480.25, "maxY": 271.25}, "class_id": 0, "box_caption": "coureur 0.005", "scores": {"class_score": 0.004909515380859375}, "domain": "pixel"}, {"position": {"minX": 327.5, "minY": 115.625, "maxX": 373.5, "maxY": 175.125}, "class_id": 0, "box_caption": "coureur 0.004", "scores": {"class_score": 0.004123687744140625}, "domain": "pixel"}, {"position": {"minX": 410.5, "minY": 191.0, "maxX": 453.0, "maxY": 244.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.0026187896728515625}, "domain": "pixel"}, {"position": {"minX": 436.25, "minY": 276.5, "maxX": 471.75, "maxY": 328.5}, "class_id": 0, "box_caption": "coureur 0.003", "scores": {"class_score": 0.002536773681640625}, "domain": "pixel"}, {"position": {"minX": 427.0, "minY": 275.0, "maxX": 452.0, "maxY": 322.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.00234222412109375}, "domain": "pixel"}, {"position": {"minX": 373.75, "minY": 153.75, "maxX": 405.25, "maxY": 206.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0020885467529296875}, "domain": "pixel"}, {"position": {"minX": 344.0, "minY": 134.0, "maxX": 389.5, "maxY": 201.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001953125}, "domain": "pixel"}, {"position": {"minX": 510.75, "minY": 55.375, "maxX": 542.5, "maxY": 97.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0019140243530273438}, "domain": "pixel"}, {"position": {"minX": 193.5, "minY": 136.25, "maxX": 261.25, "maxY": 197.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0018749237060546875}, "domain": "pixel"}, {"position": {"minX": 453.0, "minY": 219.0, "maxX": 477.5, "maxY": 256.75}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016765594482421875}, "domain": "pixel"}, {"position": {"minX": 410.75, "minY": 258.5, "maxX": 460.25, "maxY": 329.5}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.0016584396362304688}, "domain": "pixel"}, {"position": {"minX": 438.0, "minY": 222.875, "maxX": 478.0, "maxY": 281.0}, "class_id": 0, "box_caption": "coureur 0.002", "scores": {"class_score": 0.001605987548828125}, "domain": "pixel"}, {"position": {"minX": 251.0, "minY": 159.75, "maxX": 272.5, "maxY": 202.25}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012722015380859375}, "domain": "pixel"}, {"position": {"minX": 346.5, "minY": 130.5, "maxX": 377.0, "maxY": 182.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012607574462890625}, "domain": "pixel"}, {"position": {"minX": 388.5, "minY": 213.75, "maxX": 432.5, "maxY": 270.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0012292861938476562}, "domain": "pixel"}, {"position": {"minX": 425.5, "minY": 204.375, "maxX": 453.0, "maxY": 251.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001194000244140625}, "domain": "pixel"}, {"position": {"minX": 430.5, "minY": 214.375, "maxX": 455.0, "maxY": 256.5}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0011272430419921875}, "domain": "pixel"}, {"position": {"minX": 620.0, "minY": 204.875, "maxX": 640.0, "maxY": 233.375}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.001117706298828125}, "domain": "pixel"}, {"position": {"minX": 441.5, "minY": 176.0, "maxX": 483.0, "maxY": 223.0}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010919570922851562}, "domain": "pixel"}, {"position": {"minX": 450.25, "minY": 209.75, "maxX": 483.75, "maxY": 258.75}, "class_id": 0, "box_caption": "coureur 0.001", "scores": {"class_score": 0.0010128021240234375}, "domain": "pixel"}], "class_labels": {"0": "coureur"}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/wandb-metadata.json new file mode 100644 index 0000000..fe3c17b --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/wandb-metadata.json @@ -0,0 +1,442 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-16T19:54:13.554814", + "startedAt": "2024-07-16T19:54:12.576643", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "1", + "--device", + "0", + "--batch-size", + "4", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train.py", + "codePathLocal": "train.py", + "codePath": "train.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.9944583333345, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.143733978271484 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/wandb-summary.json new file mode 100644 index 0000000..dffed07 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/files/wandb-summary.json @@ -0,0 +1 @@ +{"Mosaics": {"_type": "images/separated", "width": 1280, "height": 1280, "format": "jpg", "count": 10, "filenames": ["media/images/Mosaics_0_640206ebad3250ee34ff.jpg", "media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg", "media/images/Mosaics_0_c385c508aa1e392b0aff.jpg", "media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg", "media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg", "media/images/Mosaics_0_ba1cca1832eae754324d.jpg", "media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg", "media/images/Mosaics_0_aa5960f3283394a1df01.jpg", "media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg", "media/images/Mosaics_0_93c322992c6f533f8921.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg", "train_batch3.jpg", "train_batch4.jpg", "train_batch5.jpg", "train_batch6.jpg", "train_batch7.jpg", "train_batch8.jpg", "train_batch9.jpg"]}, "train/box_loss": 0.020178480073809624, "train/obj_loss": 0.010713320225477219, "train/cls_loss": 0.0, "metrics/precision": 0.9792022365561109, "metrics/recall": 0.9856081708449397, "metrics/mAP_0.5": 0.9873003342935333, "metrics/mAP_0.5:0.95": 0.6151412337457256, "val/box_loss": 0.037770070135593414, "val/obj_loss": 0.1906460076570511, "val/cls_loss": 0.0, "x/lr0": 0.0010009869243631953, "x/lr1": 0.0010009869243631953, "x/lr2": 0.0010009869243631953, "_timestamp": 1721178501.9193199, "_runtime": 18849.31527686119, "_step": 300, "Bounding Box Debugger/Images": {"_type": "images/separated", "width": 768, "height": 448, "format": "png", "count": 16, "filenames": ["media/images/Bounding Box Debugger/Images_299_85f530ea2196da266e81.png", "media/images/Bounding Box Debugger/Images_299_3581752cbd431a673691.png", "media/images/Bounding Box Debugger/Images_299_c828978f6f65f5b49a56.png", "media/images/Bounding Box Debugger/Images_299_4e5a8fc5e68861914fb0.png", "media/images/Bounding Box Debugger/Images_299_bf799802c674bf6fc7f8.png", "media/images/Bounding Box Debugger/Images_299_c6f5583641ddfe6d3953.png", "media/images/Bounding Box Debugger/Images_299_1c47f2a228bd14e94ade.png", "media/images/Bounding Box Debugger/Images_299_ff1bb1a42b91fec39e39.png", "media/images/Bounding Box Debugger/Images_299_b625f699310d19aae5fa.png", "media/images/Bounding Box Debugger/Images_299_662cd021cd32cbc8c093.png", "media/images/Bounding Box Debugger/Images_299_d33ba85aec0624254e66.png", "media/images/Bounding Box Debugger/Images_299_fd258b53ad0b8cf98574.png", "media/images/Bounding Box Debugger/Images_299_dab42e0094e3ed994e7b.png", "media/images/Bounding Box Debugger/Images_299_24a487d7d80d58dcfdc1.png", "media/images/Bounding Box Debugger/Images_299_7e88c734695d22f900df.png", "media/images/Bounding Box Debugger/Images_299_e394c39196a36b3a5f4f.png"], "captions": ["image_000001000000.jpg", "image_000001000210.jpg", "image_000001000209.jpg", "image_000001000208.jpg", "image_000001000207.jpg", "image_000001000206.jpg", "image_000001000205.jpg", "image_000001000204.jpg", "image_000001000203.jpg", "image_000001000202.jpg", "image_000001000201.jpg", "image_000001000200.jpg", "image_000001000199.jpg", "image_000001000198.jpg", "image_000001000197.jpg", "image_000001000196.jpg"], "all_boxes": [{"predictions": {"_type": "boxes2D", "sha256": "acd9bfee71c52aabb807e8a2c36afaa83711adefe1b438614f1e9ee6e73636e0", "size": 2519, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_acd9bfee71c52aabb807.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "51f7582c4e712e6ac2ddf06cbb278323a789f6a5988167b15b864bb86284a2d0", "size": 1750, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_51f7582c4e712e6ac2dd.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "b64fc58c1ed94ab930bac8e840cf292cb2b74fe988e03f73ef131db46233d918", "size": 2134, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_b64fc58c1ed94ab930ba.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "0f2b78fbfc7770769e8056d0a35a0be201d015335dcaaf84f0e6d2f0c06d9bb2", "size": 2723, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_0f2b78fbfc7770769e80.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "5150556da992116fb9bccc753c2d9be554e732037a2cd256e52e2501e63c0b0a", "size": 1353, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_5150556da992116fb9bc.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "ac52c6519e561fce491ec0cf8c5c4edf0c805fb6c9554bd87d74cb07e8619522", "size": 2914, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_ac52c6519e561fce491e.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "f5c8ac520cee00df326937f75bf04fb2c7b20958e172b5290523e49054adee3f", "size": 2320, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_f5c8ac520cee00df3269.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "13ae1b998c39bc6d66725e4e3224c3fe27a3779d11cf57c0905913fe7e5134aa", "size": 2724, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_13ae1b998c39bc6d6672.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "452f2bf4326c12b84fad9e3dafec83de59e65470d732daae521f5e43b08abd6c", "size": 2320, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_452f2bf4326c12b84fad.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "67755158ba869f11c89334b2ca797a9329a866f700a691184deee5e22c1b92a2", "size": 1545, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_67755158ba869f11c893.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "fd9a14195eb7a6f96aa6f73aa9f48f8436521ee456aad363233964317b71dafe", "size": 2321, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_fd9a14195eb7a6f96aa6.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "a0d2de0c3c8d7590b33cae4b98f6da8aa715336c50079d4b4f6954edc432b380", "size": 2131, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_a0d2de0c3c8d7590b33c.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "176bb733a349f2d75970937be77ed09d246a09e1b3516c183ea2ae58d418f8c4", "size": 1752, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_176bb733a349f2d75970.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "b2e51a5eca9440fac4dcb1a1f4ad442025e671b41f0a3d357b8351b1d206c0b1", "size": 1739, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_b2e51a5eca9440fac4dc.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "adfe8194207a5ff92dd77014cc997c65512d07d0d041c59581d9e6c983cf4f8a", "size": 3099, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_adfe8194207a5ff92dd7.boxes2D.json"}}, {"predictions": {"_type": "boxes2D", "sha256": "e09319093f8a2d73af5783308173de94d22a457fcb35ff248a5f9fcdf83dd6f3", "size": 1731, "path": "media/metadata/boxes2D/Bounding Box Debugger/Images_299_e09319093f8a2d73af57.boxes2D.json"}}]}, "Validation": {"_type": "images/separated", "width": 1280, "height": 748, "format": "jpg", "count": 6, "filenames": ["media/images/Validation_299_3794b186869368d9762f.jpg", "media/images/Validation_299_68af8ffe129b7cb60438.jpg", "media/images/Validation_299_cb14af111389257bf44a.jpg", "media/images/Validation_299_c48a8e3f715820558413.jpg", "media/images/Validation_299_05ef2be2e526db68e162.jpg", "media/images/Validation_299_24eb1c0a6b11a3777d1f.jpg"], "captions": ["test_batch0_labels.jpg", "test_batch0_pred.jpg", "test_batch1_labels.jpg", "test_batch1_pred.jpg", "test_batch2_labels.jpg", "test_batch2_pred.jpg"]}, "Results": {"_type": "images/separated", "width": 2400, "height": 1200, "format": "png", "count": 6, "filenames": ["media/images/Results_300_4acdd545cdbaf615d5b6.png", "media/images/Results_300_4908e72edc14d63f51d3.png", "media/images/Results_300_eea82dce1f8de10e1c6c.png", "media/images/Results_300_fc8dff1a42b696e8a5e3.png", "media/images/Results_300_7d0bfc43cd4d084dd48c.png", "media/images/Results_300_515b1647d76eaf2c14ae.png"], "captions": ["results.png", "confusion_matrix.png", "F1_curve.png", "PR_curve.png", "P_curve.png", "R_curve.png"]}, "_wandb": {"runtime": 18857}} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/run-tx4aatg3.wandb b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/run-tx4aatg3.wandb new file mode 100644 index 0000000..1d73619 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240716_195412-tx4aatg3/run-tx4aatg3.wandb differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/conda-environment.yaml b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/conda-environment.yaml new file mode 100644 index 0000000..540ddde --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/conda-environment.yaml @@ -0,0 +1,136 @@ +name: yolov7 +channels: + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - blas=1.0=mkl + - ca-certificates=2024.7.2=h06a4308_0 + - cffi=1.16.0=py39h5eee18b_1 + - future=0.18.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libprotobuf=3.20.3=he621ea3_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - ncurses=6.4=h6a678d5_0 + - ninja-base=1.10.2=hd09550d_5 + - numpy=1.24.3=py39h14f4228_0 + - numpy-base=1.24.3=py39h31eccc5_0 + - openssl=3.0.14=h5eee18b_0 + - pip=24.0=py39h06a4308_0 + - pycparser=2.21=pyhd3eb1b0_0 + - python=3.9.19=h955ad1f_1 + - pyyaml=6.0.1=py39h5eee18b_0 + - readline=8.2=h5eee18b_0 + - setuptools=69.5.1=py39h06a4308_0 + - six=1.16.0=pyhd3eb1b0_1 + - sqlite=3.45.3=h5eee18b_0 + - tk=8.6.14=h39e8969_0 + - typing-extensions=4.11.0=py39h06a4308_0 + - typing_extensions=4.11.0=py39h06a4308_0 + - wheel=0.43.0=py39h06a4308_0 + - xz=5.4.6=h5eee18b_1 + - yaml=0.2.5=h7b6447c_0 + - zlib=1.2.13=h5eee18b_1 + - pip: + - absl-py==2.1.0 + - beautifulsoup4==4.12.3 + - certifi==2024.7.4 + - charset-normalizer==3.3.2 + - click==8.1.7 + - contourpy==1.2.1 + - cuda-python==12.5.0 + - cycler==0.12.1 + - cython==3.0.10 + - cython-bbox==0.1.3 + - docker-pycreds==0.4.0 + - filelock==3.15.4 + - fonttools==4.53.1 + - fsspec==2024.6.1 + - gdown==5.2.0 + - gitdb==4.0.11 + - gitpython==3.1.43 + - grpcio==1.64.1 + - idna==3.7 + - importlib-metadata==8.0.0 + - importlib-resources==6.4.0 + - jinja2==3.1.4 + - joblib==1.4.2 + - kiwisolver==1.4.5 + - lap==0.4.0 + - loguru==0.7.2 + - markdown==3.6 + - markupsafe==2.1.5 + - matplotlib==3.9.1 + - motmetrics==1.4.0 + - mpmath==1.3.0 + - networkx==3.2.1 + - ninja==1.11.1.1 + - nvidia-cublas-cu11==11.11.3.6 + - nvidia-cublas-cu12==12.1.3.1 + - nvidia-cuda-cupti-cu11==11.8.87 + - nvidia-cuda-cupti-cu12==12.1.105 + - nvidia-cuda-nvrtc-cu11==11.8.89 + - nvidia-cuda-nvrtc-cu12==12.1.105 + - nvidia-cuda-runtime-cu11==11.8.89 + - nvidia-cuda-runtime-cu12==12.1.105 + - nvidia-cudnn-cu11==8.7.0.84 + - nvidia-cudnn-cu12==8.9.2.26 + - nvidia-cufft-cu11==10.9.0.58 + - nvidia-cufft-cu12==11.0.2.54 + - nvidia-curand-cu11==10.3.0.86 + - nvidia-curand-cu12==10.3.2.106 + - nvidia-cusolver-cu11==11.4.1.48 + - nvidia-cusolver-cu12==11.4.5.107 + - nvidia-cusparse-cu11==11.7.5.86 + - nvidia-cusparse-cu12==12.1.0.106 + - nvidia-nccl-cu11==2.19.3 + - nvidia-nccl-cu12==2.20.5 + - nvidia-nvjitlink-cu12==12.5.82 + - nvidia-nvtx-cu11==11.8.86 + - nvidia-nvtx-cu12==12.1.105 + - opencv-python==4.10.0.84 + - packaging==24.1 + - pandas==2.2.2 + - pillow==10.4.0 + - platformdirs==4.2.2 + - protobuf==4.25.3 + - psutil==6.0.0 + - pyparsing==3.1.2 + - pysocks==1.7.1 + - python-dateutil==2.9.0.post0 + - pytz==2024.1 + - requests==2.32.3 + - scikit-learn==1.5.1 + - scipy==1.13.1 + - seaborn==0.13.2 + - sentry-sdk==2.10.0 + - setproctitle==1.3.3 + - smmap==5.0.1 + - soupsieve==2.5 + - sympy==1.13.0 + - tabulate==0.9.0 + - tensorboard==2.17.0 + - tensorboard-data-server==0.7.2 + - thop==0.1.1-2209072238 + - threadpoolctl==3.5.0 + - torch==2.2.2+cu118 + - torchaudio==2.2.2+cu118 + - torchvision==0.17.2+cu118 + - tqdm==4.66.4 + - triton==2.2.0 + - tzdata==2024.1 + - ultralytics==8.0.94 + - urllib3==2.2.2 + - wandb==0.17.4 + - werkzeug==3.0.3 + - xmltodict==0.13.0 + - zipp==3.19.2 +prefix: /home/sylvain.faure/.conda/envs/yolov7 diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/config.yaml b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/config.yaml new file mode 100644 index 0000000..81a271a --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/config.yaml @@ -0,0 +1,259 @@ +wandb_version: 1 + +dataset: + desc: null + value: dataset1_2024_06_19 +weights: + desc: null + value: '' +cfg: + desc: null + value: cfg/training/yolov7x_dataset1_2024_06_19.yaml +data: + desc: null + value: data/dataset1_2024_06_19/dataset.yaml +hyp: + desc: null + value: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 +epochs: + desc: null + value: 600 +batch_size: + desc: null + value: 4 +img_size: + desc: null + value: + - 1280 + - 720 +rect: + desc: null + value: false +resume: + desc: null + value: false +nosave: + desc: null + value: false +notest: + desc: null + value: false +noautoanchor: + desc: null + value: false +evolve: + desc: null + value: false +bucket: + desc: null + value: '' +cache_images: + desc: null + value: false +image_weights: + desc: null + value: false +device: + desc: null + value: '0' +multi_scale: + desc: null + value: false +single_cls: + desc: null + value: false +adam: + desc: null + value: false +sync_bn: + desc: null + value: false +local_rank: + desc: null + value: -1 +workers: + desc: null + value: 1 +project: + desc: null + value: runs/train +entity: + desc: null + value: null +name: + desc: null + value: yolov7x-dataset1_2024_06_19 +exist_ok: + desc: null + value: false +quad: + desc: null + value: false +linear_lr: + desc: null + value: false +label_smoothing: + desc: null + value: 0.0 +upload_dataset: + desc: null + value: false +bbox_interval: + desc: null + value: -1 +save_period: + desc: null + value: -1 +artifact_alias: + desc: null + value: latest +world_size: + desc: null + value: 1 +global_rank: + desc: null + value: -1 +save_dir: + desc: null + value: runs/train/yolov7x-dataset1_2024_06_1922 +total_batch_size: + desc: null + value: 4 +_wandb: + desc: null + value: + python_version: 3.9.19 + cli_version: 0.17.4 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + start_time: 1721207045 + t: + 1: + - 1 + - 41 + - 55 + 2: + - 1 + - 41 + - 55 + 3: + - 13 + - 16 + - 19 + - 23 + 4: 3.9.19 + 5: 0.17.4 + 8: + - 5 + 13: linux-x86_64 +opt: + desc: null + value: + dataset: dataset1_2024_06_19 + weights: '' + cfg: cfg/training/yolov7x_dataset1_2024_06_19.yaml + data: data/dataset1_2024_06_19/dataset.yaml + hyp: + lr0: 0.01 + lrf: 0.1 + momentum: 0.937 + weight_decay: 0.0005 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + warmup_bias_lr: 0.1 + box: 0.05 + cls: 0.3 + cls_pw: 1.0 + obj: 0.7 + obj_pw: 1.0 + iou_t: 0.2 + anchor_t: 4.0 + fl_gamma: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + degrees: 0.0 + translate: 0.2 + scale: 0.5 + shear: 0.0 + perspective: 0.0 + flipud: 0.0 + fliplr: 0.5 + mosaic: 1.0 + mixup: 0.0 + copy_paste: 0.0 + paste_in: 0.0 + epochs: 600 + batch_size: 4 + img_size: + - 1280 + - 720 + rect: false + resume: false + nosave: false + notest: false + noautoanchor: false + evolve: false + bucket: '' + cache_images: false + image_weights: false + device: '0' + multi_scale: false + single_cls: false + adam: false + sync_bn: false + local_rank: -1 + workers: 1 + project: runs/train + entity: null + name: yolov7x-dataset1_2024_06_19 + exist_ok: false + quad: false + linear_lr: false + label_smoothing: 0.0 + upload_dataset: false + bbox_interval: -1 + save_period: -1 + artifact_alias: latest + world_size: 1 + global_rank: -1 + save_dir: runs/train/yolov7x-dataset1_2024_06_1922 + total_batch_size: 4 +data_dict: + desc: null + value: + train: data/dataset1_2024_06_19/liste_images.txt + val: data/dataset1_2024_06_19/liste_images.txt + nc: 1 + names: + - coureur diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg new file mode 100644 index 0000000..61c83b5 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg new file mode 100644 index 0000000..7092f49 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_640206ebad3250ee34ff.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg new file mode 100644 index 0000000..e4960bf Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg new file mode 100644 index 0000000..52fbdca Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg new file mode 100644 index 0000000..72350c4 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg new file mode 100644 index 0000000..6fe0090 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_93c322992c6f533f8921.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg new file mode 100644 index 0000000..8b05bc1 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg new file mode 100644 index 0000000..7154121 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_aa5960f3283394a1df01.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg new file mode 100644 index 0000000..26bed26 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_ba1cca1832eae754324d.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg new file mode 100644 index 0000000..7b197e4 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/media/images/Mosaics_0_c385c508aa1e392b0aff.jpg differ diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/requirements.txt b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/requirements.txt new file mode 100644 index 0000000..4218604 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/requirements.txt @@ -0,0 +1,106 @@ +Cython==3.0.10 +GitPython==3.1.43 +Jinja2==3.1.4 +Markdown==3.6 +MarkupSafe==2.1.5 +PySocks==1.7.1 +PyYAML==6.0.1 +Werkzeug==3.0.3 +absl-py==2.1.0 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +click==8.1.7 +contourpy==1.2.1 +cuda-python==12.5.0 +cycler==0.12.1 +cython_bbox==0.1.3 +docker-pycreds==0.4.0 +filelock==3.15.4 +fonttools==4.53.1 +fsspec==2024.6.1 +future==0.18.3 +gdown==5.2.0 +gitdb==4.0.11 +grpcio==1.64.1 +idna==3.7 +importlib_metadata==8.0.0 +importlib_resources==6.4.0 +joblib==1.4.2 +kiwisolver==1.4.5 +lap==0.4.0 +loguru==0.7.2 +matplotlib==3.9.1 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +motmetrics==1.4.0 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.11.1.1 +numpy==1.24.3 +nvidia-cublas-cu11==11.11.3.6 +nvidia-cublas-cu12==12.1.3.1 +nvidia-cuda-cupti-cu11==11.8.87 +nvidia-cuda-cupti-cu12==12.1.105 +nvidia-cuda-nvrtc-cu11==11.8.89 +nvidia-cuda-nvrtc-cu12==12.1.105 +nvidia-cuda-runtime-cu11==11.8.89 +nvidia-cuda-runtime-cu12==12.1.105 +nvidia-cudnn-cu11==8.7.0.84 +nvidia-cudnn-cu12==8.9.2.26 +nvidia-cufft-cu11==10.9.0.58 +nvidia-cufft-cu12==11.0.2.54 +nvidia-curand-cu11==10.3.0.86 +nvidia-curand-cu12==10.3.2.106 +nvidia-cusolver-cu11==11.4.1.48 +nvidia-cusolver-cu12==11.4.5.107 +nvidia-cusparse-cu11==11.7.5.86 +nvidia-cusparse-cu12==12.1.0.106 +nvidia-nccl-cu11==2.19.3 +nvidia-nccl-cu12==2.20.5 +nvidia-nvjitlink-cu12==12.5.82 +nvidia-nvtx-cu11==11.8.86 +nvidia-nvtx-cu12==12.1.105 +opencv-python==4.10.0.84 +packaging==24.1 +pandas==2.2.2 +pillow==10.4.0 +pip==24.0 +platformdirs==4.2.2 +protobuf==4.25.3 +psutil==6.0.0 +pycparser==2.21 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +pytz==2024.1 +requests==2.32.3 +scikit-learn==1.5.1 +scipy==1.13.1 +seaborn==0.13.2 +sentry-sdk==2.10.0 +setproctitle==1.3.3 +setuptools==69.5.1 +six==1.16.0 +smmap==5.0.1 +soupsieve==2.5 +sympy==1.13.0 +tabulate==0.9.0 +tensorboard-data-server==0.7.2 +tensorboard==2.17.0 +thop==0.1.1-2209072238 +threadpoolctl==3.5.0 +torch==2.2.2+cu118 +torchaudio==2.2.2+cu118 +torchvision==0.17.2+cu118 +tqdm==4.66.4 +triton==2.2.0 +typing_extensions==4.11.0 +tzdata==2024.1 +ultralytics==8.0.94 +urllib3==2.2.2 +wandb==0.17.4 +wheel==0.43.0 +xmltodict==0.13.0 +zipp==3.19.2 \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/wandb-metadata.json b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/wandb-metadata.json new file mode 100644 index 0000000..ac118d5 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/wandb-metadata.json @@ -0,0 +1,444 @@ +{ + "os": "Linux-5.4.0-187-generic-x86_64-with-glibc2.31", + "python": "3.9.19", + "heartbeatAt": "2024-07-17T09:04:06.348085", + "startedAt": "2024-07-17T09:04:05.549801", + "docker": null, + "cuda": null, + "args": [ + "--dataset", + "dataset1_2024_06_19", + "--workers", + "1", + "--device", + "0", + "--batch-size", + "4", + "--epochs", + "600", + "--data", + "data/dataset1_2024_06_19/dataset.yaml", + "--img", + "1280", + "720", + "--cfg", + "cfg/training/yolov7x_dataset1_2024_06_19.yaml", + "--weights", + "", + "--name", + "yolov7x-dataset1_2024_06_19", + "--hyp", + "data/hyp.scratch.custom.yaml" + ], + "state": "running", + "program": "/home/sylvain.faure/RN/athle/yolov7-tracker/train.py", + "codePathLocal": "train.py", + "codePath": "train.py", + "git": { + "remote": "https://github.com/JackWoo0831/Yolov7-tracker.git", + "commit": "9bf2d5274e70cb67af9a1dcd0c9f50e812f3785e" + }, + "email": null, + "root": "/home/sylvain.faure/RN/athle/yolov7-tracker", + "host": "node20", + "username": "sylvain.faure", + "executable": "/home/sylvain.faure/.conda/envs/yolov7/bin/python3", + "cpu_count": 36, + "cpu_count_logical": 72, + "cpu_freq": { + "current": 2699.999555555557, + "min": 1000.0, + "max": 3900.0 + }, + "cpu_freq_per_core": [ + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.995, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.998, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.997, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.001, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.002, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2700.0, + "min": 1000.0, + "max": 3900.0 + }, + { + "current": 2699.999, + "min": 1000.0, + "max": 3900.0 + } + ], + "disk": { + "/": { + "total": 97.87200164794922, + "used": 17.208206176757812 + } + }, + "gpu": "Quadro RTX 6000", + "gpu_count": 4, + "gpu_devices": [ + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + }, + { + "name": "Quadro RTX 6000", + "memory_total": 25396838400 + } + ], + "memory": { + "total": 187.51513671875 + } +} diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/wandb-summary.json b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/wandb-summary.json new file mode 100644 index 0000000..cda6767 --- /dev/null +++ b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/files/wandb-summary.json @@ -0,0 +1 @@ +{"Mosaics": {"_type": "images/separated", "width": 1280, "height": 1280, "format": "jpg", "count": 10, "filenames": ["media/images/Mosaics_0_640206ebad3250ee34ff.jpg", "media/images/Mosaics_0_8650f53f1348a7c9ab2b.jpg", "media/images/Mosaics_0_c385c508aa1e392b0aff.jpg", "media/images/Mosaics_0_8a5507c5d7c19e9ed9a3.jpg", "media/images/Mosaics_0_a8c68f24db435a7d48c0.jpg", "media/images/Mosaics_0_ba1cca1832eae754324d.jpg", "media/images/Mosaics_0_7b70f60afde4e3e990b8.jpg", "media/images/Mosaics_0_aa5960f3283394a1df01.jpg", "media/images/Mosaics_0_00d3cfba79db4cca54d7.jpg", "media/images/Mosaics_0_93c322992c6f533f8921.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg", "train_batch3.jpg", "train_batch4.jpg", "train_batch5.jpg", "train_batch6.jpg", "train_batch7.jpg", "train_batch8.jpg", "train_batch9.jpg"]}, "train/box_loss": 0.051355525851249695, "train/obj_loss": 0.016622204333543777, "train/cls_loss": 0.0, "metrics/precision": 0.8429751400532627, "metrics/recall": 0.7451983088009085, "metrics/mAP_0.5": 0.7812800463670515, "metrics/mAP_0.5:0.95": 0.23587393351463942, "val/box_loss": 0.08135789632797241, "val/obj_loss": 0.32825973629951477, "val/cls_loss": 0.0, "x/lr0": 0.0099202926282791, "x/lr1": 0.0099202926282791, "x/lr2": 0.0099202926282791, "_timestamp": 1721209488.4711854, "_runtime": 2442.8777685165405, "_step": 37} \ No newline at end of file diff --git a/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/run-hvbj8jeq.wandb b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/run-hvbj8jeq.wandb new file mode 100644 index 0000000..41e0831 Binary files /dev/null and b/yolov7-tracker-example/wandb/run-20240717_090405-hvbj8jeq/run-hvbj8jeq.wandb differ