how to convert the background(white) of a image to blaclk.

4 Ansichten (letzte 30 Tage)
KRISHNA MOORTHY
KRISHNA MOORTHY am 13 Apr. 2012
I obtained a image which is output of my intermediate process.It contains white background and small gray patches(grayscale image).I want the background to be black.Please suggest me a solution.

Antworten (1)

Image Analyst
Image Analyst am 13 Apr. 2012
You mean like this:
grayPatchGrayLevel = 150; % or whatever it is.
% Turn anything brighter than that to black.
grayImage(grayImage >= (grayPatchGrayLevel +1)) = 0;
Or, if you know for a fact that all your "white" is actually exactly 255, then:
grayImage(grayImage == 255) = 0;

Kategorien

Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by