how to improve lung boundary distinction in chest xrays?

조회 수: 4 (최근 30일)
ammu v
ammu v 2019년 8월 21일
답변: Shubh Sahu 2019년 8월 28일
is there any particular method for improving the boundary for segmentation.i have tried histogram equalisation,contrast enhancement etc
  댓글 수: 3
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 8월 27일
Please upload the sample image.

댓글을 달려면 로그인하십시오.

채택된 답변

Shubh Sahu
Shubh Sahu 2019년 8월 28일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by