MATLAB: How i can extract green colour from an image??

green

extraction of green colour from rgb image

Best Answer

I = imread(image) ;
R = I(:,:,1) ;
G = I(:,:,2) ;
B = I(:,:,3) ;
Related Question