1 | initial version |
If you use opencv's perspectiveTransform(...) with inputs: - Points from oblique image A. - matrix H from oblique image A.
It will transform those points from oblique image plane to the ortho image plane.
There is also the warpPerspective(...) that does the same but for whole images, instead of just points.
About figuring out camera parameters, maybe you mean finding the intrinsic and extrinsic matrixes? You should check this stackoverflow post: http://stackoverflow.com/q/8927771/1085483
2 | No.2 Revision |
If you use opencv's perspectiveTransform(...) with inputs:
- inputs:
It will transform those points from oblique image plane to the ortho image plane.
There is also the warpPerspective(...) that does the same but for whole images, instead of just points.
About figuring out camera parameters, maybe you mean finding the intrinsic and extrinsic matrixes? You should check this stackoverflow post: http://stackoverflow.com/q/8927771/1085483