フィルターのクリア

how to improve lung boundary distinction in chest xrays?

2 ビュー (過去 30 日間)
ammu v
ammu v 2019 年 8 月 21 日
回答済み: Shubh Sahu 2019 年 8 月 28 日
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
  3 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 8 月 27 日
Please upload the sample image.
ammu v
ammu v 2019 年 8 月 27 日
MCUCXR_0003_0.png

サインインしてコメントする。

採用された回答

Shubh Sahu
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') ;
You can modify edgeThresholdand amount according to your needs.out_image.png

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBiomedical Imaging についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by