how to improve lung boundary distinction in chest xrays?

4 visualizaciones (últimos 30 días)
ammu v
ammu v el 21 de Ag. de 2019
Respondida: Shubh Sahu el 28 de Ag. de 2019
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
  3 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 27 de Ag. de 2019
Please upload the sample image.

Iniciar sesión para comentar.

Respuesta aceptada

Shubh Sahu
Shubh Sahu el 28 de Ag. de 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

Más respuestas (0)

Categorías

Más información sobre Biomedical Imaging en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by