http://www.emgu.com
Creates a vertical or horizontal Scharr operator.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic ScharrFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int dx,
int dy,
double scale = 1,
BorderType rowBorderMode = BorderType.Reflect101,
BorderType columnBorderMode = BorderType.NegativeOne
)
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 = BorderType.Reflect101,
Optional columnBorderMode As BorderType = BorderType.NegativeOne
)
public:
ScharrFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int dx,
int dy,
double scale = 1,
BorderType rowBorderMode = BorderType::Reflect101,
BorderType columnBorderMode = BorderType::NegativeOne
)
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 BorderType.Reflect101
let _columnBorderMode = defaultArg columnBorderMode BorderType.NegativeOne
*)
-> 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