필터 지우기
필터 지우기

Generating random blocks of 7-by-7 pixels from a multidimensional array 700 x 800 x 6.

조회 수: 1 (최근 30일)
Hi, I am new in the programming field and encounter a problem while coding to generate 100 random blocks of 7x7 pixels from a multidimensional array with a size of 700x800x6.Any help in this regard will be highly appreciated

채택된 답변

Walter Roberson
Walter Roberson 2017년 7월 18일
  댓글 수: 2
Chandrama Sarker
Chandrama Sarker 2017년 7월 18일
Thanks, Walter, I will try in a trikier way. I have tried the loop for it but found it a bit complicated as my knowledge in this field is very new. I will let you know how far I will go with my next try.
Walter Roberson
Walter Roberson 2017년 7월 18일
The trickier way is not recommended for beginners!
for K = 1 : 100
r = randi(700-6,1,1);
c = randi(800-6,1,1);
rb{K} = YourData(r:r+6, c:c+6, :);
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by