mirror of
https://github.com/NohamR/Stage-2023.git
synced 2025-05-24 00:49:03 +00:00
changes
This commit is contained in:
parent
253ef6346a
commit
fab48f9e08
BIN
cameratransform/google.png
Normal file
BIN
cameratransform/google.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
58
cameratransform/topview.py
Normal file
58
cameratransform/topview.py
Normal file
@ -0,0 +1,58 @@
|
||||
import matplotlib.pyplot as plt
|
||||
import matplotlib.image as mpimg
|
||||
import numpy as np
|
||||
|
||||
image_path = "cameratransform/google.png"
|
||||
|
||||
from scipy.ndimage import map_coordinates
|
||||
|
||||
def simulate_top_view(image_path, inclination=0, rotation=0):
|
||||
# Charger l'image
|
||||
img = mpimg.imread(image_path)
|
||||
|
||||
# Dimensions de l'image
|
||||
height, width, _ = img.shape
|
||||
|
||||
# Créer une grille d'indices pour les pixels de l'image
|
||||
y, x = np.indices((height, width))
|
||||
|
||||
# Convertir les coordonnées x, y en coordonnées polaires
|
||||
r = np.sqrt((x - width / 2) ** 2 + (y - height / 2) ** 2)
|
||||
theta = np.arctan2(y - height / 2, x - width / 2)
|
||||
|
||||
# Ajuster l'inclinaison et la rotation
|
||||
r_adjusted = r * np.cos(np.deg2rad(inclination))
|
||||
theta_adjusted = theta + np.deg2rad(rotation)
|
||||
|
||||
# Convertir les coordonnées polaires ajustées en coordonnées cartésiennes
|
||||
x_adjusted = width / 2 + r_adjusted * np.cos(theta_adjusted)
|
||||
y_adjusted = height / 2 + r_adjusted * np.sin(theta_adjusted)
|
||||
|
||||
# Interpolation bilinéaire pour obtenir les nouvelles valeurs de pixel
|
||||
coordinates = np.vstack((y_adjusted.flatten(), x_adjusted.flatten()))
|
||||
simulated_img = np.zeros_like(img)
|
||||
for c in range(3): # Canal de couleur (R, G, B)
|
||||
simulated_img[:, :, c] = map_coordinates(img[:, :, c], coordinates, order=1).reshape(img.shape[:2])
|
||||
|
||||
return simulated_img
|
||||
|
||||
# Chemin vers votre image
|
||||
|
||||
# Paramètres de simulation (inclinaison et rotation en degrés)
|
||||
inclination_degrees = 30
|
||||
rotation_degrees = 45
|
||||
|
||||
# Simulation de la vue de dessus avec les paramètres donnés
|
||||
simulated_image = simulate_top_view(image_path, inclination=inclination_degrees, rotation=rotation_degrees)
|
||||
|
||||
# Afficher l'image originale et l'image simulée côte à côte
|
||||
fig, axes = plt.subplots(1, 2, figsize=(10, 5))
|
||||
axes[0].imshow(mpimg.imread(image_path))
|
||||
axes[0].set_title("Image originale")
|
||||
axes[0].axis("off")
|
||||
|
||||
axes[1].imshow(simulated_image)
|
||||
axes[1].set_title("Vue de dessus simulée")
|
||||
axes[1].axis("off")
|
||||
|
||||
plt.show()
|
BIN
cams/new/6min.mp4
Normal file
BIN
cams/new/6min.mp4
Normal file
Binary file not shown.
Before Width: | Height: | Size: 324 KiB After Width: | Height: | Size: 324 KiB |
Before Width: | Height: | Size: 324 KiB After Width: | Height: | Size: 324 KiB |
40
detec/deformation.py
Normal file
40
detec/deformation.py
Normal file
@ -0,0 +1,40 @@
|
||||
import cv2
|
||||
import numpy as np
|
||||
|
||||
|
||||
frame_width = 1280
|
||||
frame_height = 720
|
||||
|
||||
size = (frame_width, frame_height)
|
||||
|
||||
result = cv2.VideoWriter('deformed.avi', cv2.VideoWriter_fourcc(*'XVID'), 30, size)
|
||||
|
||||
video_path = 'cams/new/cut2.mp4'
|
||||
cap = cv2.VideoCapture(video_path)
|
||||
|
||||
source_points = np.float32([[129, 379], [658, 332], [251, 551], [916, 445]])
|
||||
|
||||
destination_points = np.float32([[200, 350], [800, 350], [200, 600], [800, 600]])
|
||||
|
||||
M = cv2.getPerspectiveTransform(source_points, destination_points)
|
||||
|
||||
while cap.isOpened():
|
||||
ret, frame = cap.read()
|
||||
if not ret:
|
||||
break
|
||||
|
||||
transformed_frame = cv2.warpPerspective(frame, M, (frame.shape[1], frame.shape[0]))
|
||||
|
||||
# cv2.imshow('Vue de destination', cv2.resize(frame, (1280, 720)))
|
||||
|
||||
result.write(cv2.resize(transformed_frame, (1280, 720)))
|
||||
cv2.imshow('Vue de destination', cv2.resize(transformed_frame, (1280, 720)))
|
||||
|
||||
if cv2.waitKey(1) & 0xFF == ord('q'):
|
||||
break
|
||||
|
||||
|
||||
cap.release()
|
||||
result.release()
|
||||
cv2.destroyAllWindows()
|
||||
print("The video was successfully saved")
|
@ -4,7 +4,7 @@ import numpy as np
|
||||
import cv2
|
||||
import time
|
||||
|
||||
cap = cv2.VideoCapture('cams/10s.mp4')
|
||||
cap = cv2.VideoCapture('cams/2/10s.mp4')
|
||||
folder_path = "track/exp2/labels/"
|
||||
name = '10s'
|
||||
fps = 141
|
||||
@ -41,6 +41,11 @@ while(cap.isOpened()):
|
||||
bottom_right_y = int(center_y + bbox_height / 2)
|
||||
|
||||
cv2.rectangle(frame, (top_left_x, top_left_y), (bottom_right_x, bottom_right_y), (255, 0, 0), 2)
|
||||
|
||||
# print('bottom_right_y: ', bottom_right_y)
|
||||
# print('bottom_right_x: ', bottom_right_x)
|
||||
# print('top_left_y: ', top_left_y)
|
||||
# print('top_left_x: ', top_left_x)
|
||||
|
||||
label = f'Class: {int(class_id)}, Object ID: {int(object_id)}'
|
||||
cv2.putText(frame, label, (top_left_x, top_left_y - 5), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 0, 0), 1)
|
||||
|
@ -4,7 +4,7 @@ import numpy as np
|
||||
import cv2
|
||||
import time
|
||||
|
||||
cap = cv2.VideoCapture('cams/new/cut1.mp4')
|
||||
cap = cv2.VideoCapture('cams/new/ByED80IKdIU_06.mp4')
|
||||
folder_path = "cams/new/frames"
|
||||
|
||||
frame_nb = 0
|
||||
|
@ -1,8 +0,0 @@
|
||||
2 0.75625 0.849537 0.116667 0.126852 1
|
||||
2 0.588542 0.672685 0.0885417 0.0916667 11
|
||||
2 0.821875 0.7875 0.130208 0.137963 3
|
||||
2 0.18724 0.469907 0.0526042 0.075 2
|
||||
2 0.277344 0.258796 0.0286458 0.037963 5
|
||||
2 0.163802 0.32037 0.0411458 0.0574074 9
|
||||
2 0.0153646 0.431944 0.0307292 0.0435185 12
|
||||
2 0.257031 0.438426 0.0380208 0.0601852 17
|
@ -1,10 +0,0 @@
|
||||
2 0.755729 0.851852 0.115625 0.12963 1
|
||||
2 0.58724 0.670833 0.0890625 0.0916667 11
|
||||
2 0.186979 0.471759 0.0510417 0.0731481 2
|
||||
2 0.817708 0.785648 0.129167 0.136111 3
|
||||
2 0.164062 0.32037 0.0416667 0.0592593 9
|
||||
2 0.277865 0.258796 0.0286458 0.037963 5
|
||||
2 0.196354 0.366204 0.0375 0.0601852 4
|
||||
2 0.257031 0.437963 0.0401042 0.0611111 17
|
||||
2 0.252604 0.241204 0.03125 0.037963 16
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
@ -1,10 +0,0 @@
|
||||
2 0.753125 0.848611 0.113542 0.128704 1
|
||||
2 0.582812 0.665741 0.0875 0.087037 11
|
||||
2 0.188802 0.473148 0.0515625 0.0722222 2
|
||||
2 0.807813 0.774537 0.127083 0.126852 3
|
||||
2 0.164062 0.32037 0.0416667 0.0592593 9
|
||||
2 0.277865 0.259259 0.0286458 0.037037 5
|
||||
2 0.196354 0.366204 0.0375 0.0601852 4
|
||||
2 0.257292 0.437963 0.040625 0.0611111 17
|
||||
2 0.0158854 0.432407 0.0307292 0.0425926 12
|
||||
2 0.252604 0.241204 0.03125 0.037963 16
|
@ -1,8 +0,0 @@
|
||||
2 0.735677 0.828241 0.107813 0.126852 1
|
||||
2 0.559375 0.640741 0.0802083 0.0833333 11
|
||||
2 0.755729 0.722685 0.109375 0.112037 3
|
||||
2 0.164323 0.320833 0.0442708 0.0583333 9
|
||||
2 0.193229 0.485648 0.0479167 0.0787037 2
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
9 0.434635 0.465741 0.0151042 0.0592593 20
|
||||
2 0.0161458 0.432407 0.0302083 0.0425926 12
|
@ -1,10 +0,0 @@
|
||||
2 0.52526 0.605556 0.0734375 0.0814815 11
|
||||
2 0.708333 0.799537 0.101042 0.119444 1
|
||||
2 0.165885 0.320833 0.0432292 0.0583333 9
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
9 0.434375 0.465278 0.0145833 0.0601852 20
|
||||
2 0.715625 0.669444 0.0875 0.1 3
|
||||
2 0.209375 0.509259 0.0552083 0.0796296 2
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.273698 0.465278 0.0484375 0.0694444 17
|
||||
2 0.160938 0.413426 0.0447917 0.0805556 19
|
@ -1,9 +0,0 @@
|
||||
2 0.773033 0.871559 0.117524 0.134554
|
||||
2 0.1781 0.454306 0.0517372 0.0674006
|
||||
2 0.93399 0.91175 0.130592 0.165293
|
||||
2 0.196279 0.367585 0.038767 0.0591253
|
||||
2 0.277958 0.259827 0.0284873 0.0366052
|
||||
2 0.629973 0.716697 0.0822147 0.0904778
|
||||
2 0.933465 0.713395 0.0418287 0.056249
|
||||
2 0.0157695 0.432551 0.0303885 0.0423687
|
||||
2 0.16433 0.320337 0.0409686 0.0583869
|
@ -1,8 +0,0 @@
|
||||
2 0.76875 0.865741 0.115625 0.131481 1
|
||||
2 0.890365 0.851389 0.148438 0.149074 3
|
||||
2 0.181771 0.460648 0.05 0.0694444 2
|
||||
2 0.196354 0.366204 0.0375 0.0583333 4
|
||||
2 0.610156 0.693519 0.0901042 0.0981481 11
|
||||
2 0.278125 0.258796 0.028125 0.0361111 5
|
||||
2 0.165104 0.319444 0.0395833 0.0592593 9
|
||||
2 0.015625 0.432407 0.0302083 0.0425926 12
|
@ -1,7 +0,0 @@
|
||||
2 0.767708 0.866667 0.116667 0.131481 1
|
||||
2 0.884635 0.846296 0.146354 0.148148 3
|
||||
2 0.608333 0.693056 0.0895833 0.0990741 11
|
||||
2 0.196354 0.366667 0.0375 0.0592593 4
|
||||
2 0.182552 0.463426 0.0515625 0.0712963 2
|
||||
2 0.278125 0.258333 0.028125 0.037037 5
|
||||
2 0.164844 0.319444 0.0401042 0.0592593 9
|
@ -1,8 +0,0 @@
|
||||
2 0.767708 0.866667 0.116667 0.131481 1
|
||||
2 0.884635 0.846296 0.146354 0.148148 3
|
||||
2 0.608333 0.692593 0.0895833 0.1 11
|
||||
2 0.196354 0.366667 0.0375 0.0592593 4
|
||||
2 0.182552 0.463426 0.0515625 0.0712963 2
|
||||
2 0.278125 0.258333 0.028125 0.037037 5
|
||||
2 0.164844 0.319444 0.0401042 0.0592593 9
|
||||
2 0.254167 0.243056 0.0302083 0.037963 16
|
@ -1,9 +0,0 @@
|
||||
2 0.766146 0.8625 0.116667 0.132407 1
|
||||
2 0.604167 0.689815 0.0916667 0.0944444 11
|
||||
2 0.871354 0.835185 0.144792 0.144444 3
|
||||
2 0.183333 0.4625 0.053125 0.0712963 2
|
||||
2 0.195573 0.366204 0.0380208 0.0601852 4
|
||||
2 0.277865 0.259259 0.0286458 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
2 0.164062 0.319907 0.040625 0.0583333 9
|
||||
2 0.252344 0.24213 0.0317708 0.0361111 16
|
@ -1,9 +0,0 @@
|
||||
2 0.764583 0.862037 0.114583 0.133333 1
|
||||
2 0.864583 0.82963 0.141667 0.142593 3
|
||||
2 0.602865 0.689352 0.0911458 0.0935185 11
|
||||
2 0.183333 0.465278 0.0520833 0.0731481 2
|
||||
2 0.195573 0.366204 0.0380208 0.0601852 4
|
||||
2 0.277604 0.259259 0.028125 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
2 0.164062 0.319907 0.040625 0.0583333 9
|
||||
2 0.252344 0.24213 0.0317708 0.0361111 16
|
@ -1,9 +0,0 @@
|
||||
2 0.764062 0.861574 0.115625 0.132407 1
|
||||
2 0.859375 0.825 0.140625 0.140741 3
|
||||
2 0.602604 0.686574 0.0895833 0.0953704 11
|
||||
2 0.183854 0.465278 0.0541667 0.0712963 2
|
||||
2 0.277865 0.259259 0.0286458 0.037037 5
|
||||
2 0.195573 0.366204 0.0380208 0.0601852 4
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
2 0.164062 0.32037 0.0416667 0.0574074 9
|
||||
2 0.251823 0.241667 0.0317708 0.037037 16
|
@ -1,8 +0,0 @@
|
||||
2 0.763281 0.861111 0.114062 0.131481 1
|
||||
2 0.854427 0.819907 0.138021 0.141667 3
|
||||
2 0.601302 0.685648 0.0901042 0.0953704 11
|
||||
2 0.184896 0.465741 0.0541667 0.0722222 2
|
||||
2 0.196094 0.365741 0.0369792 0.0592593 4
|
||||
2 0.278125 0.259259 0.028125 0.037037 5
|
||||
2 0.164062 0.32037 0.0416667 0.0592593 9
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
@ -1,10 +0,0 @@
|
||||
2 0.7625 0.859259 0.113542 0.131481 1
|
||||
2 0.848698 0.812037 0.135937 0.138889 3
|
||||
2 0.598177 0.68287 0.0901042 0.0953704 11
|
||||
2 0.185677 0.466204 0.0536458 0.0712963 2
|
||||
2 0.196094 0.365741 0.0369792 0.0592593 4
|
||||
2 0.278125 0.258796 0.028125 0.0361111 5
|
||||
2 0.164323 0.32037 0.0411458 0.0592593 9
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.253385 0.432407 0.0421875 0.0611111 17
|
||||
2 0.254167 0.243519 0.0302083 0.037037 16
|
@ -1,9 +0,0 @@
|
||||
2 0.7625 0.859259 0.113542 0.131481 1
|
||||
2 0.848698 0.812037 0.135937 0.138889 3
|
||||
2 0.598177 0.68287 0.0901042 0.0953704 11
|
||||
2 0.185677 0.466204 0.0536458 0.0712963 2
|
||||
2 0.196094 0.365741 0.0369792 0.0592593 4
|
||||
2 0.278125 0.258796 0.028125 0.0361111 5
|
||||
2 0.164323 0.32037 0.0411458 0.0592593 9
|
||||
2 0.253385 0.432407 0.0421875 0.0611111 17
|
||||
2 0.254167 0.243519 0.0302083 0.037037 16
|
@ -1,9 +0,0 @@
|
||||
2 0.759896 0.858796 0.113542 0.132407 1
|
||||
2 0.836198 0.802315 0.134896 0.136111 3
|
||||
2 0.595052 0.680556 0.0890625 0.0962963 11
|
||||
2 0.186458 0.468056 0.053125 0.075 2
|
||||
2 0.195833 0.365278 0.0375 0.0601852 4
|
||||
2 0.164062 0.32037 0.0416667 0.0592593 9
|
||||
2 0.277865 0.259259 0.0286458 0.037037 5
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.253125 0.431944 0.0427083 0.062037 17
|
@ -1,7 +0,0 @@
|
||||
2 0.772859 0.870632 0.117312 0.134557
|
||||
2 0.178607 0.455169 0.0533702 0.06887
|
||||
2 0.932045 0.903765 0.135076 0.164
|
||||
2 0.278254 0.25992 0.0286986 0.0367154
|
||||
2 0.195865 0.367401 0.0387628 0.059786
|
||||
2 0.164468 0.320351 0.0406097 0.058796
|
||||
2 0.0159088 0.432421 0.0307202 0.0426309
|
@ -1,8 +0,0 @@
|
||||
2 0.757812 0.85787 0.115625 0.136111 1
|
||||
2 0.593229 0.677778 0.0885417 0.0925926 11
|
||||
2 0.186458 0.468981 0.0541667 0.0768519 2
|
||||
2 0.832292 0.797685 0.133333 0.137963 3
|
||||
2 0.277604 0.258796 0.028125 0.037963 5
|
||||
2 0.163542 0.32037 0.0416667 0.0592593 9
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
2 0.196094 0.365741 0.0380208 0.0611111 4
|
@ -1,8 +0,0 @@
|
||||
2 0.75651 0.85463 0.118229 0.137037 1
|
||||
2 0.826562 0.792593 0.129167 0.137037 3
|
||||
2 0.185677 0.468981 0.0526042 0.0768519 2
|
||||
2 0.590625 0.674537 0.0885417 0.0916667 11
|
||||
2 0.277344 0.258796 0.0286458 0.037963 5
|
||||
2 0.163542 0.319907 0.0416667 0.0583333 9
|
||||
2 0.196094 0.365741 0.0380208 0.0611111 4
|
||||
2 0.0153646 0.431944 0.0307292 0.0435185 12
|
@ -1,10 +0,0 @@
|
||||
2 0.755469 0.851852 0.116146 0.12963 1
|
||||
2 0.58724 0.670833 0.0890625 0.0916667 11
|
||||
2 0.186979 0.471759 0.0510417 0.0731481 2
|
||||
2 0.817708 0.785648 0.129167 0.136111 3
|
||||
2 0.164062 0.32037 0.0416667 0.0592593 9
|
||||
2 0.278125 0.258796 0.028125 0.037963 5
|
||||
2 0.196354 0.366204 0.0375 0.0601852 4
|
||||
2 0.257031 0.437963 0.0401042 0.0611111 17
|
||||
2 0.0158854 0.432407 0.0307292 0.0425926 12
|
||||
2 0.252604 0.241204 0.03125 0.037963 16
|
@ -1,6 +0,0 @@
|
||||
2 0.752083 0.847685 0.113542 0.130556 1
|
||||
2 0.58125 0.664815 0.0875 0.087037 11
|
||||
2 0.802604 0.767593 0.123958 0.12963 3
|
||||
2 0.189062 0.475 0.0520833 0.0722222 2
|
||||
2 0.163542 0.32037 0.0427083 0.0592593 9
|
||||
2 0.278125 0.258796 0.028125 0.037963 5
|
@ -1,6 +0,0 @@
|
||||
2 0.751042 0.847222 0.113542 0.12963 1
|
||||
2 0.188021 0.475926 0.0510417 0.0703704 2
|
||||
2 0.579427 0.6625 0.0848958 0.087963 11
|
||||
2 0.163542 0.32037 0.0427083 0.0592593 9
|
||||
2 0.277604 0.258333 0.028125 0.0388889 5
|
||||
2 0.798698 0.763889 0.123438 0.131481 3
|
@ -1,6 +0,0 @@
|
||||
2 0.749479 0.84537 0.111458 0.127778 1
|
||||
2 0.188542 0.476852 0.05 0.0703704 2
|
||||
2 0.163281 0.32037 0.0421875 0.0592593 9
|
||||
2 0.577083 0.660185 0.0864583 0.087037 11
|
||||
2 0.277604 0.258333 0.028125 0.0388889 5
|
||||
2 0.793229 0.759259 0.121875 0.127778 3
|
@ -1,6 +0,0 @@
|
||||
2 0.748437 0.844907 0.111458 0.128704 1
|
||||
2 0.57526 0.657407 0.0859375 0.0851852 11
|
||||
2 0.790104 0.756019 0.119792 0.128704 3
|
||||
2 0.163542 0.320833 0.0427083 0.0601852 9
|
||||
2 0.277604 0.258333 0.028125 0.0388889 5
|
||||
2 0.189583 0.479167 0.0489583 0.0731481 2
|
@ -1,6 +0,0 @@
|
||||
2 0.772656 0.869907 0.117188 0.134259 1
|
||||
2 0.178906 0.452315 0.0526042 0.0638889 2
|
||||
2 0.928646 0.897222 0.141667 0.162963 3
|
||||
2 0.196094 0.365741 0.0380208 0.0592593 4
|
||||
2 0.164844 0.319444 0.0401042 0.0592593 9
|
||||
2 0.278125 0.258796 0.028125 0.0361111 5
|
@ -1,7 +0,0 @@
|
||||
2 0.748437 0.844907 0.111458 0.128704 1
|
||||
2 0.575 0.656944 0.0854167 0.0842593 11
|
||||
2 0.163542 0.320833 0.0427083 0.0601852 9
|
||||
2 0.790104 0.756019 0.119792 0.128704 3
|
||||
2 0.277604 0.258333 0.028125 0.0388889 5
|
||||
2 0.189844 0.479167 0.0494792 0.0731481 2
|
||||
2 0.147917 0.398148 0.0541667 0.0833333 19
|
@ -1,8 +0,0 @@
|
||||
2 0.745833 0.841667 0.111458 0.125926 1
|
||||
2 0.78099 0.745833 0.118229 0.119444 3
|
||||
2 0.189323 0.480556 0.0494792 0.0740741 2
|
||||
2 0.164323 0.32037 0.0442708 0.0592593 9
|
||||
2 0.572135 0.654167 0.0838542 0.0861111 11
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
2 0.149479 0.398611 0.053125 0.0861111 19
|
||||
2 0.0158854 0.432407 0.0296875 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.570833 0.651389 0.084375 0.0842593 11
|
||||
2 0.744271 0.838889 0.1125 0.122222 1
|
||||
2 0.776042 0.743056 0.117708 0.119444 3
|
||||
2 0.190885 0.481019 0.0494792 0.0731481 2
|
||||
2 0.164323 0.32037 0.0442708 0.0592593 9
|
||||
2 0.149479 0.398611 0.0541667 0.0861111 19
|
||||
2 0.277865 0.259259 0.0286458 0.037037 5
|
||||
2 0.0158854 0.432407 0.0296875 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.567969 0.649537 0.0848958 0.087963 11
|
||||
2 0.742708 0.837963 0.110417 0.124074 1
|
||||
2 0.773177 0.741204 0.115104 0.119444 3
|
||||
2 0.163542 0.32037 0.0447917 0.0592593 9
|
||||
2 0.191146 0.481019 0.0489583 0.0768519 2
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.14974 0.399074 0.0546875 0.087037 19
|
||||
2 0.0158854 0.432407 0.0307292 0.0425926 12
|
@ -1,7 +0,0 @@
|
||||
2 0.742448 0.835648 0.110937 0.125 1
|
||||
2 0.566667 0.648148 0.0864583 0.0851852 11
|
||||
2 0.76875 0.738889 0.111458 0.118519 3
|
||||
2 0.191406 0.481944 0.0484375 0.0768519 2
|
||||
2 0.163281 0.320833 0.0432292 0.0583333 9
|
||||
2 0.277344 0.259259 0.0286458 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.740885 0.833796 0.108854 0.125 1
|
||||
2 0.764844 0.73287 0.111979 0.110185 3
|
||||
2 0.564063 0.646759 0.0822917 0.087963 11
|
||||
2 0.191667 0.48287 0.0479167 0.075 2
|
||||
2 0.163021 0.321296 0.04375 0.0592593 9
|
||||
2 0.277083 0.259259 0.0291667 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
9 0.434375 0.464815 0.0145833 0.062963 20
|
@ -1,8 +0,0 @@
|
||||
2 0.740885 0.833796 0.108854 0.125 1
|
||||
2 0.764844 0.73287 0.111979 0.110185 3
|
||||
2 0.564063 0.646759 0.0822917 0.0861111 11
|
||||
2 0.191667 0.48287 0.0479167 0.075 2
|
||||
2 0.163021 0.321296 0.04375 0.0592593 9
|
||||
2 0.277083 0.259259 0.0291667 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
9 0.434375 0.464815 0.0145833 0.062963 20
|
@ -1,8 +0,0 @@
|
||||
2 0.736979 0.829167 0.107292 0.128704 1
|
||||
2 0.560156 0.643056 0.0817708 0.0861111 11
|
||||
2 0.758854 0.725926 0.110417 0.112963 3
|
||||
2 0.192448 0.485648 0.0473958 0.075 2
|
||||
2 0.163542 0.320833 0.0447917 0.0601852 9
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
9 0.434375 0.464815 0.0145833 0.062963 20
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.734115 0.826852 0.106771 0.125926 1
|
||||
2 0.55625 0.637963 0.08125 0.0851852 11
|
||||
2 0.195573 0.489352 0.0515625 0.0768519 2
|
||||
2 0.164323 0.320833 0.0442708 0.0583333 9
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
2 0.752865 0.716667 0.106771 0.118519 3
|
||||
9 0.434635 0.465741 0.0151042 0.0592593 20
|
||||
2 0.0158854 0.432407 0.0307292 0.0425926 12
|
@ -1,6 +0,0 @@
|
||||
2 0.772396 0.869444 0.116667 0.133333 1
|
||||
2 0.178906 0.455093 0.0505208 0.0694444 2
|
||||
2 0.196354 0.365741 0.0375 0.0592593 4
|
||||
2 0.915625 0.890741 0.167708 0.162963 3
|
||||
2 0.165104 0.319444 0.0395833 0.0592593 9
|
||||
2 0.278125 0.258333 0.028125 0.037037 5
|
@ -1,9 +0,0 @@
|
||||
2 0.732292 0.826389 0.107292 0.125 1
|
||||
2 0.553385 0.637037 0.0817708 0.0888889 11
|
||||
2 0.164062 0.321296 0.0447917 0.0574074 9
|
||||
9 0.434635 0.465278 0.0151042 0.0601852 20
|
||||
2 0.748698 0.711111 0.105729 0.116667 3
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.19401 0.490278 0.0463542 0.0787037 2
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.265365 0.460185 0.0442708 0.0611111 17
|
@ -1,9 +0,0 @@
|
||||
2 0.730469 0.825463 0.105729 0.125 1
|
||||
2 0.54974 0.633333 0.0776042 0.0851852 11
|
||||
2 0.745313 0.708796 0.105208 0.110185 3
|
||||
9 0.434375 0.464815 0.0145833 0.0611111 20
|
||||
2 0.164062 0.321759 0.04375 0.0583333 9
|
||||
2 0.195833 0.489815 0.046875 0.0814815 2
|
||||
2 0.277344 0.259259 0.0296875 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
||||
2 0.265885 0.461111 0.0442708 0.0611111 17
|
@ -1,8 +0,0 @@
|
||||
2 0.730469 0.825463 0.105729 0.125 1
|
||||
2 0.54974 0.633333 0.0776042 0.0851852 11
|
||||
2 0.745313 0.708796 0.105208 0.110185 3
|
||||
2 0.164062 0.321759 0.04375 0.0583333 9
|
||||
9 0.434115 0.464815 0.0151042 0.0611111 20
|
||||
2 0.195833 0.489815 0.046875 0.0814815 2
|
||||
2 0.277344 0.259259 0.0296875 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.727344 0.819907 0.106771 0.123148 1
|
||||
2 0.547135 0.626852 0.0796875 0.0833333 11
|
||||
2 0.164583 0.321759 0.0427083 0.0564815 9
|
||||
2 0.738542 0.704167 0.108333 0.112037 3
|
||||
9 0.434375 0.464815 0.0145833 0.0611111 20
|
||||
2 0.198437 0.495833 0.046875 0.0768519 2
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.0153646 0.432407 0.0307292 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.725521 0.817593 0.105208 0.12037 1
|
||||
2 0.545573 0.625463 0.0796875 0.0805556 11
|
||||
2 0.196615 0.497222 0.0442708 0.0759259 2
|
||||
2 0.164583 0.321759 0.0427083 0.0564815 9
|
||||
2 0.738281 0.699074 0.103646 0.111111 3
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
9 0.434635 0.465741 0.0151042 0.0592593 20
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
@ -1,8 +0,0 @@
|
||||
2 0.722656 0.816667 0.106771 0.12037 1
|
||||
2 0.54349 0.622685 0.0807292 0.0805556 11
|
||||
2 0.165104 0.321759 0.0427083 0.0564815 9
|
||||
2 0.198437 0.498148 0.0458333 0.0759259 2
|
||||
2 0.733073 0.694907 0.0973958 0.113889 3
|
||||
9 0.434635 0.466204 0.0151042 0.0583333 20
|
||||
2 0.278125 0.259259 0.0291667 0.037037 5
|
||||
2 0.0158854 0.432407 0.0317708 0.0425926 12
|
@ -1,9 +0,0 @@
|
||||
2 0.721094 0.814815 0.106771 0.118519 1
|
||||
2 0.164583 0.321296 0.04375 0.0574074 9
|
||||
2 0.729427 0.688889 0.0984375 0.107407 3
|
||||
2 0.540625 0.618056 0.078125 0.0787037 11
|
||||
2 0.2 0.499074 0.05 0.0759259 2
|
||||
2 0.278125 0.259259 0.0291667 0.037037 5
|
||||
9 0.434635 0.466204 0.0151042 0.0583333 20
|
||||
2 0.0158854 0.432407 0.0317708 0.0425926 12
|
||||
2 0.270052 0.462037 0.0484375 0.062963 17
|
@ -1,10 +0,0 @@
|
||||
2 0.719531 0.812963 0.103646 0.12037 1
|
||||
2 0.538281 0.616204 0.0776042 0.0768519 11
|
||||
2 0.165104 0.321296 0.04375 0.0574074 9
|
||||
2 0.278125 0.259259 0.0291667 0.037037 5
|
||||
9 0.434375 0.465741 0.0145833 0.0592593 20
|
||||
2 0.728125 0.687037 0.0958333 0.107407 3
|
||||
2 0.158333 0.406944 0.0458333 0.0824074 19
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.270573 0.462963 0.0484375 0.062963 17
|
||||
2 0.205729 0.501852 0.0572917 0.0740741 2
|
@ -1,9 +0,0 @@
|
||||
2 0.719531 0.8125 0.103646 0.121296 1
|
||||
2 0.538281 0.616204 0.0776042 0.0768519 11
|
||||
2 0.165104 0.321296 0.04375 0.0574074 9
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
9 0.434375 0.465741 0.0145833 0.0592593 20
|
||||
2 0.728125 0.687037 0.0958333 0.107407 3
|
||||
2 0.158333 0.406944 0.0458333 0.0824074 19
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.20599 0.501389 0.0567708 0.0731481 2
|
@ -1,9 +0,0 @@
|
||||
2 0.714844 0.808333 0.103646 0.12037 1
|
||||
2 0.165625 0.321296 0.0427083 0.0574074 9
|
||||
2 0.534896 0.6125 0.078125 0.0768519 11
|
||||
9 0.434115 0.464815 0.0140625 0.0611111 20
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.723958 0.681944 0.090625 0.106481 3
|
||||
2 0.204948 0.503241 0.0598958 0.0768519 2
|
||||
2 0.015625 0.431944 0.03125 0.0435185 12
|
||||
2 0.159375 0.412037 0.0427083 0.0796296 19
|
@ -1,7 +0,0 @@
|
||||
2 0.771875 0.868981 0.116667 0.132407 1
|
||||
2 0.910937 0.88287 0.177083 0.152778 3
|
||||
2 0.179167 0.456019 0.0520833 0.0694444 2
|
||||
2 0.196094 0.366204 0.0380208 0.0601852 4
|
||||
2 0.278125 0.258796 0.028125 0.0361111 5
|
||||
2 0.164844 0.319444 0.0401042 0.0592593 9
|
||||
2 0.61901 0.705093 0.0921875 0.102778 11
|
@ -1,9 +0,0 @@
|
||||
2 0.71276 0.806481 0.103646 0.12037 1
|
||||
2 0.165885 0.321759 0.0421875 0.0564815 9
|
||||
2 0.532292 0.611574 0.0770833 0.0787037 11
|
||||
2 0.207292 0.504167 0.05625 0.0768519 2
|
||||
2 0.159375 0.4125 0.04375 0.0787037 19
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.720573 0.677315 0.0921875 0.106481 3
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
||||
2 0.0153646 0.431944 0.0307292 0.0435185 12
|
@ -1,9 +0,0 @@
|
||||
2 0.711719 0.80463 0.103646 0.122222 1
|
||||
2 0.165365 0.321296 0.0432292 0.0574074 9
|
||||
2 0.530729 0.609722 0.0770833 0.0787037 11
|
||||
2 0.720052 0.674537 0.0880208 0.10463 3
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
||||
2 0.207552 0.505093 0.0578125 0.0787037 2
|
||||
2 0.159635 0.411111 0.0432292 0.0814815 19
|
||||
2 0.015625 0.431944 0.03125 0.0435185 12
|
@ -1,10 +0,0 @@
|
||||
2 0.710417 0.801852 0.104167 0.12037 1
|
||||
2 0.165625 0.321296 0.0427083 0.0574074 9
|
||||
2 0.208854 0.505556 0.05625 0.0777778 2
|
||||
2 0.527865 0.606944 0.0744792 0.0787037 11
|
||||
2 0.717708 0.672222 0.0875 0.101852 3
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
9 0.434375 0.465278 0.0145833 0.0601852 20
|
||||
2 0.272656 0.464352 0.0505208 0.0675926 17
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.160417 0.4125 0.0447917 0.0805556 19
|
@ -1,9 +0,0 @@
|
||||
2 0.52526 0.605556 0.0734375 0.0814815 11
|
||||
2 0.708333 0.799537 0.101042 0.119444 1
|
||||
2 0.165885 0.320833 0.0432292 0.0583333 9
|
||||
2 0.277865 0.259259 0.0296875 0.037037 5
|
||||
9 0.434375 0.465278 0.0145833 0.0601852 20
|
||||
2 0.715625 0.669444 0.0875 0.1 3
|
||||
2 0.209375 0.509259 0.0552083 0.0796296 2
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.273958 0.465278 0.0489583 0.0694444 17
|
@ -1,9 +0,0 @@
|
||||
2 0.704688 0.794444 0.101042 0.116667 1
|
||||
2 0.521875 0.601852 0.0770833 0.0814815 11
|
||||
2 0.166406 0.321759 0.0421875 0.0583333 9
|
||||
2 0.711198 0.664352 0.0848958 0.100926 3
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.210156 0.510648 0.0557292 0.0805556 2
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
||||
2 0.274479 0.466204 0.0489583 0.0694444 17
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
@ -1,9 +0,0 @@
|
||||
2 0.166406 0.321759 0.0432292 0.0583333 9
|
||||
2 0.702083 0.793519 0.1 0.118519 1
|
||||
2 0.520312 0.599074 0.075 0.0814815 11
|
||||
2 0.277344 0.259259 0.0296875 0.037037 5
|
||||
2 0.708594 0.661111 0.0817708 0.0981481 3
|
||||
2 0.279167 0.471296 0.0416667 0.0666667 17
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
||||
2 0.158854 0.413426 0.0489583 0.0861111 19
|
@ -1,9 +0,0 @@
|
||||
2 0.519271 0.597222 0.0760417 0.0796296 11
|
||||
2 0.166406 0.321296 0.0432292 0.0592593 9
|
||||
2 0.701302 0.789815 0.0994792 0.118519 1
|
||||
2 0.708594 0.65787 0.0807292 0.0990741 3
|
||||
2 0.280208 0.474537 0.040625 0.0638889 17
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
2 0.159115 0.413889 0.0494792 0.087037 19
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
@ -1,9 +0,0 @@
|
||||
2 0.166667 0.322222 0.04375 0.0592593 9
|
||||
2 0.516667 0.594444 0.0729167 0.0777778 11
|
||||
2 0.698698 0.789352 0.0984375 0.115741 1
|
||||
2 0.28125 0.478704 0.040625 0.0574074 17
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.70625 0.655093 0.0822917 0.0990741 3
|
||||
2 0.21224 0.516667 0.0546875 0.0814815 2
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
@ -1,9 +0,0 @@
|
||||
2 0.514583 0.593981 0.0739583 0.0787037 11
|
||||
2 0.166146 0.322685 0.0447917 0.0583333 9
|
||||
2 0.697135 0.786111 0.0973958 0.114815 1
|
||||
2 0.282031 0.476852 0.0401042 0.062963 17
|
||||
2 0.704167 0.647685 0.0791667 0.0972222 3
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
||||
2 0.21224 0.515741 0.0557292 0.0814815 2
|
@ -1,7 +0,0 @@
|
||||
2 0.771875 0.868981 0.116667 0.132407 1
|
||||
2 0.910937 0.882407 0.177083 0.151852 3
|
||||
2 0.179167 0.456019 0.0520833 0.0694444 2
|
||||
2 0.196094 0.366204 0.0380208 0.0601852 4
|
||||
2 0.278125 0.258796 0.028125 0.0361111 5
|
||||
2 0.164844 0.319444 0.0401042 0.0592593 9
|
||||
2 0.61875 0.705556 0.0916667 0.101852 11
|
@ -1,9 +0,0 @@
|
||||
2 0.514583 0.593981 0.0739583 0.0787037 11
|
||||
2 0.166146 0.322685 0.0447917 0.0583333 9
|
||||
2 0.697135 0.786111 0.0973958 0.114815 1
|
||||
2 0.281771 0.476852 0.040625 0.0648148 17
|
||||
2 0.703906 0.648148 0.0786458 0.0981481 3
|
||||
2 0.277604 0.259259 0.0291667 0.037037 5
|
||||
2 0.015625 0.432407 0.03125 0.0425926 12
|
||||
9 0.433854 0.464815 0.0145833 0.0611111 20
|
||||
2 0.21224 0.515741 0.0557292 0.0814815 2
|
@ -1,8 +0,0 @@
|
||||
2 0.770052 0.86713 0.117188 0.134259 1
|
||||
2 0.90625 0.871759 0.161458 0.152778 3
|
||||
2 0.179948 0.458796 0.0505208 0.0712963 2
|
||||
2 0.195833 0.36713 0.0395833 0.0601852 4
|
||||
2 0.615104 0.699537 0.0927083 0.100926 11
|
||||
2 0.277604 0.259259 0.028125 0.037037 5
|
||||
2 0.015625 0.431481 0.0302083 0.0425926 12
|
||||
2 0.164323 0.319907 0.0401042 0.0583333 9
|
@ -1,8 +0,0 @@
|
||||
2 0.769531 0.86713 0.116146 0.132407 1
|
||||
2 0.90026 0.862037 0.156771 0.153704 3
|
||||
2 0.180729 0.458333 0.0520833 0.0703704 2
|
||||
2 0.613542 0.697222 0.0916667 0.101852 11
|
||||
2 0.195573 0.36713 0.0390625 0.0601852 4
|
||||
2 0.277604 0.259259 0.028125 0.037037 5
|
||||
2 0.0153646 0.431481 0.0307292 0.0425926 12
|
||||
2 0.164583 0.319907 0.0395833 0.0583333 9
|
@ -1,8 +0,0 @@
|
||||
2 0.76901 0.866667 0.116146 0.131481 1
|
||||
2 0.895833 0.856481 0.153125 0.151852 3
|
||||
2 0.18151 0.459259 0.0505208 0.0703704 2
|
||||
2 0.61224 0.693519 0.0911458 0.1 11
|
||||
2 0.196094 0.36713 0.0380208 0.0601852 4
|
||||
2 0.277865 0.259259 0.0286458 0.037037 5
|
||||
2 0.164062 0.319907 0.040625 0.0583333 9
|
||||
2 0.0158854 0.432407 0.0307292 0.0425926 12
|
24
track/expgood/convert.py
Normal file
24
track/expgood/convert.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Converting lat/long to cartesian
|
||||
import numpy as np
|
||||
import csv
|
||||
|
||||
def opencsv(file):
|
||||
with open(file, newline='') as csvfile:
|
||||
return [row for row in csv.DictReader(csvfile, delimiter=',')]
|
||||
|
||||
data = opencsv('track/points.csv')
|
||||
|
||||
def get_cartesian(lat,lon):
|
||||
lat= lat* np.pi / 180
|
||||
lon= lon* np.pi / 180
|
||||
R = 6371 # radius of the earth
|
||||
x = R * np.cos(lat) * np.cos(lon)
|
||||
y = R * np.cos(lat) * np.sin(lon)
|
||||
return x,y,
|
||||
|
||||
for i in data:
|
||||
lon = float(i['longitude'])
|
||||
lat = float(i['latitude'])
|
||||
print(get_cartesian(lon, lat))
|
||||
|
||||
print(get_cartesian(41.94076496048223, -85.00154950929712))
|
9
track/expgood/labels/cut2_1.txt
Normal file
9
track/expgood/labels/cut2_1.txt
Normal file
@ -0,0 +1,9 @@
|
||||
2 0.773033 0.871559 0.117524 0.134554 1
|
||||
2 0.1781 0.454306 0.0517372 0.0674006 2
|
||||
2 0.93399 0.91175 0.130592 0.165293 3
|
||||
2 0.196279 0.367585 0.0387669 0.0591253 4
|
||||
2 0.277958 0.259827 0.0284874 0.0366052 5
|
||||
2 0.629973 0.716697 0.0822147 0.0904778 6
|
||||
2 0.933465 0.713395 0.0418287 0.056249 7
|
||||
2 0.0157695 0.432551 0.0303885 0.0423687 8
|
||||
2 0.16433 0.320337 0.0409686 0.0583869 9
|
8
track/expgood/labels/cut2_10.txt
Normal file
8
track/expgood/labels/cut2_10.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.768996 0.866464 0.115824 0.131509 1
|
||||
2 0.890892 0.85157 0.152579 0.149122 3
|
||||
2 0.182036 0.460783 0.0502718 0.0701609 2
|
||||
2 0.196545 0.366777 0.0375053 0.0594732 4
|
||||
2 0.610553 0.693426 0.0908496 0.0994409 6
|
||||
2 0.278351 0.259342 0.0281952 0.0368371 5
|
||||
2 0.165148 0.320216 0.0401222 0.0588302 9
|
||||
2 0.254179 0.2434 0.0305212 0.0372623 11
|
8
track/expgood/labels/cut2_100.txt
Normal file
8
track/expgood/labels/cut2_100.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.604513 0.685451 0.0821358 0.0963531 1
|
||||
2 0.708677 0.553149 0.0621157 0.083072 3
|
||||
2 0.259634 0.604045 0.0676725 0.101171 2
|
||||
2 0.18134 0.458863 0.0613174 0.0951883 14
|
||||
2 0.17781 0.339805 0.0440028 0.0637902 9
|
||||
2 0.0157921 0.432472 0.0311245 0.042925 8
|
||||
2 0.277449 0.259172 0.0285732 0.0372413 5
|
||||
2 0.334912 0.554965 0.0497984 0.0700487 13
|
8
track/expgood/labels/cut2_101.txt
Normal file
8
track/expgood/labels/cut2_101.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.601577 0.683733 0.0821245 0.0949345 1
|
||||
2 0.26267 0.606618 0.0665203 0.101754 2
|
||||
2 0.710465 0.552444 0.0623346 0.0821634 3
|
||||
2 0.178219 0.339604 0.0443831 0.0612765 9
|
||||
2 0.277365 0.259071 0.0283717 0.037433 5
|
||||
2 0.181781 0.459964 0.0614181 0.0961052 14
|
||||
2 0.0158002 0.432459 0.0310355 0.0430092 8
|
||||
2 0.333677 0.551792 0.0541454 0.0804199 13
|
8
track/expgood/labels/cut2_102.txt
Normal file
8
track/expgood/labels/cut2_102.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.600592 0.683173 0.0819992 0.0944156 1
|
||||
2 0.263732 0.607461 0.0660905 0.101969 2
|
||||
2 0.71114 0.552221 0.0623618 0.0817812 3
|
||||
2 0.178321 0.339422 0.0444603 0.0602754 9
|
||||
2 0.181872 0.460334 0.0615291 0.0964508 14
|
||||
2 0.277328 0.258977 0.0282929 0.037511 5
|
||||
2 0.0157793 0.432364 0.0309986 0.0430434 8
|
||||
2 0.33321 0.550836 0.0557255 0.0837986 13
|
7
track/expgood/labels/cut2_103.txt
Normal file
7
track/expgood/labels/cut2_103.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.265653 0.611231 0.0672545 0.103944 2
|
||||
2 0.597622 0.679071 0.0815794 0.0956459 1
|
||||
2 0.713661 0.549636 0.0642618 0.0836658 3
|
||||
2 0.179596 0.340494 0.0430547 0.061021 9
|
||||
2 0.277356 0.259093 0.0282823 0.0375336 5
|
||||
2 0.0158642 0.43252 0.0309968 0.0430082 8
|
||||
2 0.182313 0.461374 0.0622637 0.0971545 14
|
8
track/expgood/labels/cut2_104.txt
Normal file
8
track/expgood/labels/cut2_104.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.266965 0.614698 0.067635 0.104647 2
|
||||
2 0.595219 0.674949 0.0810959 0.0949036 1
|
||||
2 0.715581 0.548892 0.0639176 0.0815822 3
|
||||
2 0.180301 0.341019 0.0423474 0.06145 9
|
||||
2 0.18285 0.463887 0.0617838 0.0953677 14
|
||||
2 0.336002 0.55593 0.0596613 0.0860201 13
|
||||
2 0.277417 0.259228 0.0283552 0.0373027 5
|
||||
2 0.0158297 0.432643 0.0309617 0.0427493 8
|
8
track/expgood/labels/cut2_105.txt
Normal file
8
track/expgood/labels/cut2_105.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.717402 0.546729 0.0646035 0.0818913 3
|
||||
2 0.26849 0.618203 0.0681053 0.103982 2
|
||||
2 0.59212 0.672833 0.0825022 0.0949208 1
|
||||
2 0.180703 0.341505 0.0431559 0.0618486 9
|
||||
2 0.184196 0.465096 0.0601241 0.0947635 14
|
||||
2 0.27742 0.259294 0.0283975 0.0371652 5
|
||||
2 0.0158068 0.432644 0.0309641 0.0426688 8
|
||||
2 0.339115 0.56005 0.0580894 0.0832094 13
|
7
track/expgood/labels/cut2_106.txt
Normal file
7
track/expgood/labels/cut2_106.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.18106 0.342271 0.0448808 0.0626715 9
|
||||
2 0.719101 0.544332 0.0640102 0.0803413 3
|
||||
2 0.589834 0.66948 0.0814265 0.094001 1
|
||||
2 0.270132 0.621268 0.0675641 0.10457 2
|
||||
2 0.184433 0.46562 0.0604854 0.096589 14
|
||||
2 0.27744 0.259257 0.0283715 0.0372007 5
|
||||
2 0.0158121 0.43264 0.0309726 0.042669 8
|
8
track/expgood/labels/cut2_107.txt
Normal file
8
track/expgood/labels/cut2_107.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.181306 0.342754 0.045941 0.0630407 9
|
||||
2 0.586705 0.665815 0.0803271 0.0935475 1
|
||||
2 0.271526 0.624833 0.0686905 0.106777 2
|
||||
2 0.721011 0.543365 0.0652698 0.079249 3
|
||||
2 0.277221 0.25925 0.0283465 0.0371736 5
|
||||
2 0.184735 0.466939 0.0604566 0.0962059 14
|
||||
2 0.0156851 0.432513 0.0308545 0.042945 8
|
||||
2 0.346358 0.567863 0.0518847 0.0804252 13
|
8
track/expgood/labels/cut2_108.txt
Normal file
8
track/expgood/labels/cut2_108.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.181395 0.342808 0.0463396 0.063193 9
|
||||
2 0.585625 0.664504 0.0798775 0.0934726 1
|
||||
2 0.272001 0.626021 0.0691008 0.107619 2
|
||||
2 0.721763 0.543004 0.0656913 0.0787516 3
|
||||
2 0.277159 0.259171 0.0283348 0.0371476 5
|
||||
2 0.184813 0.467289 0.0604213 0.0960388 14
|
||||
2 0.015633 0.432329 0.0308124 0.0430731 8
|
||||
2 0.347717 0.569088 0.0504475 0.0799895 13
|
8
track/expgood/labels/cut2_109.txt
Normal file
8
track/expgood/labels/cut2_109.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.181727 0.343046 0.0452627 0.0630576 9
|
||||
2 0.583735 0.661643 0.0798626 0.0918157 1
|
||||
2 0.275056 0.631675 0.0686042 0.110028 2
|
||||
2 0.724252 0.540604 0.067593 0.0774886 3
|
||||
2 0.277121 0.259316 0.0282825 0.0368014 5
|
||||
2 0.0156463 0.432377 0.0307923 0.0432298 8
|
||||
2 0.35127 0.572855 0.0493186 0.0779705 13
|
||||
2 0.185605 0.469305 0.0594927 0.096409 14
|
8
track/expgood/labels/cut2_11.txt
Normal file
8
track/expgood/labels/cut2_11.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.768131 0.866553 0.116513 0.131248 1
|
||||
2 0.885418 0.846326 0.14887 0.148277 3
|
||||
2 0.608677 0.692694 0.0899491 0.0997257 6
|
||||
2 0.196519 0.366729 0.0373179 0.0594119 4
|
||||
2 0.182661 0.463013 0.0511441 0.0708373 2
|
||||
2 0.278323 0.259198 0.028182 0.0369106 5
|
||||
2 0.165061 0.32023 0.0401969 0.0589954 9
|
||||
2 0.254366 0.24357 0.0304182 0.0373993 11
|
7
track/expgood/labels/cut2_110.txt
Normal file
7
track/expgood/labels/cut2_110.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.726441 0.538941 0.068488 0.0761039 3
|
||||
2 0.182302 0.343139 0.0448889 0.0625822 9
|
||||
2 0.276309 0.635661 0.0699522 0.111281 2
|
||||
2 0.581436 0.659435 0.0800294 0.0919842 1
|
||||
2 0.186172 0.469715 0.0586886 0.0975887 14
|
||||
2 0.277186 0.259383 0.0283247 0.036598 5
|
||||
2 0.0156194 0.43231 0.0308198 0.0432973 8
|
7
track/expgood/labels/cut2_111.txt
Normal file
7
track/expgood/labels/cut2_111.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.728462 0.536697 0.0686494 0.0746163 3
|
||||
2 0.182262 0.343512 0.0447888 0.0626192 9
|
||||
2 0.578936 0.655374 0.0791887 0.0925673 1
|
||||
2 0.277785 0.639023 0.0703149 0.111515 2
|
||||
2 0.186325 0.471385 0.0584917 0.0974094 14
|
||||
2 0.277341 0.259445 0.0284262 0.0363937 5
|
||||
2 0.0157234 0.432344 0.0309151 0.0431983 8
|
7
track/expgood/labels/cut2_112.txt
Normal file
7
track/expgood/labels/cut2_112.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.575957 0.652328 0.0785908 0.0918226 1
|
||||
2 0.730165 0.534535 0.0693654 0.0755351 3
|
||||
2 0.182229 0.343989 0.045325 0.062483 9
|
||||
2 0.279957 0.64285 0.0702362 0.110333 2
|
||||
2 0.27737 0.259509 0.0285165 0.0363212 5
|
||||
2 0.0157276 0.432381 0.0309347 0.0431423 8
|
||||
2 0.186777 0.47282 0.0584453 0.0971851 14
|
7
track/expgood/labels/cut2_113.txt
Normal file
7
track/expgood/labels/cut2_113.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.573347 0.649806 0.0781818 0.0920194 1
|
||||
2 0.281531 0.646001 0.0712008 0.109445 2
|
||||
2 0.733511 0.531854 0.0731688 0.0787492 3
|
||||
2 0.182518 0.344488 0.0450535 0.062154 9
|
||||
2 0.277357 0.259531 0.0285458 0.0362776 5
|
||||
2 0.0156997 0.432388 0.0309414 0.043101 8
|
||||
2 0.187161 0.474959 0.056503 0.0966047 14
|
7
track/expgood/labels/cut2_114.txt
Normal file
7
track/expgood/labels/cut2_114.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.572458 0.649006 0.0780043 0.0922032 1
|
||||
2 0.282033 0.647025 0.07161 0.109055 2
|
||||
2 0.182609 0.344596 0.0449717 0.06204 9
|
||||
2 0.734721 0.530891 0.0744485 0.0798227 3
|
||||
2 0.277333 0.259481 0.0285549 0.0362684 5
|
||||
2 0.0156645 0.4323 0.0309414 0.0430883 8
|
||||
2 0.187229 0.475601 0.0558121 0.0964614 14
|
7
track/expgood/labels/cut2_115.txt
Normal file
7
track/expgood/labels/cut2_115.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.568394 0.646365 0.075943 0.0909867 1
|
||||
2 0.28469 0.652228 0.0724057 0.112553 2
|
||||
2 0.183189 0.344846 0.0452875 0.0633747 9
|
||||
2 0.277371 0.259531 0.028473 0.0363878 5
|
||||
2 0.740176 0.527662 0.0790605 0.0827106 3
|
||||
2 0.0157297 0.432489 0.0309483 0.0430112 8
|
||||
2 0.411542 0.479224 0.0542936 0.0609297 6
|
7
track/expgood/labels/cut2_116.txt
Normal file
7
track/expgood/labels/cut2_116.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.566179 0.643658 0.0755267 0.0909498 1
|
||||
2 0.287128 0.656507 0.0728517 0.114972 2
|
||||
2 0.742468 0.525797 0.0786933 0.0836752 3
|
||||
2 0.277376 0.259508 0.0284028 0.0363979 5
|
||||
2 0.408447 0.478602 0.0523625 0.0592509 6
|
||||
2 0.183451 0.346729 0.0444169 0.061668 9
|
||||
2 0.0157137 0.432455 0.0309301 0.0429758 8
|
8
track/expgood/labels/cut2_117.txt
Normal file
8
track/expgood/labels/cut2_117.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.563657 0.642189 0.0748048 0.0896715 1
|
||||
2 0.289143 0.660005 0.072331 0.116545 2
|
||||
2 0.405755 0.477018 0.0538519 0.0615625 6
|
||||
2 0.184155 0.347789 0.0439854 0.0611076 9
|
||||
2 0.744535 0.523903 0.0787773 0.0831881 3
|
||||
2 0.27738 0.259464 0.0284071 0.0364376 5
|
||||
2 0.0157136 0.43239 0.0308966 0.0429758 8
|
||||
2 0.365004 0.589928 0.0529909 0.0880622 13
|
9
track/expgood/labels/cut2_118.txt
Normal file
9
track/expgood/labels/cut2_118.txt
Normal file
@ -0,0 +1,9 @@
|
||||
2 0.561819 0.639636 0.0747901 0.0894804 1
|
||||
2 0.290149 0.663443 0.0739053 0.117231 2
|
||||
2 0.404102 0.475725 0.0539106 0.0627082 6
|
||||
2 0.184389 0.348088 0.0439604 0.0605255 9
|
||||
2 0.277413 0.259514 0.0284153 0.0363829 5
|
||||
2 0.0157167 0.432401 0.0310192 0.0429968 8
|
||||
2 0.746383 0.522975 0.0783483 0.08259 3
|
||||
2 0.362953 0.591447 0.0609928 0.0927924 13
|
||||
2 0.118778 0.263697 0.0292139 0.0384937 15
|
8
track/expgood/labels/cut2_119.txt
Normal file
8
track/expgood/labels/cut2_119.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.559148 0.636307 0.0755444 0.0889471 1
|
||||
2 0.291638 0.667069 0.0749667 0.117416 2
|
||||
2 0.402492 0.473425 0.0544151 0.0621141 6
|
||||
2 0.277449 0.259498 0.0283828 0.0364352 5
|
||||
2 0.0157295 0.432475 0.0310624 0.0429802 8
|
||||
2 0.749601 0.522001 0.0782333 0.0816678 3
|
||||
2 0.118639 0.263615 0.0290191 0.0383106 15
|
||||
2 0.184907 0.347996 0.0443488 0.0620528 9
|
8
track/expgood/labels/cut2_12.txt
Normal file
8
track/expgood/labels/cut2_12.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.767968 0.866784 0.116803 0.131206 1
|
||||
2 0.883799 0.8448 0.147463 0.14805 3
|
||||
2 0.60813 0.692584 0.0896633 0.0999386 6
|
||||
2 0.196474 0.366777 0.0372636 0.059404 4
|
||||
2 0.182842 0.463906 0.0514862 0.071099 2
|
||||
2 0.278302 0.259175 0.0281874 0.0369444 5
|
||||
2 0.164978 0.320283 0.040247 0.0590618 9
|
||||
2 0.254408 0.243647 0.0303982 0.0374495 11
|
7
track/expgood/labels/cut2_120.txt
Normal file
7
track/expgood/labels/cut2_120.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.558156 0.635155 0.0758449 0.0890233 1
|
||||
2 0.292088 0.668227 0.0753377 0.117477 2
|
||||
2 0.40192 0.472554 0.0546298 0.0618907 6
|
||||
2 0.277421 0.259394 0.0283667 0.0364616 5
|
||||
2 0.0156728 0.43236 0.0310767 0.0429824 8
|
||||
2 0.750705 0.52171 0.0780981 0.0812972 3
|
||||
2 0.118546 0.263465 0.0289482 0.038253 15
|
7
track/expgood/labels/cut2_121.txt
Normal file
7
track/expgood/labels/cut2_121.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.5551 0.631637 0.0738263 0.0886052 1
|
||||
2 0.295711 0.67365 0.0757326 0.119257 2
|
||||
2 0.752299 0.520383 0.078086 0.0789778 3
|
||||
2 0.40084 0.469836 0.0528408 0.0589875 6
|
||||
2 0.27738 0.259438 0.0283665 0.0365442 5
|
||||
2 0.0156844 0.432479 0.0311139 0.0430824 8
|
||||
2 0.18504 0.349268 0.0434325 0.0628563 9
|
7
track/expgood/labels/cut2_122.txt
Normal file
7
track/expgood/labels/cut2_122.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.55199 0.628473 0.0748081 0.086217 1
|
||||
2 0.298097 0.677764 0.0755885 0.121356 2
|
||||
2 0.398343 0.467586 0.0536146 0.0582728 6
|
||||
2 0.753674 0.519472 0.076134 0.0769996 3
|
||||
2 0.277381 0.259358 0.0284289 0.036644 5
|
||||
2 0.0157029 0.432383 0.0311617 0.0432008 8
|
||||
2 0.186056 0.35031 0.0430411 0.0615597 9
|
7
track/expgood/labels/cut2_123.txt
Normal file
7
track/expgood/labels/cut2_123.txt
Normal file
@ -0,0 +1,7 @@
|
||||
2 0.5493 0.62474 0.0746153 0.0853865 1
|
||||
2 0.300713 0.681898 0.0745493 0.120477 2
|
||||
2 0.27739 0.259379 0.0284185 0.0366208 5
|
||||
2 0.187482 0.351941 0.0446945 0.0620823 9
|
||||
2 0.0157187 0.432401 0.0311849 0.0432104 8
|
||||
2 0.378735 0.611569 0.0501882 0.0808583 13
|
||||
2 0.395401 0.465794 0.0534002 0.0575005 6
|
6
track/expgood/labels/cut2_124.txt
Normal file
6
track/expgood/labels/cut2_124.txt
Normal file
@ -0,0 +1,6 @@
|
||||
2 0.547152 0.622314 0.0745305 0.0870546 1
|
||||
2 0.303105 0.686685 0.0745885 0.122542 2
|
||||
2 0.277387 0.259375 0.0284513 0.0366343 5
|
||||
2 0.0157217 0.432365 0.0311901 0.0432277 8
|
||||
2 0.187875 0.353056 0.0442009 0.0630586 9
|
||||
2 0.393484 0.463723 0.0517671 0.0567364 6
|
8
track/expgood/labels/cut2_125.txt
Normal file
8
track/expgood/labels/cut2_125.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.544764 0.620004 0.0742839 0.0889219 1
|
||||
2 0.305151 0.691397 0.0752673 0.124833 2
|
||||
2 0.188582 0.354048 0.0448702 0.0628584 9
|
||||
2 0.277382 0.259453 0.0284936 0.0365372 5
|
||||
2 0.0157214 0.432399 0.0311776 0.0431271 8
|
||||
2 0.38395 0.621276 0.051086 0.0723844 13
|
||||
2 0.391116 0.46154 0.0527598 0.0563264 6
|
||||
2 0.118705 0.263582 0.0293725 0.0402921 15
|
8
track/expgood/labels/cut2_126.txt
Normal file
8
track/expgood/labels/cut2_126.txt
Normal file
@ -0,0 +1,8 @@
|
||||
2 0.54394 0.619204 0.0741287 0.0897103 1
|
||||
2 0.305795 0.693033 0.0755104 0.125687 2
|
||||
2 0.188708 0.354292 0.044965 0.0627682 9
|
||||
2 0.277345 0.259421 0.0285074 0.036507 5
|
||||
2 0.0156737 0.432317 0.0311705 0.0430962 8
|
||||
2 0.384703 0.622795 0.0513962 0.0708619 13
|
||||
2 0.390082 0.460743 0.0534806 0.0562676 6
|
||||
2 0.11869 0.263499 0.0294056 0.0404455 15
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user