Class CVSobelSettings
OpenCV sobel effect settings.
Inherited Members
Namespace: VisioForge.Core.Types.X.OpenCV
Assembly: VisioForge.Core.dll
Syntax
public class CVSobelSettings
Properties
ApertureSize
Gets or sets the size of the extended Sobel Kernel (1, 3, 5 or 7).
Declaration
public int ApertureSize { get; set; }
Property Value
Type | Description |
---|---|
int | The size of the aperture. |
Mask
Gets or sets a value indicating whether the detected edges should be used as a mask on the original input or not.
Declaration
public bool Mask { get; set; }
Property Value
Type | Description |
---|---|
bool |
|
XOrder
Gets or sets the order of the derivative X.
Declaration
public int XOrder { get; set; }
Property Value
Type | Description |
---|---|
int |
YOrder
Gets or sets the order of the derivative Y.
Declaration
public int YOrder { get; set; }
Property Value
Type | Description |
---|---|
int |