RidgeDetectionFilter Constructor |
http://www.emgu.com
Create a Ridge detection filter.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic 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
)
Public Sub New (
Optional dDepthType As DepthType = DepthType.Cv32F,
Optional dChannels As Integer = 1,
Optional dx As Integer = 1,
Optional dy As Integer = 1,
Optional ksize As Integer = 3,
Optional outDepthType As DepthType = DepthType.Cv8U,
Optional outChannels As Integer = 1,
Optional scale As Double = 1,
Optional delta As Double = 0,
Optional borderType As BorderType = BorderType.Reflect101
)
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
)
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 DepthType.Cv32F
let _dChannels = defaultArg dChannels 1
let _dx = defaultArg dx 1
let _dy = defaultArg dy 1
let _ksize = defaultArg ksize 3
let _outDepthType = defaultArg outDepthType DepthType.Cv8U
let _outChannels = defaultArg outChannels 1
let _scale = defaultArg scale 1
let _delta = defaultArg delta 0
let _borderType = defaultArg borderType BorderType.Reflect101
*)
-> 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