How can i use Mean vector difference enhancer to highlight the gradient of the object contour and to suppress the gradient of noise contour?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sou
le 6 Août 2014
Réponse apportée : Image Analyst
le 30 Août 2014
I am in need to detect the contour of the cytoplasm and nuclues of the cell(that i have attached in
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/154071/image.bmp)
). to detect the cell nucleus i undergone sobel operator first.since it is sensitive to noise, MVD(Mean vector difference enhancer) is used to highlight the gradient of the object contour and to suppress the gradient of noise contour. so I an need of matlab code for this enhancement...plz someone help me.my code for sobel operator is
I=imread('D:\sou project\original\1.bmp');
imshow(I),title('original image')
[Gx, Gy] = imgradientxy(I);
Gmag = imgradient(Gx, Gy);
figure, imshow(Gmag, []), title('Gradient magnitude')
0 commentaires
Réponse acceptée
Image Analyst
le 30 Août 2014
Like your duplicate question, I don't think you need to use that algorithm. You can do the code I gave you in your duplicate question http://www.mathworks.com/matlabcentral/answers/151808#comment_233588
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Filtering and Enhancement dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!