├── CMakeLists.txt ├── LICENSE ├── README.md ├── data ├── 300w_private.pb ├── 300w_private │ └── 300w_private_6.bin ├── 300w_public.pb ├── 300w_public │ └── 300w_public_6.bin ├── aflw.pb ├── aflw │ └── aflw_6.bin ├── cofw.pb ├── cofw │ └── cofw_6.bin ├── wflw.pb └── wflw │ └── wflw_6.bin ├── include ├── FaceAlignment3dde.hpp ├── GaussianChannelFeatures.hpp ├── HonariChannelFeatures.hpp └── ShapeCascade.hpp ├── src ├── FaceAlignment3dde.cpp ├── GaussianChannelFeatures.cpp └── HonariChannelFeatures.cpp └── test ├── face_alignment_bobetocalo_eccv18_test.cpp └── image_070.jpg /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/README.md -------------------------------------------------------------------------------- /data/300w_private.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/300w_private.pb -------------------------------------------------------------------------------- /data/300w_private/300w_private_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/300w_private/300w_private_6.bin -------------------------------------------------------------------------------- /data/300w_public.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/300w_public.pb -------------------------------------------------------------------------------- /data/300w_public/300w_public_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/300w_public/300w_public_6.bin -------------------------------------------------------------------------------- /data/aflw.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/aflw.pb -------------------------------------------------------------------------------- /data/aflw/aflw_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/aflw/aflw_6.bin -------------------------------------------------------------------------------- /data/cofw.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/cofw.pb -------------------------------------------------------------------------------- /data/cofw/cofw_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/cofw/cofw_6.bin -------------------------------------------------------------------------------- /data/wflw.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/wflw.pb -------------------------------------------------------------------------------- /data/wflw/wflw_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/data/wflw/wflw_6.bin -------------------------------------------------------------------------------- /include/FaceAlignment3dde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/include/FaceAlignment3dde.hpp -------------------------------------------------------------------------------- /include/GaussianChannelFeatures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/include/GaussianChannelFeatures.hpp -------------------------------------------------------------------------------- /include/HonariChannelFeatures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/include/HonariChannelFeatures.hpp -------------------------------------------------------------------------------- /include/ShapeCascade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/include/ShapeCascade.hpp -------------------------------------------------------------------------------- /src/FaceAlignment3dde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/src/FaceAlignment3dde.cpp -------------------------------------------------------------------------------- /src/GaussianChannelFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/src/GaussianChannelFeatures.cpp -------------------------------------------------------------------------------- /src/HonariChannelFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/src/HonariChannelFeatures.cpp -------------------------------------------------------------------------------- /test/face_alignment_bobetocalo_eccv18_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/test/face_alignment_bobetocalo_eccv18_test.cpp -------------------------------------------------------------------------------- /test/image_070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcr-upm/bobetocalo_eccv18/HEAD/test/image_070.jpg --------------------------------------------------------------------------------