Clear Filters
Clear Filters

how to make white regions in red color

3 views (last 30 days)
how to make the white regions in this image to red color

Accepted Answer

KSSV
KSSV on 23 Oct 2017
I = imread('Capturefffffff.png') ;
I(:,:,2:3) = 0 ;
imshow(I)
  2 Comments
kmla
kmla on 12 Nov 2017
Edited: kmla on 12 Nov 2017
thank you. and how to get the blue color

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!