CvInvokeEstimateRigidTransform Method (IInputArray, IInputArray, Boolean) |
http://www.emgu.com
Estimate rigid transformation between 2 images or 2 point sets.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic static Mat EstimateRigidTransform(
IInputArray src,
IInputArray dst,
bool fullAffine
)
Public Shared Function EstimateRigidTransform (
src As IInputArray,
dst As IInputArray,
fullAffine As Boolean
) As Mat
public:
static Mat^ EstimateRigidTransform(
IInputArray^ src,
IInputArray^ dst,
bool fullAffine
)
static member EstimateRigidTransform :
src : IInputArray *
dst : IInputArray *
fullAffine : bool -> Mat
Parameters
- src
- Type: Emgu.CVIInputArray
First image or 2D point set (as a 2 channel Matrix<float>) - dst
- Type: Emgu.CVIInputArray
First image or 2D point set (as a 2 channel Matrix<float>) - fullAffine
- Type: SystemBoolean
Indicates if full affine should be performed
Return Value
Type:
MatThe resulting Matrix<double> that represent the affine transformation
See Also