Function opencv::sfm::fundamental_from_projections

source ·
pub fn fundamental_from_projections(
    p1: &impl ToInputArray,
    p2: &impl ToInputArray,
    f: &mut impl ToOutputArray
) -> Result<()>
Expand description

Get Fundamental matrix from Projection matrices.

§Parameters

  • P1: Input 3x4 first projection matrix.
  • P2: Input 3x4 second projection matrix.
  • F: Output 3x3 fundamental matrix.