[][src]Function opencv::sfm::homogeneous_to_euclidean

pub fn homogeneous_to_euclidean(
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray
) -> Result<()>

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.