Enum MotionTypes
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
[findTransformECC] specifying the type of motion
public enum MotionTypes
Fields
Affine = 2sets an affine motion model (DEFAULT); six parameters are estimated; warpMatrix is \f$2\times 3\f$.
Euclidean = 1sets a Euclidean (rigid) transformation as motion model; three parameters are estimated; warpMatrix is \f$2\times 3\f$.
Homography = 3sets a homography as a motion model; eight parameters are estimated;`warpMatrix` is \f$3\times 3\f$.
Translation = 0sets 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.