How to use matlab to count these particles?
Mostra commenti meno recenti
So I have some neurospheres in a dish.

After I take these images, I run them through imagej. I sharpen the picture, "despeckle" the image, add a guassian blur, and then find the edges of the image. The end result of that process looks like this:

After this process, I take the image and run it through matlab's thresholding. The image then looks like:

Now I'd like to use some surface mapping and create peaks and valleys and count my neurospheres. The process I want to do is similar to the process found here.
I'd like to be able to count my neurospheres, come up with an area for each one, and then also have a diameter, and be able to discriminate each sphere by a minimum size diameter.
Would anyone be able to help?
Thanks,
Tushar The Ohio State University
2 Commenti
Bani Antonio Aguirre
il 27 Giu 2022
can you share your code for thresholding?
Image Analyst
il 27 Giu 2022
@Bani Antonio Aguirre here is mine for interactive thresholding:
I'm also attaching a triangle threshold which is good for skewed histograms.
Risposta accettata
Più risposte (1)
Hi Tushar
1.- Acquiring petri image, using green layer only, manually binarising the whole image.
Play with threshold th1
clear all;clc;close all
A=imread('blood_cells_count.jpg');
% A2=A(:,:,1)+A(:,:,2)+A(:,:,3); % a bit more contrast
A2=A(:,:,2); % since green marker used no need for red blue layers
th1=190;
A2(A2>th1)=255;
A2(A2<th1)=0;
figure(1);imshow(A);

figure(2);imshow(A2);

.
2.- Filling up holes in binarised cells
A20=~A2;
area_threshold=6;
A21 = bwareaopen(A20,area_threshold);
figure(10);imshow(A21);
A22=imfill(A21, 'holes');
figure(11); imshow(A22);

.
3.- It may not be really needed, but just in case, filling up and plotting cell contours
[B,L] = bwboundaries(A22,'noholes');
map=zeros(length(B),3);cmap=colormap(map);
figure(12);imshow(label2rgb(L,cmap, [.5 .5 .5]))
hold on
for k = 1:length(B)
boundary = B{k};
plot(boundary(:,2), boundary(:,1), 'r', 'LineWidth', 1)
end
.

.
4.- The asked cells count is:
length(B)
ans =
398
.
5.- Add a halo around each binarised blood cell, neurons are hairy aren't they?
PSF = fspecial('gaussian',5,5);
A3 = deconvlucy(uint8(255*(~A21)),PSF,5);
figure(3);imshow(A3);

.
Comment:
using area threshold may remove a few small cells. Sample arrowed small specks are removed but the circled small cell is also removed.
Perhaps next step would be to consider removing small AND no green marker (dark only) specks.

.
if you find this answer useful would you please be so kind to consider marking my answer as Accepted Answer?
To any other reader, if you find this answer useful please consider clicking on the thumbs-up vote link
thanks in advance
John BG
3 Commenti
tgohsu
il 1 Ott 2017
Image Analyst
il 1 Ott 2017
Tushar, I already gave you the code for that in my answer.
John BG
il 1 Ott 2017
Tushar
the last image with the arrows and the circled cell is BEFORE removing the specs.
In the resulting image, black cells with red skin, the specks have already been removed.
Or in the resulting image with halos around cells, there are no small specs, they were removed.
The image was just a closing comment.
The next steps would be, from :
- number the cells
- measure the area of each cell using each boundary B{k}
- colour the cells according respective areas
Categorie
Scopri di più su ROI-Based Processing in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

