how to detect some difficult circles and count them
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i'm trying to count some colonies of bacterias and this is the result i got till now, i'm having problem at detecting them properly, i tried imfindcircles, but the range i pass detect a lot of false positives, can someone help me?
the code is:
clear variables;
close all;
warning off;
img = imread('colonies21.jpg');
imgcinza = rgb2gray(img);
equalized = adapthisteq(imgcinza);
limiar = graythresh(equalized);
imbin = imbinarize(equalized,limiar);
filled = imfill(~imbin,'holes');
imgjunta = (double(img)./255) .* filled;
imgjuntabin = rgb2gray(imgjunta) > 0.4;
imshow(imgjuntabin);

0 commentaires
Réponses (1)
Selva Karna
le 13 Oct 2020
Option 1:
* Change threshold level
Option 2:
* Use dialtion & Erotion Operration
Voir également
Catégories
En savoir plus sur Particle Swarm dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!