http://www.emgu.com
Motion type for the FindTransformECC function
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
SyntaxPublic Enumeration MotionType
public enum class MotionType
Members
| Member name | Value | Description |
---|
| Translation | 0 |
Sets a translational motion model; warpMatrix is 2x3 with the first 2x2 part being the unity matrix and the rest two parameters being estimated.
|
| Euclidean | 1 |
Sets a Euclidean (rigid) transformation as motion model; three parameters are estimated; warpMatrix is 2x3.
|
| Affine | 2 |
Sets an affine motion model (DEFAULT); six parameters are estimated; warpMatrix is 2x3.
|
| Homography | 3 |
Sets a homography as a motion model; eight parameters are estimated; warpMatrix is 3x3.
|
See Also