RidgeDetectionFilter Constructor |
http://www.emgu.com
Create a Ridge detection filter.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic RidgeDetectionFilter(
DepthType dDepthType = 5,
int dChannels = 1,
int dx = 1,
int dy = 1,
int ksize = 3,
DepthType outDepthType = 0,
int outChannels = 1,
double scale = 1,
double delta = 0,
BorderType borderType = 4
)
Public Sub New (
Optional dDepthType As DepthType = 5,
Optional dChannels As Integer = 1,
Optional dx As Integer = 1,
Optional dy As Integer = 1,
Optional ksize As Integer = 3,
Optional outDepthType As DepthType = 0,
Optional outChannels As Integer = 1,
Optional scale As Double = 1,
Optional delta As Double = 0,
Optional borderType As BorderType = 4
)
public:
RidgeDetectionFilter(
DepthType^ dDepthType = 5,
int dChannels = 1,
int dx = 1,
int dy = 1,
int ksize = 3,
DepthType^ outDepthType = 0,
int outChannels = 1,
double scale = 1,
double delta = 0,
BorderType^ borderType = 4
)
new :
?dDepthType : DepthType *
?dChannels : int *
?dx : int *
?dy : int *
?ksize : int *
?outDepthType : DepthType *
?outChannels : int *
?scale : float *
?delta : float *
?borderType : BorderType
(* Defaults:
let _dDepthType = defaultArg dDepthType 5
let _dChannels = defaultArg dChannels 1
let _dx = defaultArg dx 1
let _dy = defaultArg dy 1
let _ksize = defaultArg ksize 3
let _outDepthType = defaultArg outDepthType 0
let _outChannels = defaultArg outChannels 1
let _scale = defaultArg scale 1
let _delta = defaultArg delta 0
let _borderType = defaultArg borderType 4
*)
-> RidgeDetectionFilter
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