How can I acquire frames from a live video stream, acquire the frames, then use the frames to recreate the live video stream?

조회 수: 5 (최근 30일)

Hello. I want to detect red objects from the live video stream (I know how to detect red objects)

What I want to know is how to acquire the frames from the original live video stream and recreate another live video stream using the processed frames and play these two video streams side by side.

Please help. I'd be really grateful to you.

답변 (2개)

Image Analyst
Image Analyst 2016년 12월 8일
Use getsnapshot()
  댓글 수: 3
Image Analyst
Image Analyst 2016년 12월 8일
I have not personally done that so I can't direct you. Call tech support and they will help you.

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


Jiro Doke
Jiro Doke 2016년 12월 9일
One such example.
v = VideoReader('xylophone.mp4');
% Display first frame
firstFrame = readFrame(v);
subplot(1,2,1)
h1 = imshow(firstFrame);
subplot(1,2,2)
h2 = imshow(rgb2gray(firstFrame));
% Loop through all frames
while hasFrame(v)
frame = readFrame(v);
frameG = rgb2gray(frame);
% Update image
h1.CData = frame;
h2.CData = frameG;
drawnow
end

카테고리

Help CenterFile Exchange에서 Simultaneous and Synchronized Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by