3d Bar plot on map

17 views (last 30 days)
Ranjan Sonalkar
Ranjan Sonalkar on 30 May 2018
Commented: Ranjan Sonalkar on 31 May 2018
I have a floor plan in a .jpeg or .png file, that I can read and display with the function image with the x-y coordinates. I also have another quantity, z, for a few, N, selected x-y locations of the floor coordinates. I would like to draw 3D bars at the appropriate N locations corresponding to the values of z. Would appreciate any help to do this.

Accepted Answer

Rishabh Rathore
Rishabh Rathore on 31 May 2018
Edited: Rishabh Rathore on 31 May 2018
You can plot image as a surface (on x-y plane) using the following code
%Insert Image
Z=imread('img.jpg');
[X,map]=rgb2ind(Z,256);
x=1:25; %change x,y to suite your requirements
y=1:25;
[xx,yy]=meshgrid(x,y);
zz=zeros(size(xx));
colormap(map)
surf(xx,yy,zz,X,'FaceColor','texturemap','EdgeColor','none','CDataMapping','direct');
After that use the function provided in the link below to plot the bar graph.
  3 Comments
Ranjan Sonalkar
Ranjan Sonalkar on 31 May 2018
that works. Thanks for the help.

Sign in to comment.

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by