pub fn homography_from_4pt(
src: &[Point2<f32>; 4],
dst: &[Point2<f32>; 4],
) -> Option<Homography>Expand description
Compute H such that: dst ~ H * src (projective), using 4 point correspondences.
src: points in “patch/cell” coordsdst: points in image coords
Corner order must be consistent between src and dst.