how to improve lung boundary distinction in chest xrays?

4 vues (au cours des 30 derniers jours)
ammu v
ammu v le 21 Août 2019
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
  3 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Août 2019
Please upload the sample image.
ammu v
ammu v le 27 Août 2019
MCUCXR_0003_0.png

Connectez-vous pour commenter.

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Biomedical Imaging dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by