Will decreasing the video dimension will reduce the resolution? [closed]

asked 2015-12-16 02:54:06 -0600

Aj-611 gravatar image

In order to speed up face detection process, some will reduce the video or image dimension. Will it makes the resolution become worst and effect the face recognition process?

edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by sturkmen
close date 2020-11-02 10:09:41.073238

Comments

4

the face cascades were trained on 24x24 pixel images, so that is the minimal size you can detect in your video.

berak gravatar imageberak ( 2015-12-16 03:17:06 -0600 )edit
4

So complementing @berak's comment, the answer is "it depends". Suppose you have an original 800x600 video, where the smallest possible face is of size 80x80. If you re-size the video to 400x300, the smallest face size will become 40x40. As face cascades detect 24x24 faces, there is no problem, and you will speed up execution. If you resize the video to 200x150, minimum face size is 20x20, and those smallest faces won't be detected

LorenaGdL gravatar imageLorenaGdL ( 2015-12-16 03:26:23 -0600 )edit