Remove black background in a translated png plot
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Gabriele Dominioni
il 22 Mag 2024
Commentato: Gabriele Dominioni
il 26 Mag 2024
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1701826/image.png)
As in this picture, when i translate a png in a plot i get a black backgroung where the plot is not filled with the png. how can i set the color to white instead of black?
1 Commento
Les Beckham
il 22 Mag 2024
How did you translate the image? Show the code you used, or describe the GUI plot interaction that resulted in the undesired result. That should help in narrowing down to a possible solution.
Risposta accettata
Kevin Holly
il 22 Mag 2024
I = imread("cameraman.tif");
imshow(I)
title("Original Image")
J = imtranslate(I,[15, 25],'FillValues',255); %Add Fill Values here
imshow(J)
title("Translated Image")
J = imtranslate(I,[15, 25]); % Without it Fill Values
imshow(J)
title("Translated Image")
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!