|
| 1 | + |
| 2 | + |
| 3 | +""" |
| 4 | +Course: Training YOLO v3 for Objects Detection with Custom Data |
| 5 | +
|
| 6 | +Section-3 |
| 7 | +Labelling new Dataset in YOLO format |
| 8 | +File: creating-train-and-test-txt-files.py |
| 9 | +""" |
| 10 | + |
| 11 | + |
| 12 | +# Creating files train.txt and test.txt |
| 13 | +# for training in Darknet framework |
| 14 | +# |
| 15 | +# Algorithm: |
| 16 | +# Setting up full paths --> List of paths --> |
| 17 | +# --> Extracting 15% of paths to save into test.txt file --> |
| 18 | +# --> Writing paths into train and test txt files |
| 19 | +# |
| 20 | +# Result: |
| 21 | +# Files train.txt and test.txt with full paths to images |
| 22 | + |
| 23 | + |
| 24 | +# Importing needed library |
| 25 | +import os |
| 26 | + |
| 27 | + |
| 28 | +""" |
| 29 | +Start of: |
| 30 | +Setting up full path to directory with labelled images |
| 31 | +""" |
| 32 | + |
| 33 | +# Full or absolute path to the folder with images |
| 34 | +# Find it with Py file getting-full-path.py |
| 35 | +# Pay attention! If you're using Windows, yours path might looks like: |
| 36 | +# r'C:\Users\my_name\Downloads\video-to-annotate' |
| 37 | +# or: |
| 38 | +# 'C:\\Users\\my_name\\Downloads\\video-to-annotate' |
| 39 | +full_path_to_images = '/home/my_name/Downloads/video-to-annotate' |
| 40 | + |
| 41 | +""" |
| 42 | +End of: |
| 43 | +Setting up full path to directory with labelled images |
| 44 | +""" |
| 45 | + |
| 46 | + |
| 47 | +""" |
| 48 | +Start of: |
| 49 | +Getting list of full paths to labelled images |
| 50 | +""" |
| 51 | + |
| 52 | +# Check point |
| 53 | +# Getting the current directory |
| 54 | +# print(os.getcwd()) |
| 55 | + |
| 56 | +# Changing the current directory |
| 57 | +# to one with images |
| 58 | +os.chdir(full_path_to_images) |
| 59 | + |
| 60 | +# Check point |
| 61 | +# Getting the current directory |
| 62 | +# print(os.getcwd()) |
| 63 | + |
| 64 | +# Defining list to write paths in |
| 65 | +p = [] |
| 66 | + |
| 67 | +# Using os.walk for going through all directories |
| 68 | +# and files in them from the current directory |
| 69 | +# Fullstop in os.walk('.') means the current directory |
| 70 | +for current_dir, dirs, files in os.walk('.'): |
| 71 | + # Going through all files |
| 72 | + for f in files: |
| 73 | + # Checking if filename ends with '.jpeg' |
| 74 | + if f.endswith('.jpeg'): |
| 75 | + # Preparing path to save into train.txt file |
| 76 | + # Pay attention! |
| 77 | + # If you're using Windows, it might need to change |
| 78 | + # this: + '/' + |
| 79 | + # to this: + '\' + |
| 80 | + # or to this: + '\\' + |
| 81 | + path_to_save_into_txt_files = full_path_to_images + '/' + f |
| 82 | + |
| 83 | + # Appending the line into the list |
| 84 | + # We use here '\n' to move to the next line |
| 85 | + # when writing lines into txt files |
| 86 | + p.append(path_to_save_into_txt_files + '\n') |
| 87 | + |
| 88 | + |
| 89 | +# Slicing first 15% of elements from the list |
| 90 | +# to write into the test.txt file |
| 91 | +p_test = p[:int(len(p) * 0.15)] |
| 92 | + |
| 93 | +# Deleting from initial list first 15% of elements |
| 94 | +p = p[int(len(p) * 0.15):] |
| 95 | + |
| 96 | +""" |
| 97 | +End of: |
| 98 | +Getting list of full paths to labelled images |
| 99 | +""" |
| 100 | + |
| 101 | + |
| 102 | +""" |
| 103 | +Start of: |
| 104 | +Creating train.txt and test.txt files |
| 105 | +""" |
| 106 | + |
| 107 | +# Creating file train.txt and writing 85% of lines in it |
| 108 | +with open('train.txt', 'w') as train_txt: |
| 109 | + # Going through all elements of the list |
| 110 | + for e in p: |
| 111 | + # Writing current path at the end of the file |
| 112 | + train_txt.write(e) |
| 113 | + |
| 114 | +# Creating file test.txt and writing 15% of lines in it |
| 115 | +with open('test.txt', 'w') as test_txt: |
| 116 | + # Going through all elements of the list |
| 117 | + for e in p_test: |
| 118 | + # Writing current path at the end of the file |
| 119 | + test_txt.write(e) |
| 120 | + |
| 121 | +""" |
| 122 | +End of: |
| 123 | +Creating train.txt and test.txt files |
| 124 | +""" |
0 commit comments