Black & white image segmententation and automatic counting

2 visualizaciones (últimos 30 días)
Ali Noun
Ali Noun el 16 de Mzo. de 2019
Comentada: Ali Noun el 16 de Mzo. de 2019
Hello,
I'm new to MATLAB and wondering if i can do a special automated image analysis as below:
  • Detect white points on image
  • Count all points
  • Measure points
  • Divide the frame by lines and detect if the line cross the abovementioned points
Please respond if it is possible with some hints if so.
Thank you

Respuestas (1)

Soya AOKI
Soya AOKI el 16 de Mzo. de 2019
Editada: Soya AOKI el 16 de Mzo. de 2019
Hi
(1) Detect, Count and Measure points
if all points are circular, Find circles using circular Hough transform is useful I think.
(2) Detect if the line cross points
Circular detection returns center(x,y) and radius R. So you can detect if the line cross points by following code I think.
if ((center_y + radius) is above line & (center_y - radius) is under line)
cross_flg = true
else
cross_flg = false
end
thanks
  5 comentarios
Soya AOKI
Soya AOKI el 16 de Mzo. de 2019
Editada: Soya AOKI el 16 de Mzo. de 2019
Thanks for your info.
(1) Detect, Count and Measure points
For all shape, you could count and measure location and area by these method.
(2) Detect if the line cross points
You can get binary image like this. 1 means white(points) and 0 means black(not points).
0 0 0 0 1 1 1 1 0 0 0 0 0
0 0 0 1 1 1 1 1 1 0 0 0 0
Line → 0 0 1 1 1 1 1 1 1 1 0 0 0
0 0 0 1 1 1 1 1 1 0 0 0 0
0 0 0 0 1 1 1 1 0 0 0 0 0
"1 (points) exists on line area" means "the line cross points". so you can detect if the line cross points by checking if there is 1 on line area I think.
And difference of neighboor pix on the line is following.
0 -1 0 0 0 0 0 0 0 1 0 0
Maybe you can count points crossing line by counting 1 or -1 in the difference.
Or if line is shown as red on image (like your image), you could detect if the line cross points by R component of the original image.
(Please excuse me for little bit confusing explanation.)
Thanks.

Iniciar sesión para comentar.

Categorías

Más información sobre Computer Vision with Simulink en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by