ssd_detectors icon indicating copy to clipboard operation
ssd_detectors copied to clipboard

Understanding the flow

Open Lakshaysharma048 opened this issue 6 years ago • 5 comments

Hi mvoelk, I recently saw your code and unable to understand from where to start.

Unable to find main function.

Can you please help.

Lakshaysharma048 avatar Oct 01 '18 20:10 Lakshaysharma048

If you are familliar with Jupyter Notebook, the SSD related notebooks SSD_predict.ipynb, SSD_train.ipynb and SSD_evaluation.ipynb should be a good starting point. I will also update the code in the next few days...

mvoelk avatar Oct 01 '18 20:10 mvoelk

Hi Mvoelk,

Thank you. Is there anything that is missing in SSD text detection part?

Lakshaysharma048 avatar Oct 01 '18 21:10 Lakshaysharma048

SSD is an generic object detector. For the text detection part, see TB_*.ipynb, SL_*.ipynb and TBPP_*.ipynb. For more details, please read the README.md, the related papers and the thesis. The current code should run as it is.

mvoelk avatar Oct 02 '18 09:10 mvoelk

Hi Mvoelk,

I was able to understand the TextBox code but at the prediction time, it is giving the class label as "text". (Text and Background) is what we have set as class labels.

I want to pass the output to CRNN function which in turn will check it's lexicon to give the exact word name back to the textbox code. is there a way to connect both of them.

Lakshaysharma048 avatar Oct 12 '18 02:10 Lakshaysharma048

In SL_end2end_predict.ipynb, the text instances are cropped and passed to CRNN. The CRNN implementation is lexicon free.

mvoelk avatar Oct 12 '18 06:10 mvoelk