Click or drag to resize

Cv2FilterHomographyDecompByVisibleRefpoints Method

Filters homography decompositions based on additional information.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void FilterHomographyDecompByVisibleRefpoints(
	IEnumerable<Mat> rotations,
	IEnumerable<Mat> normals,
	InputArray beforePoints,
	InputArray afterPoints,
	OutputArray possibleSolutions,
	InputArray pointsMask = null
)

Parameters

rotations
Type: System.Collections.GenericIEnumerableMat
Vector of rotation matrices.
normals
Type: System.Collections.GenericIEnumerableMat
Vector of plane normal matrices.
beforePoints
Type: OpenCvSharpInputArray
Vector of (rectified) visible reference points before the homography is applied
afterPoints
Type: OpenCvSharpInputArray
Vector of (rectified) visible reference points after the homography is applied
possibleSolutions
Type: OpenCvSharpOutputArray
Vector of int indices representing the viable solution set after filtering
pointsMask (Optional)
Type: OpenCvSharpInputArray
optional Mat/Vector of 8u type representing the mask for the inliers as given by the findHomography function
See Also