Filter Class

CVB.Net Documentation
Collection of Filter methods supported by the Common Vision Blox Foundation Package.
Inheritance Hierarchy

SystemObject
  Stemmer.Cvb.FoundationFilter

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

public static class Filter

The Filter type exposes the following members.

Methods

  NameDescription
Public methodStatic memberBoxMax(Image, Size2D)
This function sets each pixel in the output image to the maximum value all the input image pixels in the rectangular neighborhood defined by the maskSize parameter
Public methodStatic memberBoxMax(Image, Size2D, Point2D)
This function sets each pixel in the output image to the maximum value all the input image pixels in the rectangular neighborhood defined by the maskSize and the maskOffset parameters.
Public methodStatic memberBoxMean(Image, Size2D)
This function sets each pixel in the output image to the average of all the input image pixels in the rectangular neighborhood defined by the maskSize parameter.
Public methodStatic memberBoxMean(Image, Size2D, Point2D)
This function sets each pixel in the output image to the average of all the input image pixels in the rectangular neighborhood defined by the maskSize and the maskOffset parameters. This has the effect of smoothing or blurring the input image.
Public methodStatic memberBoxMedian(Image, Size2D)
This function sets each pixel in the output image to the median value all the input image pixels in the rectangular neighborhood defined by the maskSize parameters.
Public methodStatic memberBoxMedian(Image, Size2D, Point2D)
This function sets each pixel in the output image to the median value all the input image pixels in the rectangular neighborhood defined by the maskSize and the maskOffset parameters.
Public methodStatic memberBoxMin(Image, Size2D)
This function sets each pixel in the output image to the minimum value all the input image pixels in the rectangular neighborhood defined by the maskSize parameter.
Public methodStatic memberBoxMin(Image, Size2D, Point2D)
This function sets each pixel in the output image to the minimum value all the input image pixels in the rectangular neighborhood defined by the maskSize and the maskOffset parameters.
Public methodStatic memberCanny
Edge filter using the Canny algorithm.
Public methodStatic memberColorMedian
Apply a color-correct box median filter to an RGB image.
Public methodStatic memberGauss
This function applies a low high pass Gaussian filter to an image.
Public methodStatic memberHighPass
This function applies a square high pass filter to an image.
Public methodStatic memberLaplace
This function applies a square high pass Laplace filter to an image.
Public methodStatic memberLowPass
This function applies a square low pass filter to an image.
Public methodStatic memberPrewitt
Applies a Prewitt edge filter to the input image.
Public methodStatic memberRoberts
Apply a Roberts edge detector to the input image.
Public methodStatic memberScharr
Applies a Scharr edge filter to the input image.
Public methodStatic memberSharpen
This function applies a Kernel3x3 sharpen filter to an image.
Public methodStatic memberSobel
Applies a Sobel edge filter to the input image.
Public methodStatic memberSobel2nd
Applies a 2nd order Sobel edge filter to the input image.
Public methodStatic memberSobel2ndCross
Applies a 2nd order Sobel cross edge filter to the input image.
Public methodStatic memberUser(Image, Double)
Apply a user-defined linear convolution filter to an image.
Public methodStatic memberUser(Image, Double, Point2D)
Apply a user-defined linear convolution filter to an image.
Public methodStatic memberWiener(Image, Size2D)
This function performs adaptive filtering of an image degraded by constant power additive noise.
Public methodStatic memberWiener(Image, Size2D, Point2D)
This function performs adaptive filtering of an image degraded by constant power additive noise.
Public methodStatic memberWiener(Image, Size2D, Double)
This function performs adaptive filtering of an image degraded by constant power additive noise.
Public methodStatic memberWiener(Image, Size2D, Point2D, Double)
This function performs adaptive filtering of an image degraded by constant power additive noise.
Top
See Also

Reference