[Image Processing] Create A Binary Image From GrayScale









im=imread('football.jpg');
imR=im(:,:,1);

for i=1:256
    for j=1:320
       
        if(imR(i,j)>60)
            im2(i,j)=255;
        else
            im2(i,j)=0;
        end
    end
end

figure(1),imshow(im2);

Download Coding Interview Book and Get More Tutorials for Coding and Interview Solution: Click Here

Download System Design Interview Book and Get More Tutorials and Interview Solution: Click Here

Do you need more Guidance or Help? Then Book 1:1 Quick Call with Me: Click Here

Share on Google Plus

About Ashadullah Shawon

I am Ashadullah Shawon. I am a Software Engineer. I studied Computer Science and Engineering (CSE) at RUET. I Like To Share Knowledge. Learn More: Click Here
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment