- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
cross-posted from: https://feddit.uk/post/3829500
And in the end you turned it back to an image.
because tiles like this are not supported on lemmy
What languages did you come to rust from?
Python… you can guess by my shitty code
Very cool! Did you consider any other interpolation algorithms?
What is interpolation?
Its the mathematical term for estimation and constructing new data from existing data. In the context of what you are doing, it’s resizing images.
You are doing something called linear interpolation. This works great for shrinking an image. However, have you considered what happens when your ASCII resolution is greater than your image resolution? This is where bilinear and bicubic interpolation come in.
These algorithms are cool but are also massive overkill for your average use case. They only make a different in a very niche use case (when your ASCII resolution is greater than your image, such as pixelart)
Great code! Very cool
thank you so much! have a good day!