Table of Contents

Enum MotionTypes

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

[findTransformECC] specifying the type of motion

public enum MotionTypes

Fields

Affine = 2

sets an affine motion model (DEFAULT); six parameters are estimated; warpMatrix is \f$2\times 3\f$.

Euclidean = 1

sets a Euclidean (rigid) transformation as motion model; three parameters are estimated; warpMatrix is \f$2\times 3\f$.

Homography = 3

sets a homography as a motion model; eight parameters are estimated;`warpMatrix` is \f$3\times 3\f$.

Translation = 0

sets a translational motion model; warpMatrix is \f$2\times 3\f$ with the first \f$2\times 2\f$ part being the unity matrix and the rest two parameters being estimated.