Class CVEdgeDetectSettings
OpenCV edge detect settings.
Inherited Members
Namespace: VisioForge.Core.Types.X.OpenCV
Assembly: VisioForge.Core.dll
Syntax
public class CVEdgeDetectSettings
Properties
ApertureSize
Gets or sets the aperture size (must be either 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 |
|
Threshold1
Gets or sets the threshold value for canny edge detection.
Declaration
public int Threshold1 { get; set; }
Property Value
Type | Description |
---|---|
int |
Threshold2
Gets or sets the second threshold value for canny edge detection.
Declaration
public int Threshold2 { get; set; }
Property Value
Type | Description |
---|---|
int |