Borrar filtros
Borrar filtros

"Out of memory" error.

1 visualización (últimos 30 días)
Paulo Oliveira
Paulo Oliveira el 22 de Nov. de 2013
Comentada: Image Analyst el 25 de Nov. de 2013
I use the routine matlab to convert videos, MOV to AVI format and for my system identify the 240 frames per second. When I use the routine to convert small videos (200 MB), I have not problems, but I need also of convert large videos (2GB), but the memory laptop is no enough. Anyone know how I limit the used memory of my matlab?
If you need my routine, I publish here. Thanks.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Nov. de 2013
You don't need to read the whole movie into memory at once. Are you using the VideoReader class and read()?
  2 comentarios
Paulo Oliveira
Paulo Oliveira el 25 de Nov. de 2013
I use VideoReader.
Image Analyst
Image Analyst el 25 de Nov. de 2013
See my comment below on your "Answer".

Iniciar sesión para comentar.

Más respuestas (1)

Paulo Oliveira
Paulo Oliveira el 25 de Nov. de 2013
Anyone help me to limit the memory for do not block my computer? Thanks
  3 comentarios
Paulo Oliveira
Paulo Oliveira el 25 de Nov. de 2013
Editada: Paulo Oliveira el 25 de Nov. de 2013
My code work with small videos, but memory block when convert large videos. I have two solution, or limit the RAM memory or create a new code to convert videos. How to divide a video? For example my video has 80000 frames.
Image Analyst
Image Analyst el 25 de Nov. de 2013
Again, we have not seen your code so it's hard to speculate on the unknown. All I can guess is that you're not using read() to read in one frame at a time, but are trying to read in the whole giant thing all at once, which I've already said (and you' already know) won't work for large videos.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by