Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how can i extract the 1st row of 300 images and i want to store all the rows in a separate matrix.

2 visualizaciones (últimos 30 días)
how can i extract the 1st row of 300 images and i want to store all the row in a separate matrix.
  1 comentario
José-Luis
José-Luis el 7 de Jul. de 2017
Editada: José-Luis el 7 de Jul. de 2017
% Hai
% Loading image
result = cell(300,1);
for ii = 1:300
your_image = load_through_some_wizardry;
result(ii) = {your_image(1,:)};
end
%KTHXB
With some bonus LolCode

Respuestas (0)

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by