Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Video Importing and Avoiding Storeage (Runtime)

1 visualizzazione (ultimi 30 giorni)
Tejas Kulkarni
Tejas Kulkarni il 17 Gen 2012
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I Am new to Video processing or working on Video Sequence. I am facing some minor problems regarding taking the video as input sequence. My Objective's are 1. Load a Video sequence into MATLAB, but not store it. 2. Point and select the point on the Running Video Sequence and Keep Tracing or Tracking it. 3. Generate A Graph or Relative movement of the point with its previous position( not the starting ) and store the Data in a file.
I strated my Objective 1 using mmreader and Videoreader function but they required pre-allocation of memory (Struct) which poses problems for a large sequence and 'Out Of Memory' Porblems. (Am Not allowed to use VisionReader or step function from the Vision toolbox "CODE" or the said toolbox sequence)

Risposte (1)

Sean de Wolski
Sean de Wolski il 17 Gen 2012
I don't see how you could load something but not store it MATLAB.
You could just load a little bit at a time and store that and overwrite it or clear it when you're done. You can do this using the read() capabilities of the mmreader object.
  2 Commenti
Tejas Kulkarni
Tejas Kulkarni il 18 Gen 2012
Yes I know the Function "read(obj)" and I have tried if but the problem comes with the memory. It shows me the following error.
??? Not enough memory available for 6755 frames.
That is the reason am asking for some sort of run-time method or efficient method that will not allocate my memory. My objective and interest lies in only 7 frames +-3 from present.
Sean de Wolski
Sean de Wolski il 18 Gen 2012
So use the second inptu argument to read() which specifies the frame index
read(obj,567) %reads the 567th frame.

Questa domanda è chiusa.

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by