how to change the background in imshow from black to white
27 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
get(0,'Factory');
set(0,'defaultfigurecolor',[1 1 1]);
whitebg(figure);
set(gcf,'color','white');
set(gca,'color','none');
figure; clf;
imshow(pairOfImages);
The result is this
I want a result that shows the pyramid with a white background.
Thanks
1 Kommentar
Antworten (2)
Morteza
am 19 Aug. 2015
Bearbeitet: Morteza
am 19 Aug. 2015
try this save your picture like Untitled.png on your desktop and then call it from MATLAB like below:
clc,clear all
A = imread('C:\Users\MORTEZA\Desktop\Untitled0.png');
figure(1)
image(A)
[L,W,D] = size(A);
for i = 1:L
for j = 1:W
for k = 1:D
if A(i,j,k) == 0
A(i,j,k) = 255;
end
end
end
end
figure(2)
image(A)
3 Kommentare
Keerthi D
am 29 Jun. 2020
Bearbeitet: Image Analyst
am 22 Aug. 2020
Sir I tried your code above, but I didn't get.
A=imread('C:\Users\Keerthi Dev\Desktop\matlabwork\seg1.png');
figure(1)
image(A)
[L,W,D] = size(A);
for i = 1:L
for j = 1:W
for k = 1:D
if A(i,j,k) == 0
A(i,j,k) = 255;
end
end
end
end
figure(2)
image(A)
result is:
Sir, please help me to solve my problem
Image Analyst
am 22 Aug. 2020
Sure, but please post it in a new post, not tacked onto a 5 years old post from someone else.
hf fh
am 19 Sep. 2018
I have a grayscale image, Please help me I have a picture and I want to make the background color white I used the previous method but did not good out with me
1 Kommentar
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox 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!