zurutech / pillow-resize

Porting of Pillow resize method in C++ and OpenCV.
Apache License 2.0
123 stars 16 forks source link

how to Anti-alias #8

Closed TanFluent closed 2 years ago

TanFluent commented 2 years ago

hello, i follow your code and trying to find how to "anti-alias". But not a clue. Could your plz, common it on code or apply some ref. on your "anti-alias" methods. Many thx!!! @marcov868

marcov868 commented 2 years ago

The library is basically just a porting in c++ of the method resize from the python library Pillow. So, for each detail, you can refer to their documentation.

TL;DR: If you used the method PillowResize::resize(), you're already using an anti-aliasing filter.