Loading...
Logo
Processing Forum
hello everyone,

i was wondering if there was a away to control the inter-/extrapolation method used with the PImage.resize() function. it would appear there isn't, but that would be quite a pity.

thanks, everyone.


Replies(5)

You have the answer in the  PImage.java source code (see  blit_resize). If you use smooth(), it uses bilinear filtering. Otherwise, it uses nearest neighbour scaling, fast but primitive.
So, you have a kind of choice...
You can also implement yourself the algorithm of your choice.
the source code would imply that blit_resize will be doing bilinear filtering by default, because of the
Copy code
  1. boolean smooth = true;

Yeah, I saw that too, so the choice isn't one, actually, they went (since 2 years, r4720) to the better quality, probably thinking the gain of speed isn't worth the loss of quality, which might trip beginners.
i'm really hesitant to screw around with the sources. what i'm working willbe used at a location where i have no control over the setup. are there alternative image processing libs that would give me control over the interpolation methods?
I agree with dekonstruktiv.  I need to be able to not smooth but don't really want to (or know how) to edit the sources.  Any advice?

-aimless