How to make Tiff fast and memory efficient

2 visualizaciones (últimos 30 días)
Dimitri Yatsenko
Dimitri Yatsenko el 24 de Sept. de 2012
Respondida: Jerome Lecoq el 3 de Mzo. de 2014
In the following code using R2012b, the Tiff object keeps allocating more internal memory with every read.
t = Tiff('file.tiff')
for i=1:n
t.nextDirectory
imagesc(t.read)
end
t.close
Closing the object frees the memory at the end. But is there a way to clear the memory for frames which have already been displayed without closing the object?

Respuesta aceptada

Jerome Lecoq
Jerome Lecoq el 2 de Mzo. de 2014
I see the same problem in 2013b. I would think this is a bug or an undocumented buffer. At the very least we should be able to disable that buffer.

Más respuestas (1)

Jerome Lecoq
Jerome Lecoq el 3 de Mzo. de 2014
It turns out that if you open the tiff in 'r+' mode. There is no buffering/memory leak. I am going to file a bug report on this.

Categorías

Más información sobre Adding custom doc en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by