I am new to object detection, I have Tamil Language Characters and, I successfully done the classification part using CNN.
For object detection, I am following this example - https://towardsdatascience.com/getting-started-with-bounding-box-regression-in-tensorflow-743e22d0ccb3
We have to create the bounding box and create the annotation file which has the number of objects present in the image and the (Xmin, Ymin), (Xmax, Ymax) coordinates of the objects.
In my project, I have data set where every image has single character only
How to create the bounding box where all the characters are already in Region of Interest...
Thanks