Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

2 次查看(过去 30 天)
how can i extract the 1st row of 300 images and i want to store all the row in a separate matrix.
  1 个评论
José-Luis
José-Luis 2017-7-7
编辑:José-Luis 2017-7-7
% 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

回答(0 个)

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by