├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .idea ├── .gitignore ├── NanoCamera.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── examples ├── CSI_camera.py ├── MJPEG_camera.py ├── RTSP_camera.py ├── USB_camera.py └── USB_camera_with_debug.py ├── nanocamera ├── NanoCam.py └── __init__.py └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/NanoCamera.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.idea/NanoCamera.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/README.md -------------------------------------------------------------------------------- /examples/CSI_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/examples/CSI_camera.py -------------------------------------------------------------------------------- /examples/MJPEG_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/examples/MJPEG_camera.py -------------------------------------------------------------------------------- /examples/RTSP_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/examples/RTSP_camera.py -------------------------------------------------------------------------------- /examples/USB_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/examples/USB_camera.py -------------------------------------------------------------------------------- /examples/USB_camera_with_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/examples/USB_camera_with_debug.py -------------------------------------------------------------------------------- /nanocamera/NanoCam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/nanocamera/NanoCam.py -------------------------------------------------------------------------------- /nanocamera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/nanocamera/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehapyone/NanoCamera/HEAD/setup.py --------------------------------------------------------------------------------