Borrar filtros
Borrar filtros

Counting white areas in30 video frames (30 frames). For example I have 30 binary images and just there are 5 images contain on white area in center and other images are black.

2 visualizaciones (últimos 30 días)
how can I write code to count white areas (5 white areas in center) from 30 frames images. I need to make video to count these white areas.

Respuesta aceptada

Image Analyst
Image Analyst el 2 de En. de 2015
Editada: Image Analyst el 2 de En. de 2015
See my attached demo. It should be easy for you to adapt it. Let me know if you can't. If you can't attach the video or at least a frame from it.
  3 comentarios
Image Analyst
Image Analyst el 3 de En. de 2015
I gave the answer for this in the duplicate/parallel thread you started (for some reason) for it. http://www.mathworks.com/matlabcentral/answers/168762#answer_163877 Please decide which thread you want to continue the discussion in and let me know. I can delete the unwanted dupliate.

Iniciar sesión para comentar.

Más respuestas (1)

Montree
Montree el 2 de En. de 2015
I assume, you have binary image and object is the white and in each image contain 1 object only.
...
SM = sum(sum(bwimage)); %bwimage is your binary image
if(SM>0)
AREA(m) = bwarea(bwimage);
end
.... end process, go to next loop.....
Now you have all area data of all image contain in 'AREA' variable.

Categorías

Más información sobre Image Processing Toolbox 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