MATLAB: How to make white regions in red color

colorpixelsregion

how to make the white regions in this image to red color

Best Answer

I = imread('Capturefffffff.png') ;
I(:,:,2:3) = 0 ;
imshow(I)
Related Question