[][src]Function opencv::calib3d::convert_points_homogeneous

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

Converts points to/from homogeneous coordinates.

Parameters

  • src: Input array or vector of 2D, 3D, or 4D points.
  • dst: Output vector of 2D, 3D, or 4D points.

The function converts 2D or 3D points from/to homogeneous coordinates by calling either convertPointsToHomogeneous or convertPointsFromHomogeneous.

Note: The function is obsolete. Use one of the previous two functions instead.