Click or drag to resize

RidgeDetectionFilter Constructor

http://www.emgu.com
Create a Ridge detection filter.

Namespace:  Emgu.CV.XImgproc
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public RidgeDetectionFilter(
	DepthType dDepthType = DepthType.Cv32F,
	int dChannels = 1,
	int dx = 1,
	int dy = 1,
	int ksize = 3,
	DepthType outDepthType = DepthType.Cv8U,
	int outChannels = 1,
	double scale = 1,
	double delta = 0,
	BorderType borderType = BorderType.Reflect101
)

Parameters

dDepthType (Optional)
Type: Emgu.CV.CvEnumDepthType
Specifies output image depth.
dChannels (Optional)
Type: SystemInt32
Specifies output image channel.
dx (Optional)
Type: SystemInt32
Order of derivative x
dy (Optional)
Type: SystemInt32
Order of derivative y
ksize (Optional)
Type: SystemInt32
Sobel kernel size
outDepthType (Optional)
Type: Emgu.CV.CvEnumDepthType
Converted format for output
outChannels (Optional)
Type: SystemInt32
Converted format for output
scale (Optional)
Type: SystemDouble
Optional scale value for derivative values
delta (Optional)
Type: SystemDouble
Optional bias added to output
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method
See Also