Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

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

2 views (last 30 days)
how can i extract the 1st row of 300 images and i want to store all the row in a separate matrix.
  1 Comment
José-Luis
José-Luis on 7 Jul 2017
Edited: José-Luis on 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

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!