MATLAB: Display a 3D image with texture

3d3d plotsMATLABplotting

I have a .bmp image with X,Y,Z coordinates. The coordinates are in the form of .byt format. Could anyone help me in plotting the whole object?

Best Answer

Try using TriScatteredInterp() to make a solid surface where you have a z for every x and y pairing. Then use surf() or imshow() to plot the complete surface.
Related Question