Click or drag to resize

MotionType Enumeration

http://www.emgu.com
Motion type for the FindTransformECC function

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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