필터 지우기
필터 지우기

Finding the largest difference between any two pixels within a set of 5 contiguous pixels

조회 수: 1 (최근 30일)
I have a matrix of 22 x 22 cells each containing a number. For a given cell, I need to find the largest difference between any two cells within a set of five contiguous pixels (ie. that cell and the one above, below, left and right of it). I then need to step forward one cell from the original cell and again analyse the next set of five cells, and repeat this for every column in the matrix.

채택된 답변

Walter Roberson
Walter Roberson 2017년 5월 8일
Use imdilate() with [0 1 0; 1 1 1; 0 1 0] to get the largest value, and imerode() with the same structuring element to get the smallest value, and subtract.
imdilate() corresponds to maximum over the selected pixels, and imerode() corresponds to minimum over the selected pixels.
  댓글 수: 5
Walter Roberson
Walter Roberson 2017년 5월 9일
The last line there, the reference to pixel_diff is a reference to the computation of the short version with imerode and imdilate, and the isequal() is just there to prove that the computations come out the same, to give evidence that the imerode / imdilate version can be trusted.

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

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by