How to record live video with a buffer?

Hello, I have the following problem. I want to record the 1st second of real time video <-- that's my buffer. Now, I'd like to display in my GUI (1/10, which is actually 100 msec) of my buffer data. Repeat it 10 times. At the same time, I'd to record a new 2nd second to fill in the buffer. My question is, how can I simultaneously display data on in the GUI (pulling from the buffer), and recording new data (pushing to the buffer)?
I want to do this, so my Real Time Display would look smooth as new data coming in.
THANKS

Answers (1)

Have you considered using the computer vision toolbox? You can step() your video acquisition device to get a frame and in the same cycle step your video output to display a frame, potentially a frame you recorded earlier.

6 Comments

Thank you Walter. I've looked at step function in the past, but I am probably missing something. Could you please post some simple code showing how I can use the step function to execute 2 different tasks simultaneously?
for K = 1 : 500
if K <= 400
frame(:,:,:,K) = step(video_acquisition_object);
end
if K > 100
step(video_output_object, frame(:,:,:,K-100);
end
end
Thank you Walter. I think I'm missing here something. How exactly should I define video_acquisition_object and video_output_object?
I think I wasn't clear on my question. I have created a buffer of 150 frames.
Now, I'd like to perform 2 independent actions: A) read those 150 frames from the buffer. B) write NEW (fresh frames that have just arrived from Real Time Camera) 150 frames into the buffer.
I want actions A & B to be executed simultaneously so it would save me ran time. Obviously I am planing to ran these 2 action in a while-loop, as long Real Time acquisition is going on.
Hope my task is more clear now. Can you help please.
No I cannot help with that. I would need to know the wiring diagrams of your computer and I would need to do a bunch of studying to figure out whether it is even possible for your system to truly handle multiple interrupts at literally the same time. The last operating system I studied delegated interrupt handling to a single CPU, making truly simultaneous device handling impossible. (Which reminds me that you have not indicated which operating system you are using, or the number of cores you have available... or whether the external devices are on their own busses... or whether you are communicating with the devices by USB or GigE or PCIx or ...)
The most I could offer would be to show how to run the acquisitions in different processes, which is something that would probably slow the approach down due to the time needed to communicate the data between processes. The more convenient way of handling this would be with the Parallel Computing Toolbox; we do not know if you have that. Calling out to a mex routine that uses one of the thread libraries is possible, but not always straight forward.
Thanks again Walter. I am using Windows 7. Have 8 cores CPU. Camera is connected via USB 3. I do have Parallel Computing Toolbox, but how exactly it can help solve my problem?
I think I need something like the spmd function. But instead of running single statement on multiple cores, I need to run 2 different statements, each one should run on it's own core.
I don't mind it to be 100% simultaneous, by the split of a second, I am simply trying to reduce my run time.
At the moment my process is the following (running in loop):
1. I grab 1 second of data from usb camera.
2. I process this data.
3. I display the outcome on my GUI.
It takes the above steps 1-3 too long to execute (~1.5 seconds), making my GUI display NOT smooth. Thus I'd like to work through a buffer, making the "reading frames part" as if I am reading from file. Which I know can run quite smoothly.
parpool(2,'local')
spmd
if labindex == 1
for Number_of_times = 1 : 15
for framenum = 1 : 10
frames(:,:,:,framenum) = get a frame
end
labSend(2, frames); %send it to the other proccess
end
else %labindex must be 2
for Number_of_times = 1 : 15
frames = labReceive(1);
... do some calculation on the frames
...
end
end
end

Sign in to comment.

Asked:

on 15 Feb 2016

Commented:

on 24 Feb 2016

Community Treasure Hunt

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

Start Hunting!