how i segment medical image using active contour

2 Ansichten (letzte 30 Tage)
komal kella
komal kella am 20 Mai 2017
Beantwortet: Image Analyst am 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')

Akzeptierte Antwort

Image Analyst
Image Analyst am 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.

Weitere Antworten (0)

Kategorien

Mehr zu Neuroimaging finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by