Insert PNG image into normal image
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Normally, there is no problem, if we load two images in jpg formats, and insert one image to another as logo. But due to background and boarders, we need to insert png image. the output is attached
** how to handle png images.
As we know that png images have no backgroud, but once they are loaded in matlab, background turns into black. how to handle the background.
consider following image,
img1 = imread('1.jpg');
logo = imread('logo.png');
img1(1:size(logo,1), 1:size(logo,2), :) = logo;
imshow(img1)
5 commentaires
Guillaume
le 18 Sep 2019
@king umar, is your question about compositing two images with one having associated transparency info (i.e alpha blending)?
Réponses (1)
Rik
le 18 Sep 2019
If you want to prevent overwriting the underlying image for some pixels, you can use a logical mask to only overwrite some pixels.
Voir également
Catégories
En savoir plus sur Convert Image Type dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!