-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimg_set_builder.py
55 lines (41 loc) · 1.71 KB
/
img_set_builder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
import shutil
from random import randint
def buildTestAndVal(src, destTrain, destVal):
print("building training and testing img sets in " + destTrain + " and " + destVal)
if os.path.exists(destTrain):
print("deleting previously found train set")
shutil.rmtree(destTrain)
if os.path.exists(destVal):
print("deleting previously found val set")
shutil.rmtree(destVal)
for dirname, dirnames, filenames in os.walk(src):
for filename in filenames:
if filename.endswith(".jpg") or filename.endswith(".png"):
copyDir(os.path.abspath(dirname), (destTrain + dirname.split("/")[-1]).replace(" ", "_"))
moveDir(destTrain + dirname.split("/")[-1].replace(" ", "_"), (destVal + dirname.split("/")[-1]).replace(" ", "_"))
break
print("training and testing img sets succesfully build")
def copyDir(root_src_dir, root_dst_dir):
for src_dir, dirs, files in os.walk(root_src_dir):
dst_dir = src_dir.replace(root_src_dir, root_dst_dir, 1)
if not os.path.exists(dst_dir):
os.makedirs(dst_dir)
for file_ in files:
src_file = os.path.join(src_dir, file_)
dst_file = os.path.join(dst_dir, file_)
if os.path.exists(dst_file):
os.remove(dst_file)
shutil.copy(src_file, dst_dir)
def moveDir(root_src_dir, root_dst_dir):
for src_dir, dirs, files in os.walk(root_src_dir):
dst_dir = src_dir.replace(root_src_dir, root_dst_dir, 1)
if not os.path.exists(dst_dir):
os.makedirs(dst_dir)
for file_ in files:
if randint(1, 5) == 1: # 20%
src_file = os.path.join(src_dir, file_)
dst_file = os.path.join(dst_dir, file_)
if os.path.exists(dst_file):
os.remove(dst_file)
shutil.move(src_file, dst_dir)