Change color of a image according to pixel value. PLEASE HELP.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I want to change gray image to RGB according to pixel values. I mean, the pixel which are having higher values will be changed to red color and pixel
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149965/image.bmp)
which are having lower values will be changed to bluish color. Mainly I am doing a project in which I want to change a thermal gray image to a image having temperature related image like hotter part having red color and colder part will be having blue color. PLEASE HELP ME. THANKS IN ADVANCE.
0 Commenti
Risposta accettata
Image Analyst
il 22 Set 2013
Do something like
rgbImage = ind2rgb(grayImage, jet(256));
4 Commenti
Image Analyst
il 22 Set 2013
That is the full code. There is nothing more. jet(256) is a colormap. A color map is a pseudocolor lookup table that gives an output RGB color for every graylevel input value. ind2rgb applies that pseudocolor lookup table to the gray image and gives the RGB image as the output. Read carefully what I said and ask if there's anything you don't understand.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Red in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!