Ask Your Question
3

How could I detect if someone wear a helmet?

asked 2012-08-27 04:52:59 -0600

this post is marked as community wiki

This post is a wiki. Anyone with karma >50 is welcome to improve it.

Hello everyone:

We want to detect if the people wear a helmet on a video sequence,

as the attached image shown. But it looks there is not a good solution for this.

Could anyone give me some suggestion?

Thanks Yanbin Yue

image description

edit retag flag offensive close merge delete

Comments

1

You can throw a stone and detect the face reaction using an emotion detection algorithm. Those without helmet should have a strong emotional response.

sammy gravatar imagesammy ( 2012-08-27 06:52:55 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
2

answered 2012-08-27 06:31:31 -0600

this post is marked as community wiki

This post is a wiki. Anyone with karma >50 is welcome to improve it.

That's not an easy task.

First of all you want to detect an object that (as shown in figure) hasn't much texture. Detecting such objects is somewhat hard for the current state-of-art object detections method such as SIFT etc.

If your helemts all have distinctive colors (yellow can be good) I suggest you can do soemthing like this:

  • Detect the face in the video (you can achive this easly with opencv cascadeclassifier, google it).
  • After having detect the face compute a color histogram on a ROI just up the detected face to see if match the color of helemts you are looking for.
edit flag offensive delete link more

Comments

1

If the person is close to the camera and the helmet has a distinct color like in your example image i think you can skip the face detection step described above and do just the color detection. Otherwise if the person is far from the camera and there are even multiple persons within the image, doing the face detection and the color detection is a good approach.

Rui Marques gravatar imageRui Marques ( 2012-08-27 12:38:48 -0600 )edit

@Rui: I agree with you Rui

yes123 gravatar imageyes123 ( 2012-08-27 18:37:20 -0600 )edit

Thanks for your answers. We have talked about this solution several days. We think this solution may not be very perfect, because we need solve some other problem in this solution, such as the hsv value of the same color would have much difference in different light intensity, and so on. So we thought that we need some more measures combine with face detect to decide the detect result.

Yue Yanbin gravatar imageYue Yanbin ( 2012-09-05 02:02:11 -0600 )edit

Question Tools

Stats

Asked: 2012-08-27 04:52:59 -0600

Seen: 3,045 times

Last updated: Sep 27 '12