-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathchoi_convertor.py
63 lines (43 loc) · 1.89 KB
/
choi_convertor.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
56
57
58
59
60
61
62
import os
from pathlib2 import Path
from argparse import ArgumentParser
from shutil import move
def removeEmptyFolders(path, removeRoot=True):
if not os.path.isdir(path):
return
# remove empty subfolders
files = os.listdir(path)
for f in files:
fullpath = os.path.join(path, f)
if os.path.isdir(fullpath):
removeEmptyFolders(fullpath)
# if folder empty, delete it
files = os.listdir(path)
if len(files) == 0 and removeRoot:
#print "Removing empty folder:", path
os.rmdir(path)
def convert_choi_to_bySegLength(path):
folders = [o for o in os.listdir(path) if os.path.isdir(os.path.join(path, o))]
for folder in folders:
full_folder_path = os.path.join(path, folder)
seg_folders = [o for o in os.listdir(full_folder_path ) if os.path.isdir(os.path.join(full_folder_path , o))]
for seg_folder in seg_folders:
full_seg_folder_path = os.path.join(full_folder_path ,seg_folder )
convertedPathList = full_seg_folder_path.split(os.sep)
convertedPath = os.path.sep.join(convertedPathList[:-2] + [convertedPathList[-1]] + [convertedPathList[-2]])
if not os.path.exists(convertedPath):
os.makedirs(convertedPath)
all_objects = Path(full_seg_folder_path).glob('**/*')
files = (str(p) for p in all_objects if p.is_file())
for file in files:
target = os.path.join(convertedPath ,os.path.basename(file) )
move(file,target)
print "Removing empty folder: ", full_seg_folder_path
removeEmptyFolders(full_seg_folder_path)
def main (args):
convert_choi_to_bySegLength(args.input)
print ('done')
if __name__ == '__main__':
parser = ArgumentParser()
parser.add_argument('--input', help='Path to choi dataset', required=True)
main(parser.parse_args())