how to create a surface from a gray level image?
Ältere Kommentare anzeigen
Let I be a gray level image and (x,y) be the standard coordinate. I multiplied this image 'I' with a constant value μ for μ=[0,1] and called it as scaled version of the image. Then i want to plot this scaled version image in a surface 'S' which is parameterised by ψ:(x,y)-->(x,y,μI(x,y)).How can i solve this?
14 Kommentare
KSSV
am 15 Feb. 2017
Once you have a matrix, surf works to plot the surface. Did you try surf ?
Naseeba PP
am 15 Feb. 2017
KSSV
am 15 Feb. 2017
z will be your image values, x,y if you provide it will take or else the indices according to the size of image.
Naseeba PP
am 15 Feb. 2017
KSSV
am 15 Feb. 2017
I=imread('lena.jpg');
[m,n,p] = size(I) ;
x=[1:n]; y=[1:m];
z=I(:,:,1);
surf(x,y,z);
Naseeba PP
am 15 Feb. 2017
KSSV
am 15 Feb. 2017
Read about imread. When you read a image you will get RGB values, your z will be 3D matrix. 1,2,3 corresponds to R (Red),G (green),B (blue) respectively.
Naseeba PP
am 15 Feb. 2017
KSSV
am 15 Feb. 2017
[m,n,p] = size(I) ;
x=[1:n]; y=[1:m];
surf(x,y,z); % z will be a 1D matrix
Naseeba PP
am 15 Feb. 2017
KSSV
am 15 Feb. 2017
What for you want to use?
Naseeba PP
am 15 Feb. 2017
KSSV
am 15 Feb. 2017
For tangent and normals why you need z? x, y are needed isn't it?
Naseeba PP
am 15 Feb. 2017
Antworten (0)
Kategorien
Mehr zu Lighting, Transparency, and Shading finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!