필터 지우기
필터 지우기

Converting Photos to a Video

조회 수: 2 (최근 30일)
Articat
Articat 2019년 5월 23일
답변: KSSV 2019년 5월 23일
I have 49 photos and want to turn them into a video. The timing of each frame is set to .005 seconds. The first loop reads in the photos from an external folder. The second loop defines which frames will be used in the video. It is erroring saying the it cannot convert the image to a frame. Is there a syntax issue with the notation "I"? I is what the photo set of 49 photos is defined as.

채택된 답변

KSSV
KSSV 2019년 5월 23일
To convert images into frame follow:
I = imread('peppers.png') ;
imshow(I)
F = getframe ;
rgb = frame2im(F) ;
imshow(rgb)

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by