how to improve lung boundary distinction in chest xrays?
1 view (last 30 days)
Show older comments
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
3 Comments
Accepted Answer
Shubh Sahu
on 28 Aug 2019
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 Comments
More Answers (0)
See Also
Categories
Find more on Biomedical Imaging in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!