Crop frames in video and apply it on other frames.

21 vues (au cours des 30 derniers jours)
Eliska Paulikova
Eliska Paulikova le 27 Oct 2022
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?

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Oct 2022
Modifié(e) : KALYAN ACHARJYA le 27 Oct 2022
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 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Oct 2022
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 le 27 Oct 2022
Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by