Finds perspective transformation H=||h_ij|| between the source and the destination planes
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
Parameters
- srcPoints
- Type: array<
System.Drawing..::.PointF
>[]()[]
Point coordinates in the original plane
- dstPoints
- Type: array<
System.Drawing..::.PointF
>[]()[]
Point coordinates in the destination plane
- method
- Type: Emgu.CV.CvEnum..::.HOMOGRAPHY_METHOD
FindHomography method
- ransacReprojThreshold
- Type: System..::.Double
The maximum allowed reprojection error to treat a point pair as an inlier.
The parameter is only used in RANSAC-based homography estimation.
E.g. if dst_points coordinates are measured in pixels with pixel-accurate precision, it makes sense to set this parameter somewhere in the range ~1..3
Return Value
The 3x3 homography matrix if found. Null if not found.
See Also