Counting bounding boxes inside ROI
Mostrar comentarios más antiguos
Hi all, I am currently working on a project on vehicle detection. One of my goal of this project is to count the number of car inside ROI such a lane. the method I think of is to using the centroid of the bounding box to see if it is inside the ROI. but I haven't got a clue on how to start. Since the ROI is a polygon and the centroid is a x,y coordinate, how to know if it has leave the ROI?
Respuesta aceptada
Más respuestas (2)
Joseph Cheng
el 21 de Mzo. de 2014
0 votos
There are many ways to do this but it depends on how you are defining or receiving the ROI. Is the ROI defined by its corners such that you get 3+ (x,y) points and anything within the triangle to polygon is the ROI? If so it is like if i give you 3+ "y=mx+b" lines and ask if the point is above or below each line. If the ROI is just a mask of zeros and ones then you can just check the (x,y) location in the mask.
2 comentarios
Yin Lok
el 23 de Mzo. de 2014
Joseph Cheng
el 24 de Mzo. de 2014
Sorry for the late reply, I've been thinking about it more and using the information in your latest comment, you can use the binary mask to get rid of the image outside of your ROI. Then if you are doing anything like the bottom example in the link Image Analyst supplied, you can probably put a minimum size threshold for the vehicle size and remove that tracked vehicle as it leaves the ROI.
vaishali masal
el 29 de Oct. de 2016
0 votos
I am doing project of vehicle-number-plate-recognition. the whole i got http://in.mathworks.com/matlabcentral/fileexchange/40426-vehicle-number-plate-recognition on this link. but that code is valid only for 6 characters. But in India vehicles have 10 characters numbers for eg: TN32 BZ 7701 Can you please tell me how i should modify above code. mail id: masal.vaishali18@gmail.com
1 comentario
Image Analyst
el 29 de Oct. de 2016
You posted this as an answer to Yin's question mistakenly. This is not an answer to Yin's question. You should post this as your own question.
Categorías
Más información sobre Computer Vision with Simulink en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!