How to Convert integer numbers to RGB values

4 views (last 30 days)
How can we convert set of 3 separate integer values to equivalent or processable RGB values?

Answers (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 16 May 2019
Hi Anupam,
If you'd like to generate/create RGB values like for images, then it is quite straightforward.
Let's create 25 - by - 25 RGB image values with the uniform random generator or with already existing numerical values.
clearvars
R = randi([0, 1], 25);
G = randi([0, 1], 25);
B = randi([0, 1], 25);
RGB(:,:,1)=R;
RGB(:,:,2)=G;
RGB(:,:,3)=B;
imshow(RGB), shg
%% Or
clearvars
RGB(:,:,1)=randi([0,255], 25);
RGB(:,:,2)=randi([0,255], 25);
RGB(:,:,3)=randi([0,255], 25);
imshow(RGB), shg
Good luck

Community Treasure Hunt

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

Start Hunting!