Click or drag to resize

MotionType Enumeration

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)
Syntax
public enum MotionType
Members
  Member nameValueDescription
Translation0 Sets a translational motion model; warpMatrix is 2x3 with the first 2x2 part being the unity matrix and the rest two parameters being estimated.
Euclidean1 Sets a Euclidean (rigid) transformation as motion model; three parameters are estimated; warpMatrix is 2x3.
Affine2 Sets an affine motion model (DEFAULT); six parameters are estimated; warpMatrix is 2x3.
Homography3 Sets a homography as a motion model; eight parameters are estimated; warpMatrix is 3x3.
See Also