Quantcast
Channel: OpenCV Q&A Forum - RSS feed
Viewing all articles
Browse latest Browse all 41027

stereoRectify problems

$
0
0
Hi. I'm working with SFM results. I've calculated orientation params for each camera, undistorted images and selected some stereopairs. Now I would like to calculate rectification for each stereopair. left and right images: ![image description](http://i011.radikal.ru/1508/13/b9d4b397d1ff.jpg) ![image description](http://s019.radikal.ru/i601/1508/1a/ef107a09cc17.jpg) At first rotatation between camera 1 & 2 using quaternion approach: rot_q = q2*q1.inverse(); translation T = C2 - C1, where Cx - camera centers. Then stereoRectify(K1, D, K2, D, img1.size(), R12, T, OR1, OR2, OP1, OP2, OQ, 0); where Kx - camera matrix & D - distortion vector with zero values. and initUndistortRectifyMap(K1, D, OR1, OP1, img1.size(), CV_32FC1, MX1, MY1); initUndistortRectifyMap(K2, D, OR2, OP2, img2.size(), CV_32FC1, MX2, MY2); and in conclusion remap(img1, rect_img_left, MX1, MY1, INTER_CUBIC); remap(img2, rect_img_right, MX2, MY2, INTER_CUBIC); But result seems to be not absolutely correct ![image description](http://s020.radikal.ru/i704/1508/df/f55e232588dc.jpg) So it was cropped as you can see ![image description](http://s011.radikal.ru/i315/1508/b8/a8b315aceadd.jpg) ![image description](http://s015.radikal.ru/i330/1508/5c/6e5f0d676132.jpg) and an Y shift between corresponding epipolines approx 5 pixels Also, I've tried to build rectification using fundamental matrix & stereoRectifyUncalibrated, because I know corresponding points between images. For this scene it works fine ![image description](http://s011.radikal.ru/i315/1508/07/340ded7991ed.jpg) But for some projects (uav images for example) I've got heavy distortions after warping and in general it must be more correctly to use the first approach. Any ideas?

Viewing all articles
Browse latest Browse all 41027

Trending Articles