Class WarpAffine
Represents an operator that applies an affine transformation to each image in the sequence.
public class WarpAffine : Transform<IplImage, IplImage>
- Inheritance
-
WarpAffine
- Inherited Members
Properties
FillValue
Gets or sets the value to which all outlier pixels will be set to.
public Scalar FillValue { get; set; }
Property Value
Flags
Gets or sets a value specifying the interpolation and operation flags for the image warp.
public WarpFlags Flags { get; set; }
Property Value
Transform
Gets or sets the 2x3 affine transformation matrix.
[TypeConverter("Bonsai.Dsp.MatConverter, Bonsai.Dsp")]
public Mat Transform { get; set; }
Property Value
Methods
Process(IObservable<IplImage>)
Applies an affine transformation to each image in an observable sequence.
public override IObservable<IplImage> Process(IObservable<IplImage> source)
Parameters
source
IObservable<IplImage>The sequence of images to warp.
Returns
- IObservable<IplImage>
The sequence of warped images.