image overlays to make playing card
Hi I am trying to overlap a picture of a red diamond ontop of another image that I created so that it looks like a playing card. Bleow is the script for the playing card is there a way to combine the red diamond image ontop of the mona lisa?
The mona.lisa.jpg was a just a random jpg i found of mona lisa and crop/coppied/and then flipped to give the effect of a playing card
Also the red diamond was just an image that i pulled off the internet
pic = imread(‘monalisa.jpg’);
top_mona = pic(1:550, 1:743, :);
flipped_mona = imrotate(top_mona,180,’bicubic’);
complete_card = [top_mona; flipped_mona];
imshow(complete_card)Hi I am trying to overlap a picture of a red diamond ontop of another image that I created so that it looks like a playing card. Bleow is the script for the playing card is there a way to combine the red diamond image ontop of the mona lisa?
The mona.lisa.jpg was a just a random jpg i found of mona lisa and crop/coppied/and then flipped to give the effect of a playing card
Also the red diamond was just an image that i pulled off the internet
pic = imread(‘monalisa.jpg’);
top_mona = pic(1:550, 1:743, :);
flipped_mona = imrotate(top_mona,180,’bicubic’);
complete_card = [top_mona; flipped_mona];
imshow(complete_card) Hi I am trying to overlap a picture of a red diamond ontop of another image that I created so that it looks like a playing card. Bleow is the script for the playing card is there a way to combine the red diamond image ontop of the mona lisa?
The mona.lisa.jpg was a just a random jpg i found of mona lisa and crop/coppied/and then flipped to give the effect of a playing card
Also the red diamond was just an image that i pulled off the internet
pic = imread(‘monalisa.jpg’);
top_mona = pic(1:550, 1:743, :);
flipped_mona = imrotate(top_mona,180,’bicubic’);
complete_card = [top_mona; flipped_mona];
imshow(complete_card) overlaping images MATLAB Answers — New Questions