├── .gitignore ├── LICENSE ├── README.md ├── SConstruct ├── res └── lbpcascade_frontalface.xml └── src ├── EvmGdownIIR.cpp ├── EvmGdownIIR.hpp ├── Pulse.cpp ├── Pulse.hpp ├── Window.cpp ├── Window.hpp ├── ext ├── opencv.cpp └── opencv.hpp ├── main.cpp └── profiler ├── Profiler.cpp └── Profiler.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | pulse 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/SConstruct -------------------------------------------------------------------------------- /res/lbpcascade_frontalface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/res/lbpcascade_frontalface.xml -------------------------------------------------------------------------------- /src/EvmGdownIIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/EvmGdownIIR.cpp -------------------------------------------------------------------------------- /src/EvmGdownIIR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/EvmGdownIIR.hpp -------------------------------------------------------------------------------- /src/Pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/Pulse.cpp -------------------------------------------------------------------------------- /src/Pulse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/Pulse.hpp -------------------------------------------------------------------------------- /src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/Window.cpp -------------------------------------------------------------------------------- /src/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/Window.hpp -------------------------------------------------------------------------------- /src/ext/opencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/ext/opencv.cpp -------------------------------------------------------------------------------- /src/ext/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/ext/opencv.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/profiler/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/profiler/Profiler.cpp -------------------------------------------------------------------------------- /src/profiler/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PChambino/pulse-cpp/HEAD/src/profiler/Profiler.h --------------------------------------------------------------------------------