让我们说:
point1 = [1 2 3 4 5 ; 1 2 3 4 5 ];
point2 = [2 3 4 5 6 ; 2 3 4 5 6 ];
s = findHomography(points1,points2);
Coordinates of an object containing points1 are [0,0; 10,0; 0,10; 10,10]
如何在对象上找到计算透视变换,以便它转换为我的测试坐标。opencv 中有内置函数可以做到这一点,但是,我真的需要一个简单的例子来消除我的困惑。谢谢。