Finding a 2d block with highest average inside a 2d window
조회 수: 1 (최근 30일)
이전 댓글 표시
Consider a matrix A(52,34) How to find out which 2d block size(3,3) has the highest average in it
댓글 수: 0
채택된 답변
Walter Roberson
2018년 3월 1일
[~, idx] = max(conv2(A, ones(3,3),'same'))
[r, c] = ind2sub(size(A), idx);
r and c is now the index of the center of the block that had the highest average.
댓글 수: 2
Walter Roberson
2018년 3월 2일
[~, idx] = max( reshape(conv2(A, ones(3,3),'same'), [], 1) );
[r, c] = ind2sub(size(A), idx);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Scatter Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!