├── CMakeLists.txt ├── README.md ├── docs └── finalprojectReport.pdf ├── handCommonFunctions.hpp ├── handDetectionExample.cpp ├── handLandmarkDetectionExample.cpp ├── handLandmarkTrainer.cpp ├── handTrainer.cpp └── models ├── HandDetector.svm └── Hand_9_Landmarks_Detector.dat /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/README.md -------------------------------------------------------------------------------- /docs/finalprojectReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/docs/finalprojectReport.pdf -------------------------------------------------------------------------------- /handCommonFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/handCommonFunctions.hpp -------------------------------------------------------------------------------- /handDetectionExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/handDetectionExample.cpp -------------------------------------------------------------------------------- /handLandmarkDetectionExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/handLandmarkDetectionExample.cpp -------------------------------------------------------------------------------- /handLandmarkTrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/handLandmarkTrainer.cpp -------------------------------------------------------------------------------- /handTrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/handTrainer.cpp -------------------------------------------------------------------------------- /models/HandDetector.svm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/models/HandDetector.svm -------------------------------------------------------------------------------- /models/Hand_9_Landmarks_Detector.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maatici/Hand-Landmarks-Detector/HEAD/models/Hand_9_Landmarks_Detector.dat --------------------------------------------------------------------------------