Table of Contents

Class ImageHistogram

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents an operator that computes the per-channel color histograms for each image in the sequence.

public class ImageHistogram : Transform<IplImage, ScalarHistogram>
Inheritance
ImageHistogram
Inherited Members

Methods

Process(IObservable<IplImage>)

Computes the per-channel color histograms for each image in an observable sequence.

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

Parameters

source IObservable<IplImage>

The sequence of images for which to compute the per-channel color histograms.

Returns

IObservable<ScalarHistogram>

A sequence of ScalarHistogram objects representing the per-channel color histograms for each image.