Commit dfc8ab95177dfeb690184d72be17e532eb9e4202
1 parent
91c35ebf
Fixed dependencies
Showing
16 changed files
with
61 additions
and
8 deletions
3rdparty/stasm4.0.0/stasm/include/facedet.h
3rdparty/stasm4.0.0/stasm/include/initasm.h
3rdparty/stasm4.0.0/stasm/include/pinstart.h
3rdparty/stasm4.0.0/stasm/include/shape17.h
3rdparty/stasm4.0.0/stasm/include/shapehacks.h
3rdparty/stasm4.0.0/stasm/include/shapemod.h
3rdparty/stasm4.0.0/stasm/include/startshape.h
3rdparty/stasm4.0.0/stasm/include/stasm_lib.h
| ... | ... | @@ -64,6 +64,9 @@ |
| 64 | 64 | |
| 65 | 65 | #include "stasmcascadeclassifier.h" |
| 66 | 66 | |
| 67 | +#define TRACE_IMAGES 0 // 1 to generate debugging images | |
| 68 | + | |
| 69 | +static const char* const STASM_VERSION = "4.0.0"; | |
| 67 | 70 | static const int stasm_NLANDMARKS = 77; // number of landmarks |
| 68 | 71 | |
| 69 | 72 | extern const char* const stasm_VERSION; | ... | ... |
3rdparty/stasm4.0.0/stasm/src/misc.cpp
3rdparty/stasm4.0.0/stasm/src/pinstart.cpp
3rdparty/stasm4.0.0/stasm/src/print.cpp
3rdparty/stasm4.0.0/stasm/src/shape17.cpp
3rdparty/stasm4.0.0/stasm/src/shapehacks.cpp
3rdparty/stasm4.0.0/stasm/src/shapemod.cpp
3rdparty/stasm4.0.0/stasm/src/startshape.cpp
| ... | ... | @@ -27,7 +27,13 @@ |
| 27 | 27 | // |
| 28 | 28 | // Copyright (C) 2005-2013, Stephen Milborrow |
| 29 | 29 | |
| 30 | -#include "stasm.h" | |
| 30 | +#include "startshape.h" | |
| 31 | +#include "print.h" | |
| 32 | +#include "landmarks.h" | |
| 33 | +#include "stasm_landmarks.h" | |
| 34 | +#include "err.h" | |
| 35 | +#include "faceroi.h" | |
| 36 | +#include "eyedet.h" | |
| 31 | 37 | |
| 32 | 38 | namespace stasm |
| 33 | 39 | { | ... | ... |
3rdparty/stasm4.0.0/stasm/src/stasm_lib.cpp
| ... | ... | @@ -2,7 +2,17 @@ |
| 2 | 2 | // |
| 3 | 3 | // Copyright (C) 2005-2013, Stephen Milborrow |
| 4 | 4 | |
| 5 | -#include "stasm.h" | |
| 5 | +#include "stasm_lib.h" | |
| 6 | +#include "err.h" | |
| 7 | +#include "misc.h" | |
| 8 | +#include "asm.h" | |
| 9 | +#include "print.h" | |
| 10 | +#include "initasm.h" | |
| 11 | +#include "faceroi.h" | |
| 12 | +#include "pinstart.h" | |
| 13 | +#include "convshape.h" | |
| 14 | +#include "facedet.h" | |
| 15 | +#include "startshape.h" | |
| 6 | 16 | |
| 7 | 17 | using namespace stasm; |
| 8 | 18 | ... | ... |