Click or drag to resize
Accord.NET (logo)

BaseInPlacePartialFilterApply Method (Bitmap)

Apply filter to an image.

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

Parameters

image
Type: System.DrawingBitmap
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(Bitmap)
Exceptions
ExceptionCondition
UnsupportedImageFormatExceptionUnsupported pixel format of the source image.
Remarks
The method keeps the source image unchanged and returns the result of image processing filter as new image.
See Also