Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想知道 findHomography 方法的作用及其生成的结果。谁能给我这个方法的很好的解释。
H = findHomography( obj, scene, CV_RANSAC ); perspectiveTransform( obj_corners, scene_corners, H);
findHomography()返回单应矩阵。
在perspectiveTransform()此矩阵的基础上为您提供场景内对象的角落。
perspectiveTransform()