-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateCSV.py
executable file
·73 lines (61 loc) · 2.58 KB
/
generateCSV.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
63
64
65
66
67
68
69
70
71
72
73
"""
generateCSV.py
Zhiang Chen, Jan 2019
Copyright (c) 2018 Distributed Robotic Exploration and Mapping Systems Laboratory, ASU
generate CSV files from npy files for RetinaNet repo: https://github.com/DREAMS-lab/keras-retinanet
"""
import numpy as np
import csv
import os
class generatorCSV(object):
def __init__(self, npy_path, image_path, objects):
self.npy_path = npy_path
self.image_path = image_path
self.objects = objects
self.npy_files = [f for f in os.listdir(npy_path) if f.endswith(".npy")]
self.__generate_csv__()
def __generate_csv__(self):
self.annotations = []
for f in self.npy_files:
image_name = f.split('.npy')[0] + '.png'
masks = np.load(self.npy_path + f)
dim = masks.shape
if len(dim) == 2:
annotation = [self.image_path + image_name, '0', '0', '0', '0', 'bg']
self.annotations.append(annotation)
else:
for i in range(dim[-1]):
mask = masks[:,:,i]
bbox = self.__bbox__(mask)
if bbox is not None:
annotation = [self.image_path + image_name] + bbox
annotation.append(self.objects[0])
self.annotations.append(annotation)
def __bbox__(self, mask):
mask = np.transpose(mask)
mask = np.where(mask != 0)
if mask[0].size == 0:
return None
else:
if np.min(mask[0]) == np.max(mask[0]):
return None
if np.min(mask[1]) == np.max(mask[1]):
return None
return [str(np.min(mask[0])), str(np.min(mask[1])), str(np.max(mask[0])), str(np.max(mask[1]))]
def saveAnnotationCSV(self):
with open('annotations.csv', mode='w') as csv_file:
annotations_writer = csv.writer(csv_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
for annotation in self.annotations:
annotations_writer.writerow(annotation)
def saveClassCSV(self):
with open('classes.csv', mode='w') as csv_file:
classes_writer = csv.writer(csv_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
for i, clas in enumerate(self.objects):
classes_writer.writerow([clas,str(i)])
if __name__ == "__main__":
npy_path = "./datasets/rocks_aug/val/"
image_path = "../datasets/rocks_aug/val/"
objects = ["rock"]
csv_g = generatorCSV(npy_path, image_path, objects)
csv_g.saveAnnotationCSV()
csv_g.saveClassCSV()