Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ResampleFilter ¶
type ResampleFilter int
const ( // NearestNeighbor is a nearest-neighbor filter (no anti-aliasing). NearestNeighbor ResampleFilter = iota // Box filter (averaging pixels). Box // Linear filter. Linear // Hermite cubic spline filter (BC-spline; B=0; C=0). Hermite // MitchellNetravali is Mitchell-Netravali cubic filter (BC-spline; B=1/3; C=1/3). MitchellNetravali // CatmullRom is a Catmull-Rom - sharp cubic filter (BC-spline; B=0; C=0.5). CatmullRom // BSpline is a smooth cubic filter (BC-spline; B=1; C=0). BSpline // Gaussian is a Gaussian blurring filter. Gaussian // Bartlett is a Bartlett-windowed sinc filter (3 lobes). Bartlett // Lanczos filter (3 lobes). Lanczos // Hann is a Hann-windowed sinc filter (3 lobes). Hann // Hamming is a Hamming-windowed sinc filter (3 lobes). Hamming // Blackman is a Blackman-windowed sinc filter (3 lobes). Blackman // Welch is a Welch-windowed sinc filter (parabolic window, 3 lobes). Welch // Cosine is a Cosine-windowed sinc filter (3 lobes). Cosine )
Click to show internal directories.
Click to hide internal directories.