plotting an matrix on top of an image
5 次查看(过去 30 天)
显示 更早的评论
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?
回答(1 个)
S. Walter
2020-5-5
编辑:S. Walter
2020-5-5
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 个评论
S. Walter
2020-5-11
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?
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!