フィルターのクリア

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 日間)
Som
Som 2017 年 7 月 7 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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