How to change particular pixel color of a binary image to other color?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Asif Hasan
am 30 Okt. 2014
Kommentiert: Asif Hasan
am 31 Okt. 2014
Sir,
I have a binary image and i want to change the color of the black pixel to green. How do i do that ? Please help. Thanks in advance.
This is the binary image:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145908/image.jpeg)
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 30 Okt. 2014
Try this:
%grayImage = imread('cameraman.tif');
%binaryImage = grayImage > 128;
%subplot(1,2,1);
%imshow(binaryImage);
redAndBlueChannel = 255 * uint8(binaryImage);
greenChannel = 255 * ones(size(binaryImage), 'uint8'); % Green Everywhere.
rgbImage = cat(3, redAndBlueChannel, greenChannel, redAndBlueChannel);
%subplot(1,2,2);
%imshow(rgbImage);
Remove the % if you want to demo it using a standard MATLAB demo image.
8 Kommentare
Image Analyst
am 30 Okt. 2014
It works just fine. Here's proof:
s = load('binaryimage.mat')
binaryImage = s.show;
subplot(1,2,1);
imshow(binaryImage);
redAndBlueChannel = 255 * uint8(binaryImage);
greenChannel = 255 * ones(size(binaryImage), 'uint8'); % Green Everywhere.
rgbImage = cat(3, redAndBlueChannel, greenChannel, redAndBlueChannel);
subplot(1,2,2);
imshow(rgbImage);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/179197/image.jpeg)
Weitere Antworten (1)
Doug Hull
am 30 Okt. 2014
Change colormap?
clf
im = round(rand(10));
imshow(im)
colormap([0 1 0; 1 1 1])
Siehe auch
Kategorien
Mehr zu Red finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!