
Vein Detection in Angiogram image
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    

There are veins in above image. I need to find out the location of pixels at which veins are present.
I tried to do this:
img=imread('segmented plus orignal image 1\aa00001.jpg');
bi=im2bw(img); imshow(bi)
But still, it is not clear.
댓글 수: 2
채택된 답변
  Matthew Eicholtz
      
 2016년 3월 23일
        You may want to try edge detection followed by some image morphological operations (e.g. dilation, erosion) and region flood-filling.
Also, if your results from im2bw are as depicted in the comment above, the bwareaopen function may be helpful.
댓글 수: 0
추가 답변 (1개)
  Image Analyst
      
      
 2016년 3월 24일
        Has that image already been through a Hessian or Frangi filter?
댓글 수: 2
  Image Analyst
      
      
 2016년 3월 28일
				You should be able to find plenty of vessel tracking papers here: http://www.visionbib.com/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20MRI,%20Ultrasound,%20Heart%20Models,%20Brain%20Models
참고 항목
카테고리
				Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!