after we obtain a binary image ...is there any way to strong the edge??
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hi after we obtain a binary image with edge for example with otsu method ...is there any way to strengthen these edges??
8 Commenti
Iain
il 17 Set 2014
strengthen = to make stronger
strong, used like sara used it could equally have been a typo for storing as well as "make stronger"
Risposte (2)
Image Analyst
il 15 Set 2014
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 Commenti
Image Analyst
il 16 Set 2014
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
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!