Moonbin Yim

Results 11 comments of Moonbin Yim

Hi, thank you for your interest. We did experiments based on this code. (https://github.com/clovaai/deep-text-recognition-benchmark) In training phase, we added `--imgW 256 --sensitive` options. In test phase, we added `--imgW 256...

No, synthtiger can't generate fixed size images. Synthtiger generates images fitted to text. To generate fixed size images, additional code implementation is required. Thanks.

If you change this part, synthtiger will generate fixed background image. https://github.com/clovaai/synthtiger/blob/master/examples/synthtiger/config_horizontal.yaml#L36-L43 #### AS-IS ```yml texture: prob: 0.5 args: paths: [resources/image] weights: [1] alpha: [0, 1] grayscale: 0 crop: 1...

Hi, It generates images by rendering several characters, but can't get character bboxes because transformation is applied after merging characters. It needs to change rendering process to get character bboxes....

Hi, Sorry for the late reply. Unfortunately, I can't maintain this project because of personal reasons. 😢 You can modify https://github.com/clovaai/synthtiger/blob/master/examples/synthtiger/template.py#L177-L190 this code to get character/word bbox. For character bboxes,...

Now, we can get character bboxes and text mask. Character bbox data is in `coord.txt` file and mask data is in `masks` directory. The format of coord.txt is `\t\t\t...`. (``=`,,,`)...

Hi, It seems that the number of corpus weights is different from the number of corpus. Please check config file. https://github.com/clovaai/synthtiger/blob/master/examples/synthtiger/config_horizontal.yaml#L16 This example has two corpus (length augmentable corpus, char...

Please change this line. from ``` corpus: weights: [1] ``` to ``` corpus: weights: [1, 0] ```

You may ignore this message `RuntimeError: Text is not visible`. Please see https://github.com/clovaai/synthtiger/issues/35.

Hi, This engine tries to generate an image until the text is visible, and generates a specified number of images. This error message means that the image is not saved...