Borrar filtros
Borrar filtros

how to count number of cars,bikes in an image using matlab

5 visualizaciones (últimos 30 días)
ravi
ravi el 23 de Ag. de 2013
Comentada: NAGESWARARAO NAIK el 3 de Mzo. de 2020
hi this ravi,
currently i am working on the project to count number of cars and bikes in an image using matlab. I have done it by finding area of the vehicle but it is not applicable for all images. So any one please help me.
input is the image that has vehicles like cars,bikes.
output must be number of cars and number of bikes in input image
thanks in advance

Respuestas (2)

Image Analyst
Image Analyst el 23 de Ag. de 2013
This is far too challenging a project to be answered in a forum such as this. With different angles of view of the bicycle, with partial or total occlusions by cars, poles, people, etc., with bicycles entering and leaving the field of view, and with different configurations of bicycles (cruiser, racing, tricycle, with and without racks or trailers, etc.), this could be a Ph.D. project. What if all you see if half of the front tire sticking in from the edge of the image, or all you see is the bicyclists head and handlebars sticking above a car or wall? Good luck with it though.
  2 comentarios
ravi
ravi el 23 de Ag. de 2013
Editada: ravi el 23 de Ag. de 2013
Tell me is there any methods to identify the car or bike in an image and to draw the rectangle over that car or bike for finding the area of the car or bike.
thanks in advance
Image Analyst
Image Analyst el 23 de Ag. de 2013
Well it sounds like you've already seen the car detection and tracking capability of the Computer Vision System Toolbox on this page. If that is not robust and accurate enough for you then you will need to embark on a comprehensive improvement of it. Of course this will be tens of thousands of lines of code - far too much to consult with you on here in the Answers forum. I also assume you've gone over the papers published on this topic here in the tracking section of Vision Bib. Those are people who have devoted a good amount of time to solving problems like yours. If you can't find, or adapt, an algorithm from there, then perhaps you can hire one of those groups to develop the application for you.

Iniciar sesión para comentar.


Anand
Anand el 23 de Ag. de 2013
Here's an approach you could try:
1. Use the trainCascadeObjectDetector on a set of labelled training data to train a detector that can detect cars. Do the same for bikes. Use <http://www.mathworks.com/help/vision/ug/train-a-cascade-object-detector.html> page as a guide to help training your detectors.
2. Once you've trained the two detectors, use the vision.cascadeObjectDetector to detect cars and bikes in the image. This will give you bounding boxes at expected locations of the cars and bikes.
Note that like Image Analyst mentioned, this is an involved problem and will need a lot of work beyond blindly following this approach.
Good luck!
  5 comentarios
Image Analyst
Image Analyst el 13 de Oct. de 2013
Code is probably given in the examples/demos that come with the Computer Vision System Toolbox: http://www.mathworks.com/products/computer-vision/description5.html
NAGESWARARAO NAIK
NAGESWARARAO NAIK el 3 de Mzo. de 2020
Thanks for your response, here they used boxLabeling, but i need to use pixelLabel to train.

Iniciar sesión para comentar.

Categorías

Más información sobre Computer Vision 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