Class Flip
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
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.