Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

2 Ansichten (letzte 30 Tage)
how can i extract the 1st row of 300 images and i want to store all the row in a separate matrix.
  1 Kommentar
José-Luis
José-Luis am 7 Jul. 2017
Bearbeitet: José-Luis am 7 Jul. 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

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by