Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

2 visualizzazioni (ultimi 30 giorni)
how can i extract the 1st row of 300 images and i want to store all the row in a separate matrix.
  1 Commento
José-Luis
José-Luis il 7 Lug 2017
Modificato: José-Luis il 7 Lug 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

Risposte (0)

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by