MATLAB: How to delete the white pixel(255) from grey scale image

image processingMATLAB

I have to delete only 225 value white pixel from gray scale image. But i don't know how to identified each pixel from image and check if it is 255 and assign it's value to zero. Please help me

Best Answer

im(im==255)=0
Related Question