[~, lowMap] = histeq(grayImage(binaryImageLow));
古いコメントを表示
what does the above code do ? and what is ~ ? can i've a simple example
採用された回答
その他の回答 (1 件)
Image Analyst
2013 年 7 月 3 日
0 投票
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.
カテゴリ
ヘルプ センター および File Exchange で Image Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!