how can i paste a cropped head of one image into another?
Afficher commentaires plus anciens
I have cropped the head of the cameraman.jpeg using circular crop and have embedded watermark in it. Now i need to place this embedded head into the original cameraman.jpeg. How can i do this?
Réponses (2)
David Sanchez
le 22 Oct 2013
I = imread('cameraman.tif');
head = I( (35:85),(100:140) ); % crop of the head
% code to transform head here
I( (35:85),(100:140) ) = modified_head;
as825
le 22 Oct 2013
0 votes
Catégories
En savoir plus sur Watermarking dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!