bwconncomp doesn't count correctly

3 ビュー (過去 30 日間)
Eilaf Badr
Eilaf Badr 2018 年 12 月 13 日
回答済み: Rahul punk 2019 年 2 月 15 日
I'm having troubles counting bacterial colonies using bwconncomp function ......as it counts adjecent colonies as one single spot and also count the outer boundaries of the plate holding the bacteria ..... , This is my first time to write full code and I have to handle this project soon so I'm in desperate need of help .
I=imread('2010-07-28-17.06.301.jpg');
imshow(I);
h = imfreehand; %draw something
M = ~h.createMask();
I(M) = 0; % mask out the borders
imshow(I);
dim=size(I);
g=rgb2gray(I);
bw = im2bw(I,0.6);
se=strel('disk',4);
T=imopen(bw,se);
imshow(T);
T=imcomplement(T);
T=flipud(T);
BW_filled = imfill(T,'holes');
TT=imcrop(T); % remove borders
N=imcomplement(TT);
CC = bwconncomp(N,8);
imshow(T);
disp(CC);
original image
90 c.jpg
  2 件のコメント
KSSV
KSSV 2018 年 12 月 13 日
Attach your original image..so that people here can give you better solution.
Image Analyst
Image Analyst 2018 年 12 月 13 日
If you're so desparate to get this done soon, then attach '2010-07-28-17.06.301.jpg'
In the meantime, try this link
Also, are you sure you need to count the number of colonies rather than just the area fraction? What happens if there was so many that about half the dish was covered? There would be no way to identify separate colonies in that case. So I'd just reconned computing the area fraction.

サインインしてコメントする。

回答 (1 件)

Rahul punk
Rahul punk 2019 年 2 月 15 日
use this
https://www.mathworks.com/matlabcentral/fileexchange/70220-rahulpunk?s_tid=prof_contriblnk

カテゴリ

Help Center および File ExchangeParticle Swarm についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by