Fichiers test ajoutés

This commit is contained in:
Nabil Moukhlis 2022-01-14 11:21:29 +01:00
parent b45f977914
commit d675a91144
350 changed files with 4567 additions and 103 deletions

View file

@ -13,14 +13,13 @@ def create_app():
def create(id): def create(id):
import detect import detect
import create_csv import create_csv
attributes = ['Smiling', 'Bald', 'Bangs', 'Black_Hair', 'Blond_Hair', 'Brown_Hair', 'Chubby', attributes = ['Smiling', 'Bald', 'Bangs', 'Black_Hair', 'Blond_Hair', 'Brown_Hair',
'Eyeglasses', 'Heavy_Makeup', 'Male', 'Mustache', 'No_Beard', 'Pale_Skin', 'Eyeglasses', 'Male', 'Mustache', 'No_Beard',
'Straight_Hair', 'Wavy_Hair', 'Wearing_Earrings', 'Wearing_Hat', 'Wearing_Necklace', 'Straight_Hair', 'Wavy_Hair', 'Wearing_Earrings', 'Wearing_Hat', 'Young']
'Wearing_Lipstick', 'Young']
filename = id+'.png' filename = id+'.png'
in_path = "/Datasets/grids/"+filename #PATH TO VOLUME in_path = "/Datasets/grids/"+filename #PATH TO VOLUME
out_path = './images/'+filename out_path = './images/'+filename
weight_path="runs/train/exp4/weights/last.pt" weight_path="runs/train/exp2/weights/last.pt"
#r = requests.get("http://127.0.0.1:50011/update/"+id+"/"+attr+"/"+str(value)+"/") #r = requests.get("http://127.0.0.1:50011/update/"+id+"/"+attr+"/"+str(value)+"/")
#print("Message",file=sys.stdout) #print("Message",file=sys.stdout)
shutil.copy(in_path,out_path) shutil.copy(in_path,out_path)
@ -28,6 +27,9 @@ def create_app():
file_yolo="./runs/detect/"+id+"/labels/"+id+".txt" file_yolo="./runs/detect/"+id+"/labels/"+id+".txt"
file_csv="/Datasets/database/"+id+".csv" file_csv="/Datasets/database/"+id+".csv"
create_csv.create_csv(file_yolo,file_csv,attributes) create_csv.create_csv(file_yolo,file_csv,attributes)
shutil.rmtree("./runs/detect/"+id+"/")
return str(5) return str(5)
return app return app

View file

@ -27,11 +27,9 @@ def create_csv(file_yolo, file_csv, attributes):
yolo.close() yolo.close()
# définition des noms de colonnes # définition des noms de colonnes
fields = ['Excluded', 'id', 'x', 'y', 'Smiling', 'Bald', 'Bangs', 'Black_Hair', 'Blond_Hair', 'Brown_Hair', 'Chubby', fields = ['Excluded', 'id', 'x', 'y','Smiling', 'Bald', 'Bangs', 'Black_Hair', 'Blond_Hair', 'Brown_Hair',
'Eyeglasses', 'Heavy_Makeup', 'Male', 'Mustache', 'No_Beard', 'Pale_Skin', 'Eyeglasses', 'Male', 'Mustache', 'No_Beard',
'Straight_Hair', 'Wavy_Hair', 'Wearing_Earrings', 'Wearing_Hat', 'Wearing_Necklace', 'Straight_Hair', 'Wavy_Hair', 'Wearing_Earrings', 'Wearing_Hat', 'Young']
'Wearing_Lipstick', 'Young']
i = 0 i = 0
coords = [] # liste des coordonnées des classes détectés (emplacement des images) coords = [] # liste des coordonnées des classes détectés (emplacement des images)
rows = [] # liste des lignes to add dans le fichier csv rows = [] # liste des lignes to add dans le fichier csv
@ -60,9 +58,9 @@ def create_csv(file_yolo, file_csv, attributes):
writer.writerows(rows) writer.writerows(rows)
df=pd.read_csv(file_csv,delimiter=',') df=pd.read_csv(file_csv,delimiter=',')
df.rename(columns={'No_Beard':'Beard','Black_Hair':'Black','Blond_Hair':'Blond','Brown_Hair':'Brown','Wavy_Hair':'Wavy','Straight_Hair':'Straight','Wearing_Earrings':'Earrings','Wearing_Hat':'Hat','Wearing_Necklace':'Necklace','Wearing_Lipstick':'Lipstick'},inplace=True) df.rename(columns={'No_Beard':'Beard','Black_Hair':'Black','Blond_Hair':'Blond','Brown_Hair':'Brown','Wavy_Hair':'Wavy','Straight_Hair':'Straight','Wearing_Earrings':'Earrings','Wearing_Hat':'Hat','Wearing_Necklace':'Necklace','Wearing_Lipstick':'Lipstick'},inplace=True)
df.loc[df.Beard == 1,"Beard"] = 2 #df.loc[df.Beard == 1,"Beard"] = 2
df.loc[df.Beard == 0,"Beard"] = 1 #df.loc[df.Beard == 0,"Beard"] = 1
df.loc[df.Beard == 2,"Beard"] = 0 #df.loc[df.Beard == 2,"Beard"] = 0
df.to_csv(file_csv,index=False) df.to_csv(file_csv,index=False)
attributes = ['Smiling', 'Bald', 'Bangs', 'Black_Hair', 'Blond_Hair', 'Brown_Hair', 'Chubby', attributes = ['Smiling', 'Bald', 'Bangs', 'Black_Hair', 'Blond_Hair', 'Brown_Hair', 'Chubby',

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -0,0 +1,29 @@
14 0.899438 0.900459 0.201124 0.197248
0 0.499438 0.300917 0.201124 0.198165
9 0.498876 0.3 0.202247 0.198165
9 0.898876 0.9 0.202247 0.198165
7 0.899438 0.699541 0.201124 0.199083
9 0.898876 0.1 0.202247 0.198165
9 0.898876 0.3 0.2 0.198165
0 0.0994382 0.700459 0.198876 0.199083
7 0.5 0.300459 0.2 0.199083
9 0.501124 0.7 0.2 0.2
7 0.1 0.500459 0.2 0.199083
14 0.498876 0.100917 0.202247 0.198165
9 0.0988764 0.899541 0.197753 0.197248
9 0.7 0.899541 0.2 0.197248
9 0.899438 0.500459 0.198876 0.199083
7 0.698876 0.1 0.2 0.2
7 0.499438 0.9 0.201124 0.2
7 0.298315 0.700459 0.198876 0.199083
9 0.699438 0.700459 0.198876 0.199083
0 0.298315 0.899083 0.198876 0.198165
7 0.7 0.500459 0.2 0.199083
9 0.0994382 0.1 0.198876 0.198165
9 0.498876 0.5 0.2 0.2
7 0.298315 0.100459 0.201124 0.199083
9 0.298876 0.299541 0.2 0.199083
7 0.0994382 0.300917 0.198876 0.198165
9 0.0994382 0.7 0.198876 0.2
7 0.298876 0.5 0.2 0.2
0 0.7 0.300917 0.2 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -0,0 +1,29 @@
14 0.899438 0.900459 0.201124 0.197248
0 0.499438 0.300917 0.201124 0.198165
9 0.498876 0.3 0.202247 0.198165
9 0.898876 0.9 0.202247 0.198165
7 0.899438 0.699541 0.201124 0.199083
9 0.898876 0.1 0.202247 0.198165
9 0.898876 0.3 0.2 0.198165
0 0.0994382 0.700459 0.198876 0.199083
7 0.5 0.300459 0.2 0.199083
9 0.501124 0.7 0.2 0.2
7 0.1 0.500459 0.2 0.199083
14 0.498876 0.100917 0.202247 0.198165
9 0.0988764 0.899541 0.197753 0.197248
9 0.7 0.899541 0.2 0.197248
9 0.899438 0.500459 0.198876 0.199083
7 0.698876 0.1 0.2 0.2
7 0.499438 0.9 0.201124 0.2
7 0.298315 0.700459 0.198876 0.199083
9 0.699438 0.700459 0.198876 0.199083
0 0.298315 0.899083 0.198876 0.198165
7 0.7 0.500459 0.2 0.199083
9 0.0994382 0.1 0.198876 0.198165
9 0.498876 0.5 0.2 0.2
7 0.298315 0.100459 0.201124 0.199083
9 0.298876 0.299541 0.2 0.199083
7 0.0994382 0.300917 0.198876 0.198165
9 0.0994382 0.7 0.198876 0.2
7 0.298876 0.5 0.2 0.2
0 0.7 0.300917 0.2 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,29 @@
14 0.898876 0.1 0.202247 0.198165
7 0.298315 0.100459 0.201124 0.195413
13 0.499438 0.500459 0.201124 0.200917
9 0.899438 0.100917 0.201124 0.198165
9 0.299438 0.300917 0.198876 0.198165
14 0.0994382 0.500459 0.198876 0.199083
9 0.899438 0.897706 0.198876 0.191743
7 0.499438 0.501376 0.201124 0.200917
9 0.5 0.900459 0.202247 0.199083
7 0.0988764 0.300459 0.197753 0.199083
7 0.298315 0.7 0.198876 0.2
9 0.899438 0.700459 0.201124 0.200917
9 0.699438 0.299541 0.198876 0.200917
0 0.899438 0.5 0.201124 0.198165
7 0.699438 0.899541 0.198876 0.197248
7 0.7 0.101376 0.202247 0.197248
9 0.1 0.100459 0.2 0.199083
7 0.899438 0.300459 0.198876 0.199083
7 0.498876 0.700917 0.202247 0.201835
9 0.499438 0.100459 0.201124 0.199083
9 0.499438 0.300459 0.201124 0.200917
9 0.298876 0.899541 0.2 0.199083
9 0.699438 0.500459 0.198876 0.199083
7 0.699438 0.7 0.198876 0.2
14 0.299438 0.100917 0.201124 0.198165
9 0.0994382 0.500459 0.198876 0.199083
9 0.1 0.7 0.2 0.2
7 0.1 0.900459 0.2 0.197248
9 0.298876 0.500917 0.2 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,29 @@
14 0.898876 0.1 0.202247 0.198165
7 0.298315 0.100459 0.201124 0.195413
13 0.499438 0.500459 0.201124 0.200917
9 0.899438 0.100917 0.201124 0.198165
9 0.299438 0.300917 0.198876 0.198165
14 0.0994382 0.500459 0.198876 0.199083
9 0.899438 0.897706 0.198876 0.191743
7 0.499438 0.501376 0.201124 0.200917
9 0.5 0.900459 0.202247 0.199083
7 0.0988764 0.300459 0.197753 0.199083
7 0.298315 0.7 0.198876 0.2
9 0.899438 0.700459 0.201124 0.200917
9 0.699438 0.299541 0.198876 0.200917
0 0.899438 0.5 0.201124 0.198165
7 0.699438 0.899541 0.198876 0.197248
7 0.7 0.101376 0.202247 0.197248
9 0.1 0.100459 0.2 0.199083
7 0.899438 0.300459 0.198876 0.199083
7 0.498876 0.700917 0.202247 0.201835
9 0.499438 0.100459 0.201124 0.199083
9 0.499438 0.300459 0.201124 0.200917
9 0.298876 0.899541 0.2 0.199083
9 0.699438 0.500459 0.198876 0.199083
7 0.699438 0.7 0.198876 0.2
14 0.299438 0.100917 0.201124 0.198165
9 0.0994382 0.500459 0.198876 0.199083
9 0.1 0.7 0.2 0.2
7 0.1 0.900459 0.2 0.197248
9 0.298876 0.500917 0.2 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,28 @@
14 0.300562 0.100459 0.203371 0.197248
6 0.498315 0.0990826 0.201124 0.19633
13 0.898876 0.100917 0.202247 0.198165
7 0.899438 0.100459 0.201124 0.199083
9 0.9 0.299541 0.2 0.197248
7 0.898876 0.499541 0.2 0.200917
9 0.899438 0.899083 0.201124 0.2
7 0.499438 0.100459 0.201124 0.199083
9 0.499438 0.5 0.201124 0.201835
7 0.499438 0.9 0.203371 0.2
7 0.298315 0.500459 0.198876 0.199083
7 0.499438 0.700459 0.201124 0.200917
9 0.0994382 0.3 0.198876 0.198165
9 0.499438 0.3 0.201124 0.2
7 0.0994382 0.500459 0.198876 0.197248
0 0.298315 0.7 0.198876 0.2
9 0.9 0.700459 0.2 0.199083
7 0.298876 0.300459 0.2 0.199083
9 0.298876 0.100459 0.202247 0.199083
7 0.298876 0.900459 0.202247 0.199083
9 0.7 0.7 0.2 0.2
7 0.0994382 0.100459 0.198876 0.197248
9 0.7 0.100459 0.202247 0.199083
7 0.0994382 0.899541 0.198876 0.199083
9 0.7 0.9 0.202247 0.2
9 0.699438 0.300459 0.198876 0.199083
0 0.0988764 0.700459 0.197753 0.199083
7 0.7 0.500917 0.2 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,28 @@
14 0.300562 0.100459 0.203371 0.197248
6 0.498315 0.0990826 0.201124 0.19633
13 0.898876 0.100917 0.202247 0.198165
7 0.899438 0.100459 0.201124 0.199083
9 0.9 0.299541 0.2 0.197248
7 0.898876 0.499541 0.2 0.200917
9 0.899438 0.899083 0.201124 0.2
7 0.499438 0.100459 0.201124 0.199083
9 0.499438 0.5 0.201124 0.201835
7 0.499438 0.9 0.203371 0.2
7 0.298315 0.500459 0.198876 0.199083
7 0.499438 0.700459 0.201124 0.200917
9 0.0994382 0.3 0.198876 0.198165
9 0.499438 0.3 0.201124 0.2
7 0.0994382 0.500459 0.198876 0.197248
0 0.298315 0.7 0.198876 0.2
9 0.9 0.700459 0.2 0.199083
7 0.298876 0.300459 0.2 0.199083
9 0.298876 0.100459 0.202247 0.199083
7 0.298876 0.900459 0.202247 0.199083
9 0.7 0.7 0.2 0.2
7 0.0994382 0.100459 0.198876 0.197248
9 0.7 0.100459 0.202247 0.199083
7 0.0994382 0.899541 0.198876 0.199083
9 0.7 0.9 0.202247 0.2
9 0.699438 0.300459 0.198876 0.199083
0 0.0988764 0.700459 0.197753 0.199083
7 0.7 0.500917 0.2 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,27 @@
9 0.0994382 0.3 0.198876 0.2
7 0.1 0.300459 0.2 0.199083
14 0.100562 0.9 0.201124 0.198165
7 0.9 0.700459 0.2 0.199083
9 0.898876 0.5 0.2 0.198165
9 0.0994382 0.900459 0.198876 0.199083
7 0.898876 0.3 0.2 0.198165
7 0.899438 0.900459 0.201124 0.199083
7 0.699438 0.101835 0.201124 0.2
9 0.499438 0.899541 0.201124 0.199083
9 0.899438 0.1 0.201124 0.198165
9 0.699438 0.900459 0.198876 0.199083
9 0.699438 0.5 0.198876 0.2
9 0.299438 0.500917 0.198876 0.2
0 0.298315 0.899083 0.198876 0.198165
9 0.498876 0.700459 0.2 0.199083
9 0.499438 0.5 0.201124 0.201835
7 0.699438 0.300917 0.198876 0.198165
9 0.298876 0.700459 0.2 0.199083
7 0.499438 0.100459 0.201124 0.199083
9 0.298315 0.100459 0.201124 0.199083
7 0.1 0.500459 0.2 0.199083
7 0.0994382 0.100459 0.198876 0.199083
0 0.0994382 0.700459 0.198876 0.199083
9 0.298876 0.299541 0.197753 0.199083
9 0.699438 0.700459 0.201124 0.199083
7 0.5 0.300459 0.2 0.199083

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,27 @@
9 0.0994382 0.3 0.198876 0.2
7 0.1 0.300459 0.2 0.199083
14 0.100562 0.9 0.201124 0.198165
7 0.9 0.700459 0.2 0.199083
9 0.898876 0.5 0.2 0.198165
9 0.0994382 0.900459 0.198876 0.199083
7 0.898876 0.3 0.2 0.198165
7 0.899438 0.900459 0.201124 0.199083
7 0.699438 0.101835 0.201124 0.2
9 0.499438 0.899541 0.201124 0.199083
9 0.899438 0.1 0.201124 0.198165
9 0.699438 0.900459 0.198876 0.199083
9 0.699438 0.5 0.198876 0.2
9 0.299438 0.500917 0.198876 0.2
0 0.298315 0.899083 0.198876 0.198165
9 0.498876 0.700459 0.2 0.199083
9 0.499438 0.5 0.201124 0.201835
7 0.699438 0.300917 0.198876 0.198165
9 0.298876 0.700459 0.2 0.199083
7 0.499438 0.100459 0.201124 0.199083
9 0.298315 0.100459 0.201124 0.199083
7 0.1 0.500459 0.2 0.199083
7 0.0994382 0.100459 0.198876 0.199083
0 0.0994382 0.700459 0.198876 0.199083
9 0.298876 0.299541 0.197753 0.199083
9 0.699438 0.700459 0.201124 0.199083
7 0.5 0.300459 0.2 0.199083

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -0,0 +1,26 @@
9 0.898876 0.1 0.2 0.198165
7 0.898315 0.9 0.201124 0.198165
14 0.499438 0.899541 0.201124 0.199083
9 0.298876 0.500459 0.197753 0.199083
7 0.899438 0.300459 0.201124 0.199083
9 0.499438 0.899541 0.201124 0.199083
9 0.0994382 0.898624 0.198876 0.197248
7 0.298315 0.100917 0.201124 0.198165
7 0.699438 0.900459 0.201124 0.199083
9 0.499438 0.700459 0.201124 0.199083
7 0.700562 0.500459 0.198876 0.199083
7 0.0994382 0.100917 0.198876 0.198165
7 0.498876 0.500917 0.202247 0.201835
9 0.499438 0.101376 0.201124 0.199083
9 0.5 0.300459 0.2 0.200917
9 0.898876 0.699083 0.2 0.198165
9 0.0994382 0.500459 0.198876 0.199083
9 0.298876 0.9 0.2 0.198165
7 0.699438 0.3 0.198876 0.2
9 0.899438 0.5 0.201124 0.2
7 0.0994382 0.3 0.198876 0.198165
9 0.298876 0.7 0.2 0.2
7 0.698876 0.100459 0.2 0.199083
9 0.699438 0.700459 0.201124 0.199083
9 0.298876 0.300459 0.2 0.200917
7 0.0994382 0.700917 0.198876 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -0,0 +1,26 @@
9 0.898876 0.1 0.2 0.198165
7 0.898315 0.9 0.201124 0.198165
14 0.499438 0.899541 0.201124 0.199083
9 0.298876 0.500459 0.197753 0.199083
7 0.899438 0.300459 0.201124 0.199083
9 0.499438 0.899541 0.201124 0.199083
9 0.0994382 0.898624 0.198876 0.197248
7 0.298315 0.100917 0.201124 0.198165
7 0.699438 0.900459 0.201124 0.199083
9 0.499438 0.700459 0.201124 0.199083
7 0.700562 0.500459 0.198876 0.199083
7 0.0994382 0.100917 0.198876 0.198165
7 0.498876 0.500917 0.202247 0.201835
9 0.499438 0.101376 0.201124 0.199083
9 0.5 0.300459 0.2 0.200917
9 0.898876 0.699083 0.2 0.198165
9 0.0994382 0.500459 0.198876 0.199083
9 0.298876 0.9 0.2 0.198165
7 0.699438 0.3 0.198876 0.2
9 0.899438 0.5 0.201124 0.2
7 0.0994382 0.3 0.198876 0.198165
9 0.298876 0.7 0.2 0.2
7 0.698876 0.100459 0.2 0.199083
9 0.699438 0.700459 0.201124 0.199083
9 0.298876 0.300459 0.2 0.200917
7 0.0994382 0.700917 0.198876 0.2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,25 @@
9 0.898876 0.100459 0.202247 0.197248
9 0.898876 0.9 0.2 0.198165
7 0.298876 0.9 0.2 0.2
7 0.698876 0.899083 0.2 0.198165
9 0.499438 0.300459 0.201124 0.200917
9 0.499438 0.899083 0.201124 0.19633
9 0.499438 0.100917 0.201124 0.198165
7 0.698876 0.700459 0.2 0.199083
9 0.499438 0.5 0.201124 0.2
9 0.899438 0.700459 0.201124 0.200917
7 0.699438 0.301376 0.198876 0.200917
9 0.1 0.899541 0.2 0.199083
7 0.499438 0.700459 0.201124 0.200917
9 0.699438 0.100459 0.201124 0.199083
14 0.0994382 0.499541 0.198876 0.197248
0 0.297753 0.3 0.197753 0.2
9 0.899438 0.500459 0.198876 0.199083
7 0.9 0.300459 0.2 0.199083
9 0.1 0.700459 0.2 0.199083
9 0.0994382 0.100917 0.198876 0.19633
9 0.298876 0.499541 0.2 0.199083
9 0.298876 0.700459 0.2 0.200917
9 0.7 0.500459 0.197753 0.199083
7 0.0988764 0.300917 0.197753 0.2
9 0.299438 0.1 0.201124 0.198165

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Some files were not shown because too many files have changed in this diff Show more