필터 지우기
필터 지우기

how can i paste a cropped head of one image into another?

조회 수: 1 (최근 30일)
as825
as825 2013년 10월 22일
답변: as825 2013년 10월 22일
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?

답변 (2개)

David Sanchez
David Sanchez 2013년 10월 22일
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
as825 2013년 10월 22일
actually the above code is for a normal cropping and i need it for circular cropping. The description of the problem is stated above in the description part..

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by