Counting cells in image

2 次查看(过去 30 天)
Sara Hafeez
Sara Hafeez 2015-4-5
编辑: LUI PAUL 2015-4-5
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 % <<
<<
>>
>>
>>

回答(1 个)

LUI PAUL
LUI PAUL 2015-4-5
编辑:LUI PAUL 2015-4-5
you can follow this link... image cells

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by