Table of Contents

Class WarpAffine

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

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

Scalar

Flags

Gets or sets a value specifying the interpolation and operation flags for the image warp.

public WarpFlags Flags { get; set; }

Property Value

WarpFlags

Transform

Gets or sets the 2x3 affine transformation matrix.

[TypeConverter("Bonsai.Dsp.MatConverter, Bonsai.Dsp")]
public Mat Transform { get; set; }

Property Value

Mat

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.