CRAFT-Reimplementation
CRAFT-Reimplementation copied to clipboard
Charachter bounding boxes ?
Hi @backtime92 @ThisIsIsaac
Thank you for your great work, I am trying to charachter level bounding boxes. Using your pretrained models, I am only able to get word level boxes, can you suggest how to get bounding box for each charachter ? thanks....
have you get bounding box for each charachter? i have same question
@raghavgurbaxani , @SunJJ1996
test.py need to be changed as follows:
- Default score need to be set lower for
--text_threshold. i.e,--text_threshold=0.1parser.add_argument('--text_threshold', default=0.7, type=float, help='text confidence threshold') - Set the lower default score for
--link_threshold. i.e,--link_threshold=999999parser.add_argument('--link_threshold', default=0.4, type=float, help='link confidence threshold')
I recommend to use images with single text for the sake of simplicity while testing. I hope this helps