├── README.md ├── setup.py ├── src ├── cv2gpu.cpp ├── face_detector.cpp ├── face_detector.hpp └── opencv_version.hpp └── test ├── family.jpg ├── haarcascade_frontalface_default.xml ├── haarcascade_frontalface_default_cuda.xml └── test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/setup.py -------------------------------------------------------------------------------- /src/cv2gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/src/cv2gpu.cpp -------------------------------------------------------------------------------- /src/face_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/src/face_detector.cpp -------------------------------------------------------------------------------- /src/face_detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/src/face_detector.hpp -------------------------------------------------------------------------------- /src/opencv_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/src/opencv_version.hpp -------------------------------------------------------------------------------- /test/family.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/test/family.jpg -------------------------------------------------------------------------------- /test/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/test/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /test/haarcascade_frontalface_default_cuda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/test/haarcascade_frontalface_default_cuda.xml -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkoumis/opencv-gpu-py/HEAD/test/test.py --------------------------------------------------------------------------------