Click or drag to resize
Accord.NET (logo)

IFilter Interface

Image processing filter interface.

Namespace:  Accord.Imaging.Filters
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public interface IFilter
Request Example View Source
Methods
  NameDescription
Public methodApply(Bitmap)
Apply filter to an image.
Public methodApply(BitmapData)
Apply filter to an image.
Public methodApply(UnmanagedImage)
Apply filter to an image.
Public methodApply(UnmanagedImage, UnmanagedImage)
Apply filter to an image.
Top
Remarks
The interface defines the set of methods, which should be provided by all image processing filters. Methods of this interface keep the source image unchanged and returt the result of image processing filter as new image.
See Also