http://www.emgu.com
Creates a vertical or horizontal Scharr operator.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic ScharrFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int dx,
int dy,
double scale = 1,
BorderType rowBorderMode = 4,
BorderType columnBorderMode = -1
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
dstDepth As DepthType,
dstChannels As Integer,
dx As Integer,
dy As Integer,
Optional scale As Double = 1,
Optional rowBorderMode As BorderType = 4,
Optional columnBorderMode As BorderType = -1
)
public:
ScharrFilter(
DepthType^ srcDepth,
int srcChannels,
DepthType^ dstDepth,
int dstChannels,
int dx,
int dy,
double scale = 1,
BorderType^ rowBorderMode = 4,
BorderType^ columnBorderMode = -1
)
new :
srcDepth : DepthType *
srcChannels : int *
dstDepth : DepthType *
dstChannels : int *
dx : int *
dy : int *
?scale : float *
?rowBorderMode : BorderType *
?columnBorderMode : BorderType
(* Defaults:
let _scale = defaultArg scale 1
let _rowBorderMode = defaultArg rowBorderMode 4
let _columnBorderMode = defaultArg columnBorderMode -1
*)
-> ScharrFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
Source image depth. - srcChannels
- Type: SystemInt32
Source image channels. - dstDepth
- Type: Emgu.CV.CvEnumDepthType
Destination array depth. - dstChannels
- Type: SystemInt32
Destination array channels. - dx
- Type: SystemInt32
Order of the derivative x. - dy
- Type: SystemInt32
Order of the derivative y. - scale (Optional)
- Type: SystemDouble
Optional scale factor for the computed derivative values. By default, no scaling is applied. - rowBorderMode (Optional)
- Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method in the vertical direction. For details, see borderInterpolate. - columnBorderMode (Optional)
- Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method in the horizontal direction.
See Also