AForge.Imaging.Filters.BaseInPlacePartialFilter.ApplyInPlace C# (CSharp) Метод

ApplyInPlace() публичный Метод

Apply filter to an image.
The method applies the filter directly to the provided source image.
Unsupported pixel format of the source image.
public ApplyInPlace ( BitmapData imageData ) : void
imageData System.Drawing.Imaging.BitmapData Image data to apply filter to.
Результат void
        public void ApplyInPlace( BitmapData imageData )
        {
            // check pixel format of the source image
            CheckSourceFormat( imageData.PixelFormat );

            // apply the filter
            ProcessFilter( new UnmanagedImage( imageData ), new Rectangle( 0, 0, imageData.Width, imageData.Height ) );
        }

Same methods

BaseInPlacePartialFilter::ApplyInPlace ( Bitmap image ) : void
BaseInPlacePartialFilter::ApplyInPlace ( Bitmap image, Rectangle rect ) : void
BaseInPlacePartialFilter::ApplyInPlace ( BitmapData imageData, Rectangle rect ) : void
BaseInPlacePartialFilter::ApplyInPlace ( UnmanagedImage image ) : void
BaseInPlacePartialFilter::ApplyInPlace ( UnmanagedImage image, Rectangle rect ) : void