Ask Your Question
0

how to detect face occluded image??

asked 2014-08-25 01:49:06 -0600

Nalina gravatar image

I want to detect helmet, mask if the person wears in security places like ATM etc. Can anyone help me for this problem.

edit retag flag offensive close merge delete

2 answers

Sort by ยป oldest newest most voted
2

answered 2014-08-26 07:24:26 -0600

I wouldn't try to detect the different features of all types of hoods. What I would do is following these steps:

  1. Use a robust person detection algorithm. The latentSVM detector of Felzenszwalb or the Integral Channel detector of Dollar would probably do best here. A simpler approach could be the HOG+SVM combination suggested by Dallal and Triggs.
  2. Once a person is found, apply a face detector, preferably the Viola and Jones face detection.
  3. If a detection for a face is found, make sure that it is located in a correct region, so the upper part of the person detection.
  4. If no face is detected, raise an alarm, because this probably means someone is hiding its identity.

Since Viola and Jones is quite influenced by masking and stuff, it will fail quickly if no actual face features are present.

edit flag offensive delete link more
0

answered 2014-08-26 02:50:20 -0600

ej gravatar image

I think the problem you give here is very broad and you need to start by narrowing it to some small problems. For example, are you talking about images or live video?

To find some known object in image you can try to implement some kind of features matching algorithm. The main idea is: - Extract useful features from images of people with helmet/mask - Learn what are the main features unique to person with helmet/mask - Find the same features in new image

Have a look at the feature2d and objdetect modules tutorials, there is a lot of information about features there.

edit flag offensive delete link more

Comments

The downside to feature matching is that the range of possibilities is endless and thus it will take way to long to process a single image. I wouldn't suggest such an approach.

StevenPuttemans gravatar imageStevenPuttemans ( 2014-08-26 07:25:22 -0600 )edit

Question Tools

Stats

Asked: 2014-08-25 01:49:06 -0600

Seen: 1,273 times

Last updated: Aug 26 '14