Table of Contents

Class CVSobelSettings

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

OpenCV sobel effect settings.

public class CVSobelSettings

Inheritance

Inherited Members

Properties

ApertureSize

Gets or sets the size of the extended Sobel Kernel (1, 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

XOrder

Gets or sets the order of the derivative X.

public int XOrder { get; set; }

Property Value

int

YOrder

Gets or sets the order of the derivative Y.

public int YOrder { get; set; }

Property Value

int