├── .travis.yml ├── CMakeLists.txt ├── HISTORY.txt ├── README.md ├── android ├── jni │ ├── Android.mk │ ├── Application.mk │ └── DemoFit.cpp └── me │ └── greatyao │ └── AAMFit.java ├── example ├── build.exe ├── cv100.dll ├── cxcore100.dll ├── fit.exe ├── haarcascade_frontalface_alt2.xml ├── highgui100.dll ├── run-build.bat ├── run-fit.bat └── test.jpg ├── exe ├── CMakeLists.txt ├── fit.cpp └── train.cpp ├── msvc ├── AAMLibrary.dsp ├── AAMLibrary.dsw ├── AAMLibrary.sln ├── AAMLibrary.suo ├── AAMLibrary.vcproj ├── aambuilding.dsp ├── aambuilding.vcproj ├── aamfitting.dsp └── aamfitting.vcproj └── src ├── AAM_Basic.cpp ├── AAM_Basic.h ├── AAM_CAM.cpp ├── AAM_CAM.h ├── AAM_IC.cpp ├── AAM_IC.h ├── AAM_MovieAVI.cpp ├── AAM_MovieAVI.h ├── AAM_PAW.cpp ├── AAM_PAW.h ├── AAM_PDM.cpp ├── AAM_PDM.h ├── AAM_Shape.cpp ├── AAM_Shape.h ├── AAM_TDM.cpp ├── AAM_TDM.h ├── AAM_Util.cpp ├── AAM_Util.h ├── CMakeLists.txt ├── Makefile ├── VJfacedetect.cpp └── VJfacedetect.h /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/HISTORY.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/README.md -------------------------------------------------------------------------------- /android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/android/jni/Android.mk -------------------------------------------------------------------------------- /android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/android/jni/Application.mk -------------------------------------------------------------------------------- /android/jni/DemoFit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/android/jni/DemoFit.cpp -------------------------------------------------------------------------------- /android/me/greatyao/AAMFit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/android/me/greatyao/AAMFit.java -------------------------------------------------------------------------------- /example/build.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/build.exe -------------------------------------------------------------------------------- /example/cv100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/cv100.dll -------------------------------------------------------------------------------- /example/cxcore100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/cxcore100.dll -------------------------------------------------------------------------------- /example/fit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/fit.exe -------------------------------------------------------------------------------- /example/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /example/highgui100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/highgui100.dll -------------------------------------------------------------------------------- /example/run-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/run-build.bat -------------------------------------------------------------------------------- /example/run-fit.bat: -------------------------------------------------------------------------------- 1 | fit my.amf haarcascade_frontalface_alt2.xml test.jpg 2 | pause -------------------------------------------------------------------------------- /example/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/example/test.jpg -------------------------------------------------------------------------------- /exe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/exe/CMakeLists.txt -------------------------------------------------------------------------------- /exe/fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/exe/fit.cpp -------------------------------------------------------------------------------- /exe/train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/exe/train.cpp -------------------------------------------------------------------------------- /msvc/AAMLibrary.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/AAMLibrary.dsp -------------------------------------------------------------------------------- /msvc/AAMLibrary.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/AAMLibrary.dsw -------------------------------------------------------------------------------- /msvc/AAMLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/AAMLibrary.sln -------------------------------------------------------------------------------- /msvc/AAMLibrary.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/AAMLibrary.suo -------------------------------------------------------------------------------- /msvc/AAMLibrary.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/AAMLibrary.vcproj -------------------------------------------------------------------------------- /msvc/aambuilding.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/aambuilding.dsp -------------------------------------------------------------------------------- /msvc/aambuilding.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/aambuilding.vcproj -------------------------------------------------------------------------------- /msvc/aamfitting.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/aamfitting.dsp -------------------------------------------------------------------------------- /msvc/aamfitting.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/msvc/aamfitting.vcproj -------------------------------------------------------------------------------- /src/AAM_Basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_Basic.cpp -------------------------------------------------------------------------------- /src/AAM_Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_Basic.h -------------------------------------------------------------------------------- /src/AAM_CAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_CAM.cpp -------------------------------------------------------------------------------- /src/AAM_CAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_CAM.h -------------------------------------------------------------------------------- /src/AAM_IC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_IC.cpp -------------------------------------------------------------------------------- /src/AAM_IC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_IC.h -------------------------------------------------------------------------------- /src/AAM_MovieAVI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_MovieAVI.cpp -------------------------------------------------------------------------------- /src/AAM_MovieAVI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_MovieAVI.h -------------------------------------------------------------------------------- /src/AAM_PAW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_PAW.cpp -------------------------------------------------------------------------------- /src/AAM_PAW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_PAW.h -------------------------------------------------------------------------------- /src/AAM_PDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_PDM.cpp -------------------------------------------------------------------------------- /src/AAM_PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_PDM.h -------------------------------------------------------------------------------- /src/AAM_Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_Shape.cpp -------------------------------------------------------------------------------- /src/AAM_Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_Shape.h -------------------------------------------------------------------------------- /src/AAM_TDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_TDM.cpp -------------------------------------------------------------------------------- /src/AAM_TDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_TDM.h -------------------------------------------------------------------------------- /src/AAM_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_Util.cpp -------------------------------------------------------------------------------- /src/AAM_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/AAM_Util.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/VJfacedetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/VJfacedetect.cpp -------------------------------------------------------------------------------- /src/VJfacedetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatyao/aamlibrary/HEAD/src/VJfacedetect.h --------------------------------------------------------------------------------