You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
I found some shallow bugs in ResizeBicubic and ResizeBilinear AForge.NET 2.5.5 filters (maybe exist on the other filters too), where ResizeNearestNeighbor filter can be support almost pixel formats such as:
PixelFormat.Format8bppIndexed;
PixelFormat.Format24bppRgb;
PixelFormat.Format32bppRgb;
PixelFormat.Format32bppArgb;
PixelFormat.Format16bppGrayScale;
PixelFormat.Format48bppRgb;
PixelFormat.Format64bppArgb;
but I think that miss some supported pixel formats like PixelFormat.Format16bppGrayScale to ResizeBilinear filter, cause do test resizing an 16bpp image by pass and succes it.