Counting cells in image

23 ビュー (過去 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 Center および File ExchangeGeometric 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