Borrar filtros
Borrar filtros

how to generate image of spherical object ?

2 visualizaciones (últimos 30 días)
ajeet verma
ajeet verma el 10 de Jul. de 2017
Editada: Walter Roberson el 10 de Jul. de 2017
i need spherical object in 2d matrix image, i have an example
m=1000;
n=1000;
%object
[X,Y,Z]=peaks;
Z1=imresize(Z,[m,n]);
figure,imshow(Z1,[])
here image shows peaks in 3D and similarly i need a sphere.
  1 comentario
Adam
Adam el 10 de Jul. de 2017
Surely a sphere in a 2d matrix is just a circle?

Iniciar sesión para comentar.

Respuesta aceptada

KSSV
KSSV el 10 de Jul. de 2017
[X,Y,Z]=sphere;
surf(X,Y,Z) ;
doc sphere

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by