Click or drag to resize
Accord.NET (logo)

FiltersSequenceApply Method (BitmapData)

Apply filter to an image.

Namespace:  Accord.Imaging.Filters
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public Bitmap Apply(
	BitmapData imageData
)
Request Example View Source

Parameters

imageData
Type: System.Drawing.ImagingBitmapData
Source image to apply filter to.

Return Value

Type: Bitmap
Returns filter's result obtained by applying the filter to the source image.

Implements

IFilterApply(BitmapData)
Exceptions
ExceptionCondition
ApplicationExceptionNo filters were added into the filters' sequence.
Remarks
The filter accepts bitmap data as input and returns the result of image processing filter as new image. The source image data are kept unchanged.
See Also