CvInvokeEstimateRigidTransform Method (PointF, PointF, Boolean) |
http://www.emgu.com
Estimate rigid transformation between 2 point sets.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static Mat EstimateRigidTransform(
PointF[] sourcePoints,
PointF[] destinationPoints,
bool fullAffine
)
Public Shared Function EstimateRigidTransform (
sourcePoints As PointF(),
destinationPoints As PointF(),
fullAffine As Boolean
) As Mat
public:
static Mat^ EstimateRigidTransform(
array<PointF>^ sourcePoints,
array<PointF>^ destinationPoints,
bool fullAffine
)
static member EstimateRigidTransform :
sourcePoints : PointF[] *
destinationPoints : PointF[] *
fullAffine : bool -> Mat
Parameters
- sourcePoints
- Type: System.DrawingPointF
The points from the source image - destinationPoints
- Type: System.DrawingPointF
The corresponding points from the destination image - fullAffine
- Type: SystemBoolean
Indicates if full affine should be performed
Return Value
Type:
MatIf success, the 2x3 rotation matrix that defines the Affine transform. Otherwise null is returned.
See Also