Rectification technique so overlap one image on other

조회 수: 2 (최근 30일)
Vaddeti Nikitha
Vaddeti Nikitha 2020년 1월 28일
편집: Image Analyst 2020년 1월 29일
Kindly help me out with this issue. I took wheel images captured from stereo camera. My wheel images are at 2 degree (2d) tilted. How I have applied rectification code so that I need an output where the points of both the images map that is matchedpoints takes place and form a new single image.
Though we are taking from 2 cameras, the object is the same, so we need a single image after rectification. Once I get the rectification I need DEPTH map to apply HOUGH Transform to get circle points to form a plane and find angle.
This is my code:
I1=imresize(imread('U3TL0001_023_2d.jpg'),[580 630]);
I2=imresize(imread('U3TL0002_023_2d.jpg'),[580 630]);
load yellowstone_inlier_points;
showMatchedFeatures(I1, I2,inlier_points1,inlier_points2,'montage');
title('Original images and matching feature points');
f = estimateFundamentalMatrix(inlier_points1,inlier_points2,...
'Method','Norm8points');
[t1, t2] = estimateUncalibratedRectification(f,inlier_points1,...
inlier_points2,size(I2));
[I1Rect,I2Rect] = rectifyStereoImages(I1,I2,t1,t2);
figure;
imshow(stereoAnaglyph(I1Rect,I2Rect));

답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for USB Webcams에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by