How to Create trisurf image from RGB image ?

3 vues (au cours des 30 derniers jours)
Selva Karna
Selva Karna le 9 Nov 2018
Commenté : KSSV le 12 Nov 2018
How to Create trisurf image from RGB image ?
  1 commentaire
KSSV
KSSV le 9 Nov 2018
Example.....any pictorial example?

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 9 Nov 2018
I = imread('cameraman.tif') ;
[nx,ny] = size(I) ;
[X,Y] = meshgrid(1:ny,1:nx) ;
dt = delaunayTriangulation(X(:),Y(:)) ;
tri = dt.ConnectivityList ;
p = dt.Points ;
I = flipud(I) ;
p(:,3) = I(:) ;
trisurf(tri,p(:,1),p(:,2),p(:,3))
shading interp
colormap(gray)
view(2)
  2 commentaires
Selva Karna
Selva Karna le 12 Nov 2018
Modifié(e) : Selva Karna le 12 Nov 2018
Thanks for reply,actually RGB image to TRISURF using RGB x,y,z coordinates.
KSSV
KSSV le 12 Nov 2018
Yes..you can follow the above for that.

Connectez-vous pour commenter.

Catégories

En savoir plus sur DICOM Format dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by