Plot pixels from 2D boolean array

18 次查看(过去 30 天)
I have a 2D boolean array stored 0s and 1s where I want to plot a red pixel. For example, If the 2D boolean array has 1 for (20, 20) location, it should plot a red pixel at that location. Else, it is has 0, it should not plot the red pixel.
Can someone help me?

采纳的回答

Stephan
Stephan 2019-11-30
% your array
A = randi(2,101)-1;
% the result;
R=255*ones(101);
G=255*(-A+1);
B=255*(-A+1);
res = cat(3,R,G,B);
% plot result
imshow(res)
  4 个评论
Radhika Kulkarni
Radhika Kulkarni 2019-11-30
编辑:Radhika Kulkarni 2019-11-30
Great! It worked.
Now, It is plotting my image from the array. I need to rotate the axes by 135 deg CCW. How do I do that?
See the attachment. I need to rotate this by 135 deg CCW.
Stephan
Stephan 2019-11-30
编辑:Stephan 2019-11-30
If you have Image Processing Toolbox use imrotate. If not see FEX to download a tool.

请先登录,再进行评论。

更多回答(2 个)

Radhika Kulkarni
Radhika Kulkarni 2019-11-30
One more thing, I need to put this in a some time refresh loop, so it grows in size and back to normal size. Like pumping heart.
  1 个评论
Stephan
Stephan 2019-11-30
On File Exchange there are also tools to create gif animations. Maybe you want to use this.

请先登录,再进行评论。


Radhika Kulkarni
Radhika Kulkarni 2019-12-2
How can I also show the x & y axis and ticks and axis data points to plot along with this vectorized code?

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by