1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00

17 lines
462 B
Markdown
Raw Normal View History

2016-05-27 09:42:43 +08:00
facedetect
==========
[facedetect][1] is a simple face detector for batch processing. It answers the
basic question: “Is there a face in this image?” and gives back either an exit
code or the coordinates of each detected face in the standard output.
Quick Start
-----------
```
2016-05-27 10:25:16 +08:00
$ alias facedetect='2>/dev/null docker run --rm -v `pwd`:/work -w /work vimagick/facedetect'
2016-05-27 09:42:43 +08:00
$ facedetect image.png
```
[1]: http://www.thregr.org/~wavexx/software/facedetect/