plotting an matrix on top of an image
4 views (last 30 days)
Show older comments
I have an image and I devided it into 10 to 10 matriz and then allocate specific number to each elements. Now, I want to plot the matrix beside or the top of my image, So I can see the number for each elements. can you help me with that?
3 Comments
Answers (1)
S. Walter
on 5 May 2020
Edited: S. Walter
on 5 May 2020
You can plot your image , set your hold to on (https://www.mathworks.com/help/matlab/ref/hold.html) and then plot your 10 x 10 matrix.
% Using the example on https://www.mathworks.com/help/matlab/ref/image.html
C = [0 2 4 6; 8 10 12 14; 16 18 20 22];
% Plot C with scaled mapping
image(C,'CDataMapping','scaled')
% Make a 10x10 matrix
[x,y] = meshgrid(linspace(0.5,4.5,10),linspace(0.5,3.5,10));
% Set the hold to on
hold on
% plot the 10x10 matrix
plot(x,y,'r.')
This should give you the following image:
9 Comments
S. Walter
on 11 May 2020
When you take the code I supplied above, does the same problem happen? Do you still show nothing?
Can you confirm that your "v" matrix isn't outside the image boundaries?
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!