How can I create an image in MATLAB by creating a 3D RGB matrix and display it in a MATLAB window?
8 views (last 30 days)
Show older comments
The image should look like a red square above a blue square.
0 Comments
Answers (1)
Bshara Murr
on 27 Nov 2017
new = 255 * ones(dimensions, dimensions, 3, 'uint8');
new(:,:,2) = 0;
imshow(new);
The second line sets the green channel to zero
5 Comments
Bshara Murr
on 27 Nov 2017
Edited: Bshara Murr
on 27 Nov 2017
new = 255 * ones(100, 50, 3, 'uint8');
new(1:50,:,2) = 0;
new(1:50,:,3) = 0;
new(51:100,:,2) = 0;
new(51:100,:,1) = 0;
imshow(new);
Is this what you are looking for?
See Also
Categories
Find more on Creating and Concatenating Matrices 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!