Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

2 vues (au cours des 30 derniers jours)
Som
Som le 7 Juil 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
how can i extract the 1st row of 300 images and i want to store all the row in a separate matrix.
  1 commentaire
José-Luis
José-Luis le 7 Juil 2017
Modifié(e) : José-Luis le 7 Juil 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

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by