Mirroring filter.

The filter mirrors image around X and/or Y axis (horizontal and vertical mirroring).

The filter accepts 8 bpp grayscale images and 24 bpp color images for processing.

Sample usage:

// create filter Mirror filter = new Mirror( false, true ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

Inheritance: BaseInPlacePartialFilter
Example #1
0
        private void SetFilter()
        {
            ImageType = ImageTypes.Rgb24bpp;

            Af.Mirror newFilter = new Af.Mirror(aboutX, aboutY);
            imageFilter = newFilter;
        }