Function opencv::sfm::apply_transformation_to_points

source ·
pub fn apply_transformation_to_points(
    points: &impl ToInputArray,
    t: &impl ToInputArray,
    transformed_points: &mut impl ToOutputArray
) -> Result<()>
Expand description

Apply Transformation to points.

§Parameters

  • points: Input vector of N-dimensional points.
  • T: Input 3x3 transformation matrix such that inline formula, where inline formula are the points to transform and inline formula the transformed points.
  • transformed_points: Output vector of N-dimensional transformed points.