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

采纳的回答

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 CenterFile Exchange 中查找有关 Biomedical Imaging 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by