Class EdgeDetectorProcessor
Defines edge detection using a single 2D gradient operator.
Implements
Inherited Members
Namespace: SixLabors.ImageSharp.Processing.Processors.Convolution
Assembly: SixLabors.ImageSharp.dll
Syntax
public sealed class EdgeDetectorProcessor : IImageProcessor
Constructors
| Edit this page View SourceEdgeDetectorProcessor(EdgeDetectorKernel, bool)
Initializes a new instance of the EdgeDetectorProcessor class.
Declaration
public EdgeDetectorProcessor(EdgeDetectorKernel kernel, bool grayscale)
Parameters
| Type | Name | Description |
|---|---|---|
| EdgeDetectorKernel | kernel | The edge detector kernel. |
| bool | grayscale | Whether to convert the image to grayscale before performing edge detection. |
Properties
| Edit this page View SourceGrayscale
Gets a value indicating whether to convert the image to grayscale before performing edge detection.
Declaration
public bool Grayscale { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Kernel
Gets the edge detector kernel.
Declaration
public EdgeDetectorKernel Kernel { get; }
Property Value
| Type | Description |
|---|---|
| EdgeDetectorKernel |
Methods
| Edit this page View SourceCreatePixelSpecificProcessor<TPixel>(Configuration, Image<TPixel>, Rectangle)
Creates a pixel specific IImageProcessor<TPixel> that is capable of executing the processing algorithm on an Image<TPixel>.
Declaration
public IImageProcessor<TPixel> CreatePixelSpecificProcessor<TPixel>(Configuration configuration, Image<TPixel> source, Rectangle sourceRectangle) where TPixel : unmanaged, IPixel<TPixel>
Parameters
| Type | Name | Description |
|---|---|---|
| Configuration | configuration | The configuration which allows altering default behaviour or extending the library. |
| Image<TPixel> | source | The source image. Cannot be null. |
| Rectangle | sourceRectangle | The Rectangle structure that specifies the portion of the image object to draw. |
Returns
| Type | Description |
|---|---|
| IImageProcessor<TPixel> |
Type Parameters
| Name | Description |
|---|---|
| TPixel | The pixel type. |