├── .gitignore ├── CMakeLists.txt ├── README.md ├── include ├── FaceTracker.h ├── MayaSocket.h ├── Socket.h ├── TrackingData.h └── data │ ├── Lord_Voldemort.mtl │ ├── Lord_Voldemort.obj │ ├── Voldemort_clothes_AO.dds │ ├── Voldemort_clothes_D.dds │ ├── Voldemort_clothes_N.dds │ ├── Voldemort_clothes_S.dds │ ├── Voldemort_eye_D.dds │ ├── Voldemort_eye_N.dds │ ├── Voldemort_eyelash_D.dds │ ├── Voldemort_hands_AO.dds │ ├── Voldemort_hands_D.dds │ ├── Voldemort_hands_N.dds │ ├── Voldemort_hands_S.dds │ ├── Voldemort_head_AO.dds │ ├── Voldemort_head_D.dds │ ├── Voldemort_head_N.dds │ ├── Voldemort_head_S.dds │ ├── Voldemort_lacrimal_D.dds │ ├── Voldemort_lacrimal_N.dds │ ├── Voldemort_mouth_D.dds │ ├── Voldemort_mouth_N.dds │ ├── Voldemort_mouth_S.dds │ ├── Volemort_rigged.mb │ ├── generic_AO.dds │ ├── generic_N.dds │ ├── generic_S.dds │ ├── haarcascade_frontalface_alt.xml │ └── magic_wand_D.dds ├── rigreference.jpg ├── src ├── FaceTracker.cpp ├── FaceTracker.mel ├── MayaSocket.cpp ├── Socket.cpp └── main.cpp └── voldemort.gif /.gitignore: -------------------------------------------------------------------------------- 1 | [Bb]in/ 2 | [Bb]uild/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/README.md -------------------------------------------------------------------------------- /include/FaceTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/FaceTracker.h -------------------------------------------------------------------------------- /include/MayaSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/MayaSocket.h -------------------------------------------------------------------------------- /include/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/Socket.h -------------------------------------------------------------------------------- /include/TrackingData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/TrackingData.h -------------------------------------------------------------------------------- /include/data/Lord_Voldemort.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Lord_Voldemort.mtl -------------------------------------------------------------------------------- /include/data/Lord_Voldemort.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Lord_Voldemort.obj -------------------------------------------------------------------------------- /include/data/Voldemort_clothes_AO.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_clothes_AO.dds -------------------------------------------------------------------------------- /include/data/Voldemort_clothes_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_clothes_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_clothes_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_clothes_N.dds -------------------------------------------------------------------------------- /include/data/Voldemort_clothes_S.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_clothes_S.dds -------------------------------------------------------------------------------- /include/data/Voldemort_eye_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_eye_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_eye_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_eye_N.dds -------------------------------------------------------------------------------- /include/data/Voldemort_eyelash_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_eyelash_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_hands_AO.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_hands_AO.dds -------------------------------------------------------------------------------- /include/data/Voldemort_hands_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_hands_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_hands_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_hands_N.dds -------------------------------------------------------------------------------- /include/data/Voldemort_hands_S.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_hands_S.dds -------------------------------------------------------------------------------- /include/data/Voldemort_head_AO.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_head_AO.dds -------------------------------------------------------------------------------- /include/data/Voldemort_head_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_head_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_head_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_head_N.dds -------------------------------------------------------------------------------- /include/data/Voldemort_head_S.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_head_S.dds -------------------------------------------------------------------------------- /include/data/Voldemort_lacrimal_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_lacrimal_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_lacrimal_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_lacrimal_N.dds -------------------------------------------------------------------------------- /include/data/Voldemort_mouth_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_mouth_D.dds -------------------------------------------------------------------------------- /include/data/Voldemort_mouth_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_mouth_N.dds -------------------------------------------------------------------------------- /include/data/Voldemort_mouth_S.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Voldemort_mouth_S.dds -------------------------------------------------------------------------------- /include/data/Volemort_rigged.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/Volemort_rigged.mb -------------------------------------------------------------------------------- /include/data/generic_AO.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/generic_AO.dds -------------------------------------------------------------------------------- /include/data/generic_N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/generic_N.dds -------------------------------------------------------------------------------- /include/data/generic_S.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/generic_S.dds -------------------------------------------------------------------------------- /include/data/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /include/data/magic_wand_D.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/include/data/magic_wand_D.dds -------------------------------------------------------------------------------- /rigreference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/rigreference.jpg -------------------------------------------------------------------------------- /src/FaceTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/src/FaceTracker.cpp -------------------------------------------------------------------------------- /src/FaceTracker.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/src/FaceTracker.mel -------------------------------------------------------------------------------- /src/MayaSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/src/MayaSocket.cpp -------------------------------------------------------------------------------- /src/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/src/Socket.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/src/main.cpp -------------------------------------------------------------------------------- /voldemort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwestberg/Face-Tracking-Maya/HEAD/voldemort.gif --------------------------------------------------------------------------------