How do i export to blender?
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have this code:
y = rgb2gray(imresize(imread('DSC_0009.jpg'),.2));
z = 255.0 - 1.0 * double(y);
z = z ./5 ;
z2 = imfilter(z, fspecial('average', 15));
z2(z2 > 35) = 35;
z2(z2 < 30) = 0;
surface(z2);
shading interp;
axis ij;
axis tight;
Can i ask help to make the output file of this be converted into a format that blender can read? i am trying to make a 3d model.
please help me.
2 Kommentare
Antworten (1)
Walter Roberson
am 26 Aug. 2015
[X,Y] = ndgrid(1:size(y,1), 1:size(y,2));
saveobjmesh(X, Y, z2);
1 Kommentar
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!