|
Resize and Rotate filters
AForge.NET framework provides set of filters to perform image resize and
its rotation.
Below is the list of implemented resize and rotate filters and the result of
their application to the below source image.
Source image
Resize Nearest Neighbor
Image resizing filter using nearest neighbor algorithm, which does not assume any interpolation.

Resize Bilinear
Image resizing filter using bilinear interpolation algorithm.

Resize Bicubic
Image resizing filter using bicubic interpolation algorithm.

Rotate Nearest Neighbor
Image rotation filter using nearest neighbor algorithm, which does not assume any interpolation.

Rotate Bilinear
Image rotation filter using bilinear interpolation algorithm.

Rotate Bicubic
Image rotation filter using bicubic interpolation algorithm.

|