multi level image segmentation
1 回表示 (過去 30 日間)
古いコメントを表示
I need a code or procedure to segment or convert gray image to binary image by using more values of thresholding not one as using(im2bw) to get multilevel segmentation and get more accuracy of segment can any body help me ,I need it to complet my project I'm very late,I dont have more time,please
0 件のコメント
回答 (1 件)
Image Analyst
2020 年 12 月 29 日
binaryImage = grayImage > someValue1 & grayImage < someValue2;
You can combine as many of those as you want:
binaryImage2 = grayImage > someValue3 & grayImage < someValue4;
binaryImageFinal = binaryImage & binaryImage2;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Simulation, Tuning, and Visualization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!