├── README.md ├── bin ├── combine_face_test_image_list.txt ├── combined_face_train_image_list.txt ├── model │ ├── shear-1-1.txt │ ├── shear-1-2.txt │ ├── shear-1-3.txt │ ├── shear-1-4.txt │ ├── shear-1-5.txt │ ├── shear-1-6.txt │ ├── shear-2-1.txt │ ├── shear-2-2.txt │ ├── shear-2-3.txt │ ├── shear-2-4.txt │ ├── shear-2-5.txt │ ├── shear-2-6.txt │ ├── shear-3-1.txt │ ├── shear-3-2.txt │ ├── shear-3-3.txt │ ├── shear-3-4.txt │ ├── shear-3-5.txt │ ├── shear-3-6.txt │ ├── shear-4-1.txt │ ├── shear-4-2.txt │ ├── shear-4-3.txt │ ├── shear-4-4.txt │ ├── shear-4-5.txt │ └── shear-4-6.txt ├── note.txt ├── nuaa_test_image_list.txt ├── nuaa_test_image_list_shuffle.txt ├── nuaa_train_image_list.txt ├── nuaa_train_image_list_shuffle.txt ├── test_image_list.txt ├── train_image_list.txt ├── yuv_test_image_list.txt └── yuv_train_image_list.txt ├── papers └── src ├── Data.cpp ├── Data.hpp ├── ELBP.cpp ├── ELBP.hpp ├── FFT_DOG.cpp ├── FFT_DOG.hpp ├── LBP.cpp ├── LBP.hpp ├── Makefile ├── Makefile_(backup) ├── OFM.cpp ├── OFM.hpp ├── ProgressBar.hpp ├── QualityChecker.cpp ├── RawLBP.cpp ├── RawLBP.hpp ├── ShearletUtil ├── 1_1.txt ├── 1_2.txt ├── 1_3.txt ├── 1_4.txt ├── 1_5.txt ├── 1_6.txt ├── 2_1.txt ├── 2_2.txt ├── 2_3.txt ├── 2_4.txt ├── 2_5.txt ├── 2_6.txt ├── 3_1.txt ├── 3_2.txt ├── 3_3.txt ├── 3_4.txt ├── 3_5.txt ├── 3_6.txt ├── 4_1.txt ├── 4_2.txt ├── 4_3.txt ├── 4_4.txt ├── 4_5.txt ├── 4_6.txt ├── driver.cpp ├── driver.cpp~ ├── helper.cpp ├── helper.hpp ├── shear.cpp └── shear.hpp ├── SingleChannelDOG.cpp ├── SingleChannelDOG.hpp ├── Util.cpp ├── Util.hpp ├── brisque.cpp ├── brisque.hpp ├── combinedLBP.cpp ├── combinedLBP.hpp ├── extractQualityFeature.cpp ├── extractQualityFeature.hpp ├── integration.cpp ├── integration.hpp ├── lbpExtraction.cpp ├── lbpExtraction.hpp ├── lbp_hist.cpp ├── lbp_hist.hpp ├── obj └── note.txt └── python ├── MLP ├── Data_Preperation.py ├── MLP.py ├── inference.py └── main.py ├── Util.py ├── autoencoder ├── Data_Preperation.py ├── autoencoder.py └── main.py └── prepare_data.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/README.md -------------------------------------------------------------------------------- /bin/combine_face_test_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/combine_face_test_image_list.txt -------------------------------------------------------------------------------- /bin/combined_face_train_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/combined_face_train_image_list.txt -------------------------------------------------------------------------------- /bin/model/shear-1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-1-1.txt -------------------------------------------------------------------------------- /bin/model/shear-1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-1-2.txt -------------------------------------------------------------------------------- /bin/model/shear-1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-1-3.txt -------------------------------------------------------------------------------- /bin/model/shear-1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-1-4.txt -------------------------------------------------------------------------------- /bin/model/shear-1-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-1-5.txt -------------------------------------------------------------------------------- /bin/model/shear-1-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-1-6.txt -------------------------------------------------------------------------------- /bin/model/shear-2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-2-1.txt -------------------------------------------------------------------------------- /bin/model/shear-2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-2-2.txt -------------------------------------------------------------------------------- /bin/model/shear-2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-2-3.txt -------------------------------------------------------------------------------- /bin/model/shear-2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-2-4.txt -------------------------------------------------------------------------------- /bin/model/shear-2-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-2-5.txt -------------------------------------------------------------------------------- /bin/model/shear-2-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-2-6.txt -------------------------------------------------------------------------------- /bin/model/shear-3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-3-1.txt -------------------------------------------------------------------------------- /bin/model/shear-3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-3-2.txt -------------------------------------------------------------------------------- /bin/model/shear-3-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-3-3.txt -------------------------------------------------------------------------------- /bin/model/shear-3-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-3-4.txt -------------------------------------------------------------------------------- /bin/model/shear-3-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-3-5.txt -------------------------------------------------------------------------------- /bin/model/shear-3-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-3-6.txt -------------------------------------------------------------------------------- /bin/model/shear-4-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-4-1.txt -------------------------------------------------------------------------------- /bin/model/shear-4-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-4-2.txt -------------------------------------------------------------------------------- /bin/model/shear-4-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-4-3.txt -------------------------------------------------------------------------------- /bin/model/shear-4-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-4-4.txt -------------------------------------------------------------------------------- /bin/model/shear-4-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-4-5.txt -------------------------------------------------------------------------------- /bin/model/shear-4-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/model/shear-4-6.txt -------------------------------------------------------------------------------- /bin/note.txt: -------------------------------------------------------------------------------- 1 | A placeholder to push a empty diretory. 2 | -------------------------------------------------------------------------------- /bin/nuaa_test_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/nuaa_test_image_list.txt -------------------------------------------------------------------------------- /bin/nuaa_test_image_list_shuffle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/nuaa_test_image_list_shuffle.txt -------------------------------------------------------------------------------- /bin/nuaa_train_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/nuaa_train_image_list.txt -------------------------------------------------------------------------------- /bin/nuaa_train_image_list_shuffle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/nuaa_train_image_list_shuffle.txt -------------------------------------------------------------------------------- /bin/test_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/test_image_list.txt -------------------------------------------------------------------------------- /bin/train_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/train_image_list.txt -------------------------------------------------------------------------------- /bin/yuv_test_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/yuv_test_image_list.txt -------------------------------------------------------------------------------- /bin/yuv_train_image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/bin/yuv_train_image_list.txt -------------------------------------------------------------------------------- /papers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/papers -------------------------------------------------------------------------------- /src/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/Data.cpp -------------------------------------------------------------------------------- /src/Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/Data.hpp -------------------------------------------------------------------------------- /src/ELBP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ELBP.cpp -------------------------------------------------------------------------------- /src/ELBP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ELBP.hpp -------------------------------------------------------------------------------- /src/FFT_DOG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/FFT_DOG.cpp -------------------------------------------------------------------------------- /src/FFT_DOG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/FFT_DOG.hpp -------------------------------------------------------------------------------- /src/LBP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/LBP.cpp -------------------------------------------------------------------------------- /src/LBP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/LBP.hpp -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile_(backup): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/Makefile_(backup) -------------------------------------------------------------------------------- /src/OFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/OFM.cpp -------------------------------------------------------------------------------- /src/OFM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/OFM.hpp -------------------------------------------------------------------------------- /src/ProgressBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ProgressBar.hpp -------------------------------------------------------------------------------- /src/QualityChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/QualityChecker.cpp -------------------------------------------------------------------------------- /src/RawLBP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/RawLBP.cpp -------------------------------------------------------------------------------- /src/RawLBP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/RawLBP.hpp -------------------------------------------------------------------------------- /src/ShearletUtil/1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/1_1.txt -------------------------------------------------------------------------------- /src/ShearletUtil/1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/1_2.txt -------------------------------------------------------------------------------- /src/ShearletUtil/1_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/1_3.txt -------------------------------------------------------------------------------- /src/ShearletUtil/1_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/1_4.txt -------------------------------------------------------------------------------- /src/ShearletUtil/1_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/1_5.txt -------------------------------------------------------------------------------- /src/ShearletUtil/1_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/1_6.txt -------------------------------------------------------------------------------- /src/ShearletUtil/2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/2_1.txt -------------------------------------------------------------------------------- /src/ShearletUtil/2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/2_2.txt -------------------------------------------------------------------------------- /src/ShearletUtil/2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/2_3.txt -------------------------------------------------------------------------------- /src/ShearletUtil/2_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/2_4.txt -------------------------------------------------------------------------------- /src/ShearletUtil/2_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/2_5.txt -------------------------------------------------------------------------------- /src/ShearletUtil/2_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/2_6.txt -------------------------------------------------------------------------------- /src/ShearletUtil/3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/3_1.txt -------------------------------------------------------------------------------- /src/ShearletUtil/3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/3_2.txt -------------------------------------------------------------------------------- /src/ShearletUtil/3_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/3_3.txt -------------------------------------------------------------------------------- /src/ShearletUtil/3_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/3_4.txt -------------------------------------------------------------------------------- /src/ShearletUtil/3_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/3_5.txt -------------------------------------------------------------------------------- /src/ShearletUtil/3_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/3_6.txt -------------------------------------------------------------------------------- /src/ShearletUtil/4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/4_1.txt -------------------------------------------------------------------------------- /src/ShearletUtil/4_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/4_2.txt -------------------------------------------------------------------------------- /src/ShearletUtil/4_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/4_3.txt -------------------------------------------------------------------------------- /src/ShearletUtil/4_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/4_4.txt -------------------------------------------------------------------------------- /src/ShearletUtil/4_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/4_5.txt -------------------------------------------------------------------------------- /src/ShearletUtil/4_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/4_6.txt -------------------------------------------------------------------------------- /src/ShearletUtil/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/driver.cpp -------------------------------------------------------------------------------- /src/ShearletUtil/driver.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/driver.cpp~ -------------------------------------------------------------------------------- /src/ShearletUtil/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/helper.cpp -------------------------------------------------------------------------------- /src/ShearletUtil/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/helper.hpp -------------------------------------------------------------------------------- /src/ShearletUtil/shear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/shear.cpp -------------------------------------------------------------------------------- /src/ShearletUtil/shear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/ShearletUtil/shear.hpp -------------------------------------------------------------------------------- /src/SingleChannelDOG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/SingleChannelDOG.cpp -------------------------------------------------------------------------------- /src/SingleChannelDOG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/SingleChannelDOG.hpp -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/Util.hpp -------------------------------------------------------------------------------- /src/brisque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/brisque.cpp -------------------------------------------------------------------------------- /src/brisque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/brisque.hpp -------------------------------------------------------------------------------- /src/combinedLBP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/combinedLBP.cpp -------------------------------------------------------------------------------- /src/combinedLBP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/combinedLBP.hpp -------------------------------------------------------------------------------- /src/extractQualityFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/extractQualityFeature.cpp -------------------------------------------------------------------------------- /src/extractQualityFeature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/extractQualityFeature.hpp -------------------------------------------------------------------------------- /src/integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/integration.cpp -------------------------------------------------------------------------------- /src/integration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/integration.hpp -------------------------------------------------------------------------------- /src/lbpExtraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/lbpExtraction.cpp -------------------------------------------------------------------------------- /src/lbpExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/lbpExtraction.hpp -------------------------------------------------------------------------------- /src/lbp_hist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/lbp_hist.cpp -------------------------------------------------------------------------------- /src/lbp_hist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/lbp_hist.hpp -------------------------------------------------------------------------------- /src/obj/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/obj/note.txt -------------------------------------------------------------------------------- /src/python/MLP/Data_Preperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/MLP/Data_Preperation.py -------------------------------------------------------------------------------- /src/python/MLP/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/MLP/MLP.py -------------------------------------------------------------------------------- /src/python/MLP/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/MLP/inference.py -------------------------------------------------------------------------------- /src/python/MLP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/MLP/main.py -------------------------------------------------------------------------------- /src/python/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/Util.py -------------------------------------------------------------------------------- /src/python/autoencoder/Data_Preperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/autoencoder/Data_Preperation.py -------------------------------------------------------------------------------- /src/python/autoencoder/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/autoencoder/autoencoder.py -------------------------------------------------------------------------------- /src/python/autoencoder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/autoencoder/main.py -------------------------------------------------------------------------------- /src/python/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gc535/LivenessDectectionForFaceSpoofingAttack/HEAD/src/python/prepare_data.py --------------------------------------------------------------------------------