Crop frames in video and apply it on other frames.

조회 수: 21 (최근 30일)
Eliska Paulikova
Eliska Paulikova 2022년 10월 27일
편집: KALYAN ACHARJYA 2022년 10월 27일
Hello,
I have a video, which I split in frames. Now, I would like to take the first frame, crop it, and this crop apply on other frames. How I can do it?
Or is there any way to crop whole video?

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 10월 27일
편집: KALYAN ACHARJYA 2022년 10월 27일
As per question you have already done video to frame splits let's consider im1 and im2 have same size images, rxcx3 unit 8 type.
You can place any part of the image to another image of the same type. Let's say you want to crop the first images from the index 20 to 300 rows and 20 to 300 columns in all channels and put it the same as the second image.
im2(20:300,20:300,:)=im1(20:300,20:300,:);
#It's all about replace the data elements (applicable in all arrays), ensure that data type must be same.
Hope it helps!
  댓글 수: 3
KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 10월 27일
Yes, use imtool funtion to open the image and crop it as per the requirements and save the modified in current workspace
imtool(im1);
Eliska Paulikova
Eliska Paulikova 2022년 10월 27일
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by