downsample from image 360*640 to 180*320

조회 수: 4 (최근 30일)
Andrea Gusmara
Andrea Gusmara 2020년 5월 22일
댓글: Ameer Hamza 2020년 5월 22일
hi to everyone , I would to ask two question . the first is place in the title , and i know that i'm going to lose data , but i need to. the image in question i frame in the code under
. the second is that i'm trying to execute this code , but somthing wrong append .
video1=VideoReader('Francesca-Michielin---No-Degree-Of-Separation-Italy-Live-at-Semi-Final-2.mp4');
video2=VideoReader('Jamala---1944-Ukraine-Live-at-Semi-Final-2-of-the-2016-Eurovision-Song-Contest.mp4');
videoOut=VideoWriter('provaMix.avi');
videoOut.FrameRate=video1.FrameRate;
open(videoOut)
frames=read(video1,[1 2316]);
for frame=frames
% eventualmente resize (downsampling) del frame
writeVideo(videoOut,frame);
end
thank so much

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 5월 22일
See imresize(): https://www.mathworks.com/help/releases/R2020a/matlab/ref/imresize.html. Use it with a scaling factor of 0.5;
frame_small = imresize(frame, 0.5)
For videoReader object, use readFrame() function to read a frame at a time, as shown in this example:: https://www.mathworks.com/help/releases/R2020a/matlab/ref/videoreader.html#busqe2j-1_1

추가 답변 (1개)

Andrea Gusmara
Andrea Gusmara 2020년 5월 22일
Thanks you for your answer. For the second question, is there any function that permits to read more frames? I have seen the functions readFrame and read. I have read the documentation about the latter function but I couldn't use it very well. The documentation said that a frame range could be recovered
  댓글 수: 3
Andrea Gusmara
Andrea Gusmara 2020년 5월 22일
No errors, the function returned only a value
Ameer Hamza
Ameer Hamza 2020년 5월 22일
Your for loop is wrong. Write it like this
frames=read(video1,[1 2316]);
for idx=1:2316
% eventualmente resize (downsampling) del frame
writeVideo(videoOut,frames(:,:,:,i));
end

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

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by