How to Create trisurf image from RGB image ?

2 visualizzazioni (ultimi 30 giorni)
Selva Karna
Selva Karna il 9 Nov 2018
Commentato: KSSV il 12 Nov 2018
How to Create trisurf image from RGB image ?

Risposte (1)

KSSV
KSSV il 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 Commenti
Selva Karna
Selva Karna il 12 Nov 2018
Modificato: Selva Karna il 12 Nov 2018
Thanks for reply,actually RGB image to TRISURF using RGB x,y,z coordinates.
KSSV
KSSV il 12 Nov 2018
Yes..you can follow the above for that.

Accedi per commentare.

Categorie

Scopri di più su DICOM Format in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by