필터 지우기
필터 지우기

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