How to convert RGB gcf to grayscale gcf ?

1 view (last 30 days)
도현 김
도현 김 on 29 Mar 2021
Commented: KSSV on 29 Mar 2021
h = rand(10)
heatmap(h)
i want to using 'rgb2gray' without using imread.
The mechanism I want is to create heatmap and set it in set(gcf,~~~~).
How can I do it ?

Accepted Answer

KSSV
KSSV on 29 Mar 2021
h = rand(10)
heatmap(h) ;
colormap(gray)
  2 Comments
도현 김
도현 김 on 29 Mar 2021
Edited: 도현 김 on 29 Mar 2021
Thank you! But that and grayscale are different.
Its size is (m*n*3 uint8) and grayscale is (m*n uint8).
KSSV
KSSV on 29 Mar 2021
If you have the values..you can striaght away use them with colormap. Read about it.

Sign in to comment.

More Answers (0)

Categories

Find more on Colormaps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!