Open mazatov opened 2 years ago
Thanks @mazatov. For your question, "Because of the lack of CRAFT (Baek et al., 2019b) training code, we supervised the training by providing the annotations for each digit in jersey numbers". As you know CRAFT (Character Region Awareness for Text Detection) is character based text detection. That means that the annotations are not only bounding box around each a word, but also bounding box around each character in a word. The training of CRAFT is done in a weekly supervised by getting bbox around each char using bbox around a word and that part of implementation is not provided. So, the only way to use/finetune this method is to implement this part or as i did determine bbox around each digit.
Hello @ahmed-nady , thanks for the very interesting paper and the presentation. I had a question regarding your section 3.1.1. You mention that you take pre-trained CRAFT and retrain it on your dataset. However, in the same paragraph you mention that CRAFT doesn't have training code. So I was wondering, how do you fine-tune CRAFT for jersey numbers?