how to improve lung boundary distinction in chest xrays?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ammu v
le 21 Août 2019
Réponse apportée : Shubh Sahu
le 28 Août 2019
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
3 commentaires
Réponse acceptée
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') ;
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Genomics and Next Generation Sequencing 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!

