FilterButterworthHighPass Method

CVB.Net Documentation
Apply a ButterWorth high pass filter to the image. Underflow and overflow gray values are truncated to 0 and 255 respectively.

Namespace:  Stemmer.Cvb.Minos
Assembly:  Stemmer.Cvb.Minos (in Stemmer.Cvb.Minos.dll) Version: 14.0.0.0
Syntax

public static Image ButterworthHighPass(
	Image image,
	double gain,
	int offset,
	double cutOff,
	FilterFilterOrder order
)

Parameters

image
Type: Stemmer.CvbImage
image to be filtered
gain
Type: SystemDouble
gain to be applied to the frequency response
offset
Type: SystemInt32
offset to be applied to the frequency response
cutOff
Type: SystemDouble
cut off parameter of the ButterWorth algorithm
order
Type: Stemmer.Cvb.MinosFilterFilterOrder
order of the ButterWorth filter to be used

Return Value

Type: Image
filtered image
Exceptions

ExceptionCondition
ArgumentNullExceptionIf the image parameter is null
ObjectDisposedExceptionIf the image has already been disposed of
CvbExceptionwhen trying to call the filter function on an image with a pixel format other than 8 bits per pixel unsigned
See Also

Reference