How do you change pixels in an image?
Afficher commentaires plus anciens
i want to get the difference between two pixel and then i want to chang pixel value to become yellow . please help!!!!
Réponses (3)
Jan
le 19 Fév 2012
The question is not clear. Are you talking about RGB images? Which pixel should be set to yellow? Perhaps this helps:
image1 = rand(100,100,3);
image2 = rand(100,100,3);
diffPixel = image1(51,67,:) - image2(51,67,:);
image1(51,67,:) = [1, 1, 0];
3 commentaires
Isee You
le 19 Fév 2012
Image Analyst
le 19 Fév 2012
Try this first: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
Then come back and tell us which two pixels you want to take the difference of and which pixels you want to set to yellow. Do you want to convert your gray scale image to RGB color now? Or do you want to apply a colormap? Do you have any photos that you uploaded to tinypic.com that you can show us? You need to put some work into your question, more than 10 seconds anyway. Because as I see it, Jan has answered your question. If not, you need to explain why.
Isee You
le 24 Fév 2012
Isee You
le 21 Fév 2012
0 votes
3 commentaires
Image Analyst
le 22 Fév 2012
Do you mean the dark part between the outer body wall and the internal organs?
Isee You
le 22 Fév 2012
Image Analyst
le 22 Fév 2012
Give us some code to start with. I don't want to develop the whole app from scratch for you.
Catégories
En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!