Table of Contents

Method Process

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Process(IObservable<Contours>)

Renders each set of contours in an observable sequence as a new image.

public override IObservable<IplImage> Process(IObservable<Contours> source)

Parameters

source IObservable<Contours>

The sequence of Contours objects to draw.

Returns

IObservable<IplImage>

A sequence of IplImage objects representing the result of rendering each set of contours as an image.

Process(IObservable<Contour>)

Renders each contour in an observable sequence as a new image.

public IObservable<IplImage> Process(IObservable<Contour> source)

Parameters

source IObservable<Contour>

The sequence of contour objects to draw.

Returns

IObservable<IplImage>

A sequence of IplImage objects representing the result of rendering each contour as an image.