EdgeDetectMethod Enumeration |
The method used to detect edges in a raster.
Namespace:
AGI.Foundation.Graphics.Imaging
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum EdgeDetectMethod
Public Enumeration EdgeDetectMethod
public enum class EdgeDetectMethod
Members
| Member name | Description |
---|
| Vertical |
Detects vertical edges.
|
| Horizontal |
Detects horizontal edges.
|
| LeftDiagonal |
Detects left diagonal edges.
|
| RightDiagonal |
Detects right diagonal edges.
|
| Laplacian |
Detects edges using the Laplacian method.
|
| PrewittLaplacian |
Detects edges using the Prewitt-Laplacian method.
|
| SobelVertical |
Detects vertical edges using the Sobel method.
|
| SobelHorizontal |
Detects horizontal edges using the Sobel method.
|
See Also