我使用PIL來調整圖像大小,我的情況是放大原始圖像。PIL(Python圖像庫)中的ANTIALIAS與BICUBIC?
我對`resample = ANTIALIAS'使用的算法感到困惑。
根據以下文檔,ANTIALIAS
在縮小比例時似乎是最好的。我不知道在這種情況下,可以BICUBIC
贏了嗎?(我的一些測試情況表明雙三次是更好的選擇)
An optional resampling filter.
This can be one of NEAREST (use nearest neighbour),
BILINEAR (linear interpolation in a 2x2 environment),
BICUBIC (cubic spline interpolation in a 4x4 environment),
or ANTIALIAS (a high-quality downsampling filter).
If omitted, or if the image has mode 「1」 or 「P」, it is set NEAREST.
我也困惑的文檔中的linear interpolation in a 2x2 environment
和cubic spline interpolation in a 4x4 environment
。這是什麼意思?
謝謝。
哇。我一直都知道PIL有點搞砸了,但直到看代碼才知道有多少。我會盡量在以後進行全面調查。 –