Function get_perspective_transform

Source
pub fn get_perspective_transform(
    src: &impl ToInputArray,
    dst: &impl ToInputArray,
    solve_method: i32,
) -> Result<Mat>
Expand description

Calculates a perspective transform from four pairs of the corresponding points.

The function calculates the inline formula matrix of a perspective transform so that:

block formula

where

block formula

§Parameters

  • src: Coordinates of quadrangle vertices in the source image.
  • dst: Coordinates of the corresponding quadrangle vertices in the destination image.
  • solveMethod: method passed to cv::solve (#DecompTypes)

§See also

findHomography, warpPerspective, perspectiveTransform

§C++ default parameters

  • solve_method: DECOMP_LU