├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── README.md ├── data │ └── cuda │ │ ├── haarcascade_eye.xml │ │ └── haarcascade_frontalface_default.xml ├── face_detect_usb_fps.py └── face_detect_usb_gpu.py ├── face-detect-usb.py ├── usb-camera-gst.py └── usb-camera-simple.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/README.md -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/data/cuda/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/demo/data/cuda/haarcascade_eye.xml -------------------------------------------------------------------------------- /demo/data/cuda/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/demo/data/cuda/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /demo/face_detect_usb_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/demo/face_detect_usb_fps.py -------------------------------------------------------------------------------- /demo/face_detect_usb_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/demo/face_detect_usb_gpu.py -------------------------------------------------------------------------------- /face-detect-usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/face-detect-usb.py -------------------------------------------------------------------------------- /usb-camera-gst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/usb-camera-gst.py -------------------------------------------------------------------------------- /usb-camera-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetsonhacks/USB-Camera/HEAD/usb-camera-simple.py --------------------------------------------------------------------------------