Counting cells in image

23 visualizaciones (últimos 30 días)
Sara Hafeez
Sara Hafeez el 5 de Abr. de 2015
Editada: LUI PAUL el 5 de Abr. de 2015
BY so far i have a image and i have been able to apply filter on it and sees the cells clearly but what iam stuck is that what should i do after that when i convert to binary and apply the simple algo for counting the white regions doesnt work, since the gray part is there and have strel isnt even working with the disk option clearly i have tried every artifact removal algorithm but nothing is working here, help will be appreciated since i have to count to number of cell in the picture. I have attached the file 1.jpg if original and till 4.jpg i can view them clearly with artifacts and gray ghosts........
k=imread('vf6.tif');
k=imresize(k,[1024/4,1280/4]);
figure
imshow(k)
K = imadjust(k,[0.48 0.7],[0 1]);
K = filter2(fspecial('average',3),K)/255;
figure, imshow(K)
K = wiener2(K,[5 5]);
figure, imshow(K)
K = medfilt2(K);
figure, imshow(K)
% background = imopen(K,strel('disk',8)); % K=K-background; % figure % imshow(k) %end % <<
<<
>>
>>
>>

Respuestas (1)

LUI PAUL
LUI PAUL el 5 de Abr. de 2015
Editada: LUI PAUL el 5 de Abr. de 2015
you can follow this link... image cells

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by