Rectification technique so overlap one image on other
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur MATLAB Support Package for USB Webcams dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!