how can i extract blood vessels from a noisy image?
3 ビュー (過去 30 日間)
古いコメントを表示
hello sir..I want to extract a blood vessel from a noisy image.I want only the vessel part of the image. i have attached my images. can somebody help me please.
Thanks in advance!! and thanks a ton for all response that u guys had given me!!! uu all guys have helped me a lot thanks again
sir, i want to remove the background i mean to say the white part of inside retina...how can i do it
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/153113/image.jpeg)
and i want my output image to look
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/153114/image.jpeg)
5 件のコメント
採用された回答
Image Analyst
2013 年 11 月 19 日
This is not so trivial. It's not like simple global or adaptive thresholding will robustly work for all images, though if you're lucky it may work for some normal (non-pathological) images. I recommend you find a suitable algorithm in section 20.5 here: http://iris.usc.edu/Vision-Notes/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20MRI,%20Ultrasound,%20Heart%20Models,%20Brain%20Models Pick one, then code it up. If you need help with MATLAB code after that, contact us again.
3 件のコメント
Image Analyst
2013 年 11 月 20 日
Sure, you can do that in two lines of code. Just make up a kernel with a positive central weight and negative outer weights and call imfilter or conv2():
kernel = [-1, -1, -1; -1, 8, -1; -1, -1, -1]; % 3 by 3 window.
unsharpMaskedImage = imfilter(grayImage, kernel);
その他の回答 (2 件)
Nisha
2014 年 1 月 30 日
plz give me the code for enhancement of blood vessels in retina......
0 件のコメント
Ashokkumar
2014 年 3 月 29 日
What is the algorithm used the detect blood vessel? please give the code
1 件のコメント
Image Analyst
2014 年 3 月 29 日
Algorithms are given in papers listed here: http://iris.usc.edu/Vision-Notes/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20MRI,%20Ultrasound,%20Heart%20Models,%20Brain%20Models
参考
カテゴリ
Help Center および File Exchange で Biomedical Imaging についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!