Rectification technique so overlap one image on other
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File 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!