Start » Filter Reference » OpenCV » Camera Calibration And 3D Reconstruction » cvFindEssentialMat
Module: | OpenCV |
---|
Calculates an essential matrix from the corresponding points in two images.
Name | Type | Range | Description | |
---|---|---|---|---|
inPoints1 | Point2DArray | |||
inPoints2 | Point2DArray | |||
inCameraMatrix | Matrix | |||
inMethod | CvEstimateAffine2DMethod | |||
inProbability | Double | Parameter specifies a desirable level of confidence (probability) that the estimated matrix is correct. | ||
inThreshold | Double | Parameter used for RANSAC. It is the maximum distance from a point to an epipolar line in pixels, beyond which the point is considered an outlier and is not used for computing the final fundamental matrix. It can be set to something like 1-3, depending on the accuracy of the point localization, image resolution, and the image noise. | ||
outEssentialMatrix | Matrix |
Errors
This filter can throw an exception to report error. Read how to deal with errors in Error Handling.
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input points array size must be greater than 4 in cvFindEssentialMat. |
DomainError | Input points arrays size must be equal in cvFindEssentialMat. |
Complexity Level
This filter is available on Basic Complexity Level.