Table of Contents

Class Normalize

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents an operator that normalizes the range of values for each image in the sequence to be between zero and one.

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

Methods

Process(IObservable<IplImage>)

Normalizes the range of values for each image in an observable sequence to be between zero and one.

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

Parameters

source IObservable<IplImage>

The sequence of images to normalize.

Returns

IObservable<IplImage>

The sequence of normalized images.