필터 지우기
필터 지우기

[~, lowMap] = histeq(gra​yImage(bin​aryImageLo​w));

조회 수: 6 (최근 30일)
Maria
Maria 2013년 7월 3일
what does the above code do ? and what is ~ ? can i've a simple example

채택된 답변

Walter Roberson
Walter Roberson 2013년 7월 3일
In that context, the ~ means to throw away the result that would normally go into that position. It is almost identical to saying
[TEMP17393, lowMap] = histeq(grayImage(binaryImageLow)); clear TEMP17393
except with no possibility of clashing variable names.

추가 답변 (1개)

Image Analyst
Image Analyst 2013년 7월 3일
grayImage(binaryImageLow) takes all the pixels that are "true" (white) in the binary image (mask) and strings them together into a 1D array - essentially a list of all the gray levels in the masked area.
histeq() then does histogram equalization on that 1D array. In my experience, histogram equalization is rarely helpful or even needed at all. It returns the lookup table that tells what input gray level should be mapped to what output gray level.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by