-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.py
executable file
·210 lines (162 loc) · 7.16 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import click
from src.helper.logger import Logger
from src.pipeline_manager import PipelineManager
@click.group()
def main():
pass
@main.command()
def train_d():
"""
Used to train the detection part of the TD&R closely based on Pixel Link
The detection is done using instance segmentation, model UNET-RESNET
The data set used is SynthText and our Custom Dataset ToDo (which we will be releasing soon)
The data sets contain the bounding box of every "text word" - ToDo (Word is vague to special characters)
"""
pipeline_manager.train_d()
@main.command()
def train_r():
"""
Used to train the recognition part of the TD&R closely based on Pixel Link
The recognition is done using CRNN, model - Custom Convolution + Bi-LSTM
"""
pipeline_manager.train_r()
@main.command()
def test_d():
"""
Testing Pre-trained Detection model on a folder structure as mentioned in config.yaml
Can Run on images of varying size and extension
"""
pipeline_manager.test_d()
@main.command()
def test_r():
"""
Testing Pre-trained Recognition model on a folder structure as mentioned in config.yaml
Can Run on images which have closely cropped words
"""
pipeline_manager.test_r()
# Implement this function
# @main.command()
# def test_rd():
# """
# Testing Pre-trained Recognition and Detection Model on a folder structure as mentioned in config.yaml
# Can Run on images of varying size and extension
# """
#
# pipeline_manager.test_rd()
@main.command()
@click.option('-p', '--ipath', help='Image Path', required=True)
@click.option('-o', '--opath', help='Save Path', required=True)
def test_one_d(ipath, opath):
"""
Testing One image for detection, provided the input and output path
:input:
:param ipath: Path to the Image on which detection model is to be run
:param opath: Folder Path where the output is stored which contains
Original Image with contour drawn on it
Blank Image with contours filled with various colors drawn on it
8 Images which contain Links in all directions
1 Image showing pixel where semantic segmentation was positive and Link was negative
Image should Target (ToDo elaborate)
Image showing continuous semantic segmentation values
"""
pipeline_manager.test_one_d(ipath, opath)
@main.command()
@click.option('-i', '--ipath', help='Input Path', required=True)
@click.option('-o', '--opath', help='Output Path', required=True)
def test_one_r(ipath, opath):
"""
Testing One image for recognition(Only Cropped Images)
:input:
:param ipath: Path to the Word Cropped Image on which Recognition model is to be run
:param opath: Output Path to the Word Cropped Image whose path name is what was predicted
"""
pipeline_manager.test_one_r(ipath, opath)
@main.command()
@click.option('-p', '--ipath', help='Image Path', required=True)
@click.option('-o', '--opath', help='Save Path', required=True)
def test_one_rd(ipath, opath):
"""
Testing One Image(No constraints) for recognition and detection
:input:
:param ipath: Path to the Image on which Recognition and Detection model is to be run
:param opath: Folder Path where the output is stored which contains
Original Image with contour drawn on it
Blank Image with contours filled with various colors drawn on it
8 Images which contain Links in all directions
1 Image showing pixel where semantic segmentation was positive and Link was negative
Image should Target (ToDo elaborate)
Image showing continuous semantic segmentation values
output.pkl which contains all the contours and text in format mentioned in ReadMe.md
"""
pipeline_manager.test_one_rd(ipath, opath)
@main.command()
@click.option('-p', '--ipath', help='Image Path', required=True)
@click.option('-o', '--opath', help='Save Path', required=True)
def test_entire_folder_d(ipath, opath):
"""
Testing Entire Folder Recursively on Images(No constraints) for recognition and detection
:input:
:param ipath: Path to the Image on which Detection model is to be run
:param opath: Folder Path where the output is stored exactly in structure the ipath folder was
and output similar to test_one_d
"""
pipeline_manager.test_entire_folder_d(ipath, opath)
@main.command()
@click.option('-p', '--ipath', help='Image Path', required=True)
@click.option('-o', '--opath', help='Save Path', required=True)
def test_entire_folder_r(ipath, opath):
# ToDo @mithilesh comment the function
pipeline_manager.test_entire_folder_r(ipath, opath)
@main.command()
@click.option('-p', '--ipath', help='Image Path', required=True)
@click.option('-o', '--opath', help='Save Path', required=True)
def test_entire_folder_rd(ipath, opath):
"""
Testing Entire Folder for Images(No constraints) for recognition and detection
:input:
:param ipath: Path to the Folder to search for the Images on which Recognition and Detection model is to be run
:param opath: Folder Path where the output is stored which contains
Original Image with contour drawn on it
Blank Image with contours filled with various colors drawn on it
8 Images which contain Links in all directions
1 Image showing pixel where semantic segmentation was positive and Link was negative
Image should Target (ToDo elaborate)
Image showing continuous semantic segmentation values
output.pkl which contains all the contours and text in format mentioned in ReadMe.md
Folder Path + "_label" where the output is stored which contains
output.pkl which contains all the contours and text in format mentioned in ReadMe.md
"""
pipeline_manager.test_entire_folder_rd(ipath, opath)
@main.command()
@click.option('-p', '--predicted', help='Predicted', required=True)
@click.option('-t', '--target', help='Target', required=True)
@click.option('-th', '--threshold', help='Threshold', required=True)
@click.option('-text', '--text', help='Text', required=False)
def fscore(predicted, target, threshold, text):
"""
A Function to calculate the Fscore of the entire folder with respect to a folder containing original labels
:input:
:param predicted: Folder path to where the predicted labels are
:param target: Folder path to where the target labels are
:param threshold: Threshold to set on IOU for classifying as positive or negative
:param text: If text is available this flag can be used to classify a bbox as positive if R&D both are correct
"""
from src.helper.utils import get_f_score
if text == 'True':
get_f_score(predicted, target, float(threshold), True)
else:
get_f_score(predicted, target, float(threshold), False)
@main.command()
def prepare_metadata():
"""
Pre-processing all the data sets mentioned in dataset.yaml in the form mentioned in Readme.md
"""
pipeline_manager.prepare_metadata()
if __name__ == "__main__":
"""
Common Initialisation to every task
"""
pipeline_manager = PipelineManager()
log = Logger()
log.first()
main()