Table of Contents

Class CVEdgeDetectSettings

Namespace
VisioForge.Core.Types.X.OpenCV
Assembly
VisioForge.Core.dll

OpenCV edge detect settings.

public class CVEdgeDetectSettings

Inheritance

Inherited Members

Properties

ApertureSize

Gets or sets the aperture size (must be either 3, 5 or 7).

public int ApertureSize { get; set; }

Property Value

int

Mask

Gets or sets a value indicating whether the detected edges should be used as a mask on the original input or not.

public bool Mask { get; set; }

Property Value

bool

Threshold1

Gets or sets the threshold value for canny edge detection.

public int Threshold1 { get; set; }

Property Value

int

Threshold2

Gets or sets the second threshold value for canny edge detection.

public int Threshold2 { get; set; }

Property Value

int