Click or drag to resize
Accord.NET (logo)

IInPlacePartialFilter Interface

In-place partial filter interface.

Namespace:  Accord.Imaging.Filters
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public interface IInPlacePartialFilter
Request Example View Source
Methods
  NameDescription
Public methodApplyInPlace(Bitmap, Rectangle)
Apply filter to an image or its part.
Public methodApplyInPlace(BitmapData, Rectangle)
Apply filter to an image or its part.
Public methodApplyInPlace(UnmanagedImage, Rectangle)
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 dimension and pixel format, can be applied directly to the source image.

The interface also supports partial image filtering, allowing to specify image rectangle, which should be filtered.

See Also