Table of Contents

Class Canny

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents an operator that applies the Canny algorithm for edge detection to each image in the sequence.

public class Canny : Transform<IplImage, IplImage>
Inheritance
Canny
Inherited Members

Properties

ApertureSize

Gets or sets the aperture parameter for the Sobel operator.

Threshold1

Gets or sets the first threshold. The smallest threshold is used for edge linking and the largest to find initial edge segments.

Threshold2

Gets or sets the second threshold. The smallest threshold is used for edge linking and the largest to find initial edge segments.

Methods

Process(IObservable<IplImage>)

Applies the Canny algorithm for edge detection to each image in an observable sequence.