How do I produce a solid green image directly above an imported image
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have imported an image and I require there to be a solid green image of the same dimensions directly above the imported image. How would I go about doing this? I have attempted using patch but to no success.
2 commentaires
KALYAN ACHARJYA
le 3 Juin 2019
Modifié(e) : KALYAN ACHARJYA
le 3 Juin 2019
directly above the imported image??
Question is not clear? What result you are expecting? May be you require one green image (plane) having size equal to the processed image. Clarify ?
Réponse acceptée
KSSV
le 3 Juin 2019
I1 = imread('peppers.png') ;
[nx,ny,nz] = size(I1) ;
I2 = zeros(nx,ny,nz) ;
I2(:,:,2) = 255 ;
I12 = vertcat(I2,I1) ;
imshow(I12)
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!