Search found 2 matches

by kymillev
2019-08-13T05:38:45-07:00
Forum: Users
Topic: Detect bounding box of characters written by convert
Replies: 3
Views: 7754

Re: Detect bounding box of characters written by convert

Thanks for the advice, I have solved the problem by generating each letter iteratively and masking the previously generated letters to get the bounding box of the new one with OpenCV. This of course causes a lot of overlap for each bounding box, but that should be fine. Example output: https://i.img...
by kymillev
2019-08-08T03:01:39-07:00
Forum: Users
Topic: Detect bounding box of characters written by convert
Replies: 3
Views: 7754

Detect bounding box of characters written by convert

I came across a paper ( https://arxiv.org/pdf/1608.04224.pdf ) which uses synthetic handwriting data generated with the ImageMagick convert command, using a lot of different handwriting fonts like the images below. https://i.stack.imgur.com/rEvtK.png I am new to using the ImageMagick tool but I was ...