Click or drag to resize
Accord.NET (logo)

IInPlaceFilter Interface

In-place filter interface.

Namespace:  Accord.Imaging.Filters
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public interface IInPlaceFilter
Request Example View Source
Methods
  NameDescription
Public methodApplyInPlace(Bitmap)
Apply filter to an image.
Public methodApplyInPlace(BitmapData)
Apply filter to an image.
Public methodApplyInPlace(UnmanagedImage)
Apply filter to an image in unmanaged memory.
Top
Remarks
The interface defines the set of methods, which should be implemented by filters, which are capable to do image processing directly on the source image. Not all image processing filters can be applied directly to the source image - only filters, which do not change image's dimension and pixel format, can be applied directly to the source image.
See Also