How im2bw works in image processing when we change the level ??
2 ビュー (過去 30 日間)
古いコメントを表示
I want to know how im2bw works??
when changing the level : im2bw(image, level)
there is some equation or formula which help .......when we changing the thresholding level values??
0 件のコメント
回答 (2 件)
Image Analyst
2014 年 7 月 12 日
編集済み: Image Analyst
2014 年 7 月 12 日
Type
>> edit im2bw
and you'll have your answer. That's the sourse code for the function. Basically it converts level to the range that the data class is in and then thresholds like bw=input>level.
Laila Kazemi
2014 年 7 月 12 日
So level is the threshold. Any pixel with intensity greater than the threshold is equal to 1 and pixels with intensity smaller than the threshold are set to zero. No equations its a logic process.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!