imread slower with huge tif files

2 Ansichten (letzte 30 Tage)
MementoMori
MementoMori am 5 Okt. 2022
Beantwortet: Walter Roberson am 5 Okt. 2022
Images1=zeros(128,128,20000);
Images2=zeros(200,200,20000);
len=20000;
for k=1:len
k
Images1(:,:,k) = double(imread(path1,k));
Images2(:,:,k) = double(imread(path2,k));
end
The for loop becomes slower when k is high, why? and how can I prevent it?
The files that I am reading are .tif files

Antworten (1)

Walter Roberson
Walter Roberson am 5 Okt. 2022
Use the Tiff() class to work more directly with the tiff structure.

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by