Azzera filtri
Azzera filtri

how to improve lung boundary distinction in chest xrays?

2 visualizzazioni (ultimi 30 giorni)
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc

Risposta accettata

Shubh Sahu
Shubh Sahu il 28 Ago 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

Più risposte (0)

Categorie

Scopri di più su Biomedical Imaging in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by