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
, where
are the points to transform and
the transformed points.
- transformed_points: Output vector of N-dimensional transformed points.