how to improve lung boundary distinction in chest xrays?
1 回表示 (過去 30 日間)
古いコメントを表示
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
3 件のコメント
採用された回答
Shubh Sahu
2019 年 8 月 28 日
Edge-aware local contrast manipulation might help you. Try the code below.
A = imread('your_image.png');
edgeThreshold = 0.4;
amount = 0.5;
B = localcontrast(A, edgeThreshold, amount);
imshowpair(A, B, 'montage') ;
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Biomedical Imaging についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!