C# Class Accord.Imaging.Filters.Edges

Simple edge detector.

The filter performs convolution filter using the edges kernel:

0 -1 0 -1 4 -1 0 -1 0

For the list of supported pixel formats, see the documentation to Convolution filter.

Sample usage:

// create filter Edges filter = new Edges( ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

Inheritance: Convolution
Show file Open project: accord-net/framework

Public Methods

Method Description
Edges ( )

Initializes a new instance of the Edges class.

Method Details

Edges() public method

Initializes a new instance of the Edges class.
public Edges ( )