I have a binary image with black background and a white object in circle ,now i want to change the colour of white to gray plz help

4 commentaires

Alessandro
Alessandro le 18 Mar 2013
use class(image) to determinate what kind of data you have. If it is int8 than you can just image2 = image./2 If it is logical than you can write image2 = int8(image).*127
kash
kash le 18 Mar 2013
Alessandro i need the white object to become gray;in ur code the background becomes gray
Jan
Jan le 18 Mar 2013
@kash: Please post the class of the input, because "binary image" is not an exact definition.
kash
kash le 19 Mar 2013
the class is logical

Connectez-vous pour commenter.

 Réponse acceptée

Image Analyst
Image Analyst le 19 Mar 2013

0 votes

grayValue = uint8(128); % or whatever you want in the range of 1-255
grayScaleImage = grayValue * uint8(binaryImage);

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by