Kok Wei

Results 89 comments of Kok Wei

With the latest update, now you can set `random_seed` in augmentation pipeline to produce a consistent output. You may uninstall Augraphy and reinstall it by using `!pip install git+https://github.com/sparkfish/augraphy`.

I added the padding here : https://github.com/sparkfish/pdf417decoder/pull/7 Looks like the left most of the image need to have single white line , otherwise the start-stop signature won't be detected and...

> This should be closed then right? It should be resolved, did you facing any problem with it?

Yes, this pull request should be merged now: https://github.com/sparkfish/pdf417decoder/pull/7

Hi, Thanks for your suggestion. We will consider that in the future update. Alternatively, you may try to create a new pipeline or use some other predefined pipelines. There are...

> Thanks for the answer! I didn't know about the predefined pipelines, not sure whether I missed them in the documentation. Are those just "random" pipelines or is there a...

Hi, [`ImageOverlay`]( https://augraphy.readthedocs.io/en/latest/doc/source/helper_and_utilities/internal_imageoverlay.html) is an internal function and actually it's obsolete now. The similar functionality is replaced by [`OverlayBuilder`]( https://augraphy.readthedocs.io/en/latest/doc/source/helper_and_utilities/internal_overlaybuilder.html) now.

Thanks for pointing this out. In `augmentationpipeline.py`, line 752, for `OneOf`, we can fix it with: if isinstance(augmentation, Augmentation): # "OneOf" if augmentation.__class__.__name__ == "OneOf": result, augmentations = result if...

Could you show us an example of input image and output image? Right now there's an overlay process to print ink layer to paper layer even though there isn't any...

> Ok. I can propose having the overlay types in a Enum-like structure - as class variables in a separate OverlayType class such that it is easier for IDEs to...