You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
First off, thank you so much for providing such a helpful dataset, it truly is a goldmine!
I am having trouble reconstructing the 28x28 images from the binary files provided in this dataset.
What are the actual steps in order to reconstruct the 28x28 images in the provided quality from the binary files?
My issue is quite similar to #15 but I managed to get intermediary results.
Here is my current progress:
Using the examples/binary_file_parser.py I am able to reconstruct the image in any given size by handling the stroke paths.
I am also able to use some blurring to smooth the image.
However the quality of the reconstructed image is nowhere near the 28x28 images dataset provided in this repository.
This is an original image from the 28x28 .npy dataset:
This is my reconstruction using no blurring technique:
And this is my reconstruction using a (2, 2) blur kernel in OpenCV:
Any idea on how to reconstruct these images in the quality that is available when downloading the 28x28 .npy files?
Is there some more advanced smoothing and filtering techniques that I have been missing?