edge & non-edge pixels

조회 수: 2 (최근 30일)
matlab_image
matlab_image 2012년 8월 31일
댓글: Ram 2016년 2월 23일
How to find total no. of edge and non-edge pixels from any edge detected image. I am finding no. of edge images with nnz(img) method. Is this right way? If yes then tell me how to count non-edge pixels & If not then tell me about both.. Thanks in advance.

채택된 답변

Kevin Moerman
Kevin Moerman 2012년 8월 31일
편집: Kevin Moerman 2012년 8월 31일
If img is a logic say where ones define edge pixels and zeros define non-edge pixels then you are correct nnz(img): counts the number of non-zero entries and therefore the number of edge pixels this would be equivalent to say: sum(img(:)) If img is a logic then you can also count the non-edge pixels using the nnz command, e.g. : nnz(~img) Where ~ is NOT. Another method would be to say that the non-edge pixels are simply: numel(img)-nnz(img) I.e. the number of elements (all) minus the edge pixels.
Good luck,
Kevin
  댓글 수: 2
matlab_image
matlab_image 2012년 9월 4일
thanks a lot.......
Ram
Ram 2016년 2월 23일
what are edge pixels in a image ? how to find edge pixels for a given image

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

추가 답변 (0개)

제품

Community Treasure Hunt

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

Start Hunting!

Translated by