Borrar filtros
Borrar filtros

save images inside a for loop at uneven intervals

1 visualización (últimos 30 días)
Turbulence Analysis
Turbulence Analysis el 25 de En. de 2024
Editada: Matt J el 25 de En. de 2024
Hi,
I am trying to save images inside the Img array that is generated inside the for loop at uneven iteration numbers. For example sometimes image generated at 10th iteration, while sometimes it's at 150th iteration. How to handle this?
for i = 1:a
B = some process % my image
Img(:,:,) = B
end

Respuesta aceptada

Voss
Voss el 25 de En. de 2024
Here's one way that may work for your particular task:
Img = zeros(0,0,0);
for i = 1:a
B = some process % my image
if ... % if some condition says to store this B in Img
Img(:,:,end+1) = B;
end
end
  6 comentarios
Voss
Voss el 25 de En. de 2024
Maybe something along these lines:
Img = zeros(0,0,0);
last_stored_time = ts(1);
for i = 1:a
B = some process % my image
if ts(i) - last_stored_time >= 200
Img(:,:,end+1) = B;
last_stored_time = ts(i);
end
end
Turbulence Analysis
Turbulence Analysis el 25 de En. de 2024
Thanks very much!

Iniciar sesión para comentar.

Más respuestas (2)

Matt J
Matt J el 25 de En. de 2024
Editada: Matt J el 25 de En. de 2024
One way,
Img=nan(M,N,a);
Isubset=[10 47, 150,...,a]
for i = 1:a
B = some process % my image
if ismember(i,Isubset)
Img(:,:,i) = B;
end
end
  1 comentario
Turbulence Analysis
Turbulence Analysis el 25 de En. de 2024
Movida: Voss el 25 de En. de 2024
Hi Matt,
Actually iteration number 10, 150 is just an example, in reality these numbers are highly random.

Iniciar sesión para comentar.


Matt J
Matt J el 25 de En. de 2024
Editada: Matt J el 25 de En. de 2024
If you don't know in advance which and how many loop iterations you'll be storing, it would be best to accumulate them in a cell array, and then post-concatenate:
Img = cell(1,a);
for i = 1:a
B = some process % my image
if ... % if some condition says to store this B in Img
Img{i} = B;
end
end
Img=cat(3,Img{:}); %empty cells are discarded

Community Treasure Hunt

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

Start Hunting!

Translated by