3d reconstruction from single 2d image ?
Afficher commentaires plus anciens
hello mathworkers can someone help me i have a .ppm image and i want to create 3d mesh (get x, y, z values)
Réponses (1)
Walter Roberson
le 24 Avr 2018
im = imread('cameraman.tif');
[X,Y] = ndgrid(1:size(im,2), 1:size(im,1));
mesh(X,Y,im)
view([70 69])
1 commentaire
Marwa Jabberi
le 25 Avr 2018
Catégories
En savoir plus sur Image Segmentation and Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
