├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── applications ├── classification.py ├── deepstream_app_src_and_sink.py ├── detection.py ├── detr-detection.py ├── face-detection.py ├── face-mask.py ├── face-of-tracking.py ├── face-recognition-tracking.py ├── face-sort-tracking.py ├── gst_app_src_and_sink.py ├── gst_appsink_display.py ├── gst_overlay_pipeline.py ├── human-pose.py ├── human_pose.json ├── imagenet-classes.txt ├── relative-depth.py ├── segmentation.py ├── sort.py └── val5k-labels.txt ├── deepstream_examples.md ├── docs ├── PySpinGStreamerSrcPresentation.pdf └── assets │ ├── FaceDetection.jpg │ ├── OfficeFaceMask.jpg │ ├── OfficeHumanPose.jpg │ ├── OfficeRelativeDepth.jpg │ ├── OverlayPipeline.jpg │ ├── RecyclingDetection.jpg │ ├── ReggieClassification.jpg │ ├── ReggieSegmentation.jpg │ ├── annotate-cut.gif │ └── gstreamerSpinnakerMedium.png ├── edge-inference-remote-monitoring.md ├── gst └── python │ └── pyspinsrc.py ├── local-network-streaming.md ├── nvidia-jetson-nano-benchmarks.md ├── requirements.txt ├── setup_util.sh ├── tests ├── restart_pipeline_test.py └── timestamp_test.py ├── vaapi-benchmarks.md └── youtube-input-pipeline.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/README.md -------------------------------------------------------------------------------- /applications/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/classification.py -------------------------------------------------------------------------------- /applications/deepstream_app_src_and_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/deepstream_app_src_and_sink.py -------------------------------------------------------------------------------- /applications/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/detection.py -------------------------------------------------------------------------------- /applications/detr-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/detr-detection.py -------------------------------------------------------------------------------- /applications/face-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/face-detection.py -------------------------------------------------------------------------------- /applications/face-mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/face-mask.py -------------------------------------------------------------------------------- /applications/face-of-tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/face-of-tracking.py -------------------------------------------------------------------------------- /applications/face-recognition-tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/face-recognition-tracking.py -------------------------------------------------------------------------------- /applications/face-sort-tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/face-sort-tracking.py -------------------------------------------------------------------------------- /applications/gst_app_src_and_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/gst_app_src_and_sink.py -------------------------------------------------------------------------------- /applications/gst_appsink_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/gst_appsink_display.py -------------------------------------------------------------------------------- /applications/gst_overlay_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/gst_overlay_pipeline.py -------------------------------------------------------------------------------- /applications/human-pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/human-pose.py -------------------------------------------------------------------------------- /applications/human_pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/human_pose.json -------------------------------------------------------------------------------- /applications/imagenet-classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/imagenet-classes.txt -------------------------------------------------------------------------------- /applications/relative-depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/relative-depth.py -------------------------------------------------------------------------------- /applications/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/segmentation.py -------------------------------------------------------------------------------- /applications/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/sort.py -------------------------------------------------------------------------------- /applications/val5k-labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/applications/val5k-labels.txt -------------------------------------------------------------------------------- /deepstream_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/deepstream_examples.md -------------------------------------------------------------------------------- /docs/PySpinGStreamerSrcPresentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/PySpinGStreamerSrcPresentation.pdf -------------------------------------------------------------------------------- /docs/assets/FaceDetection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/FaceDetection.jpg -------------------------------------------------------------------------------- /docs/assets/OfficeFaceMask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/OfficeFaceMask.jpg -------------------------------------------------------------------------------- /docs/assets/OfficeHumanPose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/OfficeHumanPose.jpg -------------------------------------------------------------------------------- /docs/assets/OfficeRelativeDepth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/OfficeRelativeDepth.jpg -------------------------------------------------------------------------------- /docs/assets/OverlayPipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/OverlayPipeline.jpg -------------------------------------------------------------------------------- /docs/assets/RecyclingDetection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/RecyclingDetection.jpg -------------------------------------------------------------------------------- /docs/assets/ReggieClassification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/ReggieClassification.jpg -------------------------------------------------------------------------------- /docs/assets/ReggieSegmentation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/ReggieSegmentation.jpg -------------------------------------------------------------------------------- /docs/assets/annotate-cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/annotate-cut.gif -------------------------------------------------------------------------------- /docs/assets/gstreamerSpinnakerMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/docs/assets/gstreamerSpinnakerMedium.png -------------------------------------------------------------------------------- /edge-inference-remote-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/edge-inference-remote-monitoring.md -------------------------------------------------------------------------------- /gst/python/pyspinsrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/gst/python/pyspinsrc.py -------------------------------------------------------------------------------- /local-network-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/local-network-streaming.md -------------------------------------------------------------------------------- /nvidia-jetson-nano-benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/nvidia-jetson-nano-benchmarks.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/setup_util.sh -------------------------------------------------------------------------------- /tests/restart_pipeline_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/tests/restart_pipeline_test.py -------------------------------------------------------------------------------- /tests/timestamp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/tests/timestamp_test.py -------------------------------------------------------------------------------- /vaapi-benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/vaapi-benchmarks.md -------------------------------------------------------------------------------- /youtube-input-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianOfrim/gstreamer-pyspin-src/HEAD/youtube-input-pipeline.md --------------------------------------------------------------------------------