how i segment medical image using active contour
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
komal kella
le 20 Mai 2017
Réponse apportée : Image Analyst
le 20 Mai 2017
clc;
A = imread('mri.jpg'); I = rgb2gray(A); imshow(I) title('Original Image')
mask = zeros(size(I)); mask(25:end-25,15:end-15) = 1; figure imshow(mask) title('Initial Contour Location')
bw = activecontour(I,mask,500);
figure imshow(bw) title('Segmented Image')
0 commentaires
Réponse acceptée
Image Analyst
le 20 Mai 2017
That could be about right. If it's not, then you might try to get a better starting mask. I have attached my activecontour() demo.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Neuroimaging 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!