Table of Contents

Class Flip

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents an operator that flips each image in the sequence around the vertical, horizontal or both axes.

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

Properties

Mode

Gets or sets a value specifying how to flip the image.

public FlipMode Mode { get; set; }

Property Value

FlipMode

Methods

Process(IObservable<IplImage>)

Flips each image in an observable sequence around the vertical, horizontal or both axes.

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

Parameters

source IObservable<IplImage>

The sequence of images to flip.

Returns

IObservable<IplImage>

The sequence of flipped images.