how to improve lung boundary distinction in chest xrays?

2 Ansichten (letzte 30 Tage)
ammu v
ammu v am 21 Aug. 2019
Beantwortet: Shubh Sahu am 28 Aug. 2019
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
  3 Kommentare
KALYAN ACHARJYA
KALYAN ACHARJYA am 27 Aug. 2019
Please upload the sample image.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Biomedical Imaging finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by