CentralCamera.decomposeE#

CentralCamera.decomposeE(E: ndarray, P: ndarray | FeatureMatch | None = None) SE3[source]#

Decompose essential matrix

Parameters:
  • E (ndarray(3,3)) – essential matrix

  • P (array_like(3), FeatureMatch) – world point or feature match object to resolve ambiguity

Returns:

camera relative pose

Return type:

SE3

Determines relative pose from essential matrix. This operation has multiple solutions which is resolved by passing in:

  • a single 3D world point in front of the camera

  • a FeatureMatch object

References:
Seealso:

E points2E FeatureMatch opencv.decomposeEssentialMat opencv.recoverPose