after we obtain a binary image ...is there any way to strong the edge??
1 次查看(过去 30 天)
显示 更早的评论
hi after we obtain a binary image with edge for example with otsu method ...is there any way to strengthen these edges??
8 个评论
Iain
2014-9-17
strengthen = to make stronger
strong, used like sara used it could equally have been a typo for storing as well as "make stronger"
回答(2 个)
Image Analyst
2014-9-15
To make edges more contrasty, use a high boost filter:
kernel = [-1,-1,-1;-1,17,-1;-1,-1,-1]/9;
highBoostFilteredImage = imfilter(double(grayImage), kernel);
imshow(highBoostFilteredImage, []);
That's one way, anyway. There are others.
2 个评论
Image Analyst
2014-9-16
After reading your "Answer" I really don't know what you want to do. Perhaps you can find a paper here that did the same thing you would like to do: http://www.visionbib.com/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20MRI,%20Ultrasound,%20Heart%20Models,%20Brain%20Models
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!