opencv::sfm

Function homogeneous_to_euclidean

Source
pub fn homogeneous_to_euclidean(
    src: &impl ToInputArray,
    dst: &mut impl ToOutputArray,
) -> Result<()>
Expand description

Converts point coordinates from homogeneous to euclidean pixel coordinates. E.g., ((x,y,z)->(x/z, y/z))

ยงParameters

  • src: Input vector of N-dimensional points.
  • dst: Output vector of N-1-dimensional points.