├── .DS_Store ├── .gitmodules ├── .python-app-pipeline.png ├── .test3-app.png ├── FAQ.md ├── HOWTO.md ├── LICENSE ├── README.md ├── THIRD_PARTY_LICENSE ├── apps ├── README ├── common │ ├── FPS.py │ ├── __init__.py │ ├── bus_call.py │ ├── platform_info.py │ └── utils.py ├── deepstream-custom-binding-test │ ├── README │ └── deepstream_custom_binding_test.py ├── deepstream-demux-multi-in-multi-out │ ├── README │ ├── deepstream_demux_multi_in_multi_out.py │ └── ds_demux_pgie_config.txt ├── deepstream-imagedata-multistream-cupy │ ├── README │ ├── deepstream_imagedata-multistream_cupy.py │ └── dstest_imagedata_cupy_config.txt ├── deepstream-imagedata-multistream-redaction │ ├── README │ ├── config_infer_primary_peoplenet.txt │ ├── deepstream_imagedata-multistream_redaction.py │ └── imagedata-app-block-diagram.png ├── deepstream-imagedata-multistream │ ├── README │ ├── deepstream_imagedata-multistream.py │ ├── dstest_imagedata_config.txt │ └── imagedata-app-block-diagram.png ├── deepstream-nvdsanalytics │ ├── README │ ├── config_nvdsanalytics.txt │ ├── config_nvdsanalytics_c02.txt │ ├── config_tracker_NvDCF_perf.yml │ ├── deepstream_nvdsanalytics.py │ ├── dsnvanalytics_pgie_config.txt │ └── dsnvanalytics_tracker_config.txt ├── deepstream-opticalflow │ ├── README │ └── deepstream-opticalflow.py ├── deepstream-preprocess-test │ ├── README │ ├── config_preprocess.txt │ ├── deepstream_preprocess_test.py │ └── dstest1_pgie_config.txt ├── deepstream-rtsp-in-rtsp-out │ ├── README │ ├── deepstream_test1_rtsp_in_rtsp_out.py │ ├── dstest1_pgie_config.txt │ └── dstest1_pgie_inferserver_config.txt ├── deepstream-segmask │ ├── README │ ├── deepstream_segmask.py │ └── dstest_segmask_config.txt ├── deepstream-segmentation │ ├── README │ ├── deepstream_segmentation.py │ └── dstest_segmentation_citysemsegformer_config.txt ├── deepstream-test1-rtsp-out │ ├── README │ ├── deepstream_test1_rtsp_out.py │ └── dstest1_pgie_config.txt ├── deepstream-test1-usbcam │ ├── README │ ├── deepstream_test_1_usb.py │ └── dstest1_pgie_config.txt ├── deepstream-test1 │ ├── README │ ├── deepstream_test_1.py │ └── dstest1_pgie_config.txt ├── deepstream-test2 │ ├── README │ ├── config_tracker_NvDCF_perf.yml │ ├── deepstream_test_2.py │ ├── dstest2_pgie_config.txt │ ├── dstest2_sgie1_config.txt │ ├── dstest2_sgie2_config.txt │ └── dstest2_tracker_config.txt ├── deepstream-test3 │ ├── README │ ├── config.pbtxt │ ├── config_infer_primary_peoplenet.txt │ ├── config_triton_grpc_infer_primary_peoplenet.txt │ ├── config_triton_infer_primary_peoplenet.txt │ ├── deepstream_test_3.py │ └── dstest3_pgie_config.txt ├── deepstream-test4 │ ├── README │ ├── cfg_amqp.txt │ ├── cfg_azure.txt │ ├── cfg_kafka.txt │ ├── cfg_mqtt.txt │ ├── cfg_redis.txt │ ├── deepstream_test_4.py │ ├── dstest4_msgconv_config.txt │ └── dstest4_pgie_config.txt └── runtime_source_add_delete │ ├── README │ ├── config_tracker_NvDCF_perf.yml │ ├── deepstream_rt_src_add_del.py │ ├── dstest_pgie_config.txt │ ├── dstest_sgie1_config.txt │ ├── dstest_sgie2_config.txt │ └── dstest_tracker_config.txt ├── bindings ├── BINDINGSGUIDE.md ├── CMakeLists.txt ├── CUSTOMUSERMETAGUIDE.md ├── MANIFEST.in ├── README.md ├── docstrings │ ├── analyticsmetadoc.h │ ├── customdoc.h │ ├── functionsdoc.h │ ├── gstnvdsmetadoc.h │ ├── meta360doc.h │ ├── nvbufsurfacedoc.h │ ├── nvdsinferdoc.h │ ├── nvdsmetadoc.h │ ├── nvosddoc.h │ ├── opticalflowdoc.h │ ├── preprocessmetadoc.h │ ├── roimetadoc.h │ ├── schemadoc.h │ ├── trackermetadoc.h │ └── utilsdoc.h ├── include │ ├── bind │ │ ├── bind_string_property_definitions.h │ │ ├── bindanalyticsmeta.hpp │ │ ├── bindfunctions.hpp │ │ ├── bindgstnvdsmeta.hpp │ │ ├── bindmeta360.hpp │ │ ├── bindnvbufsurface.hpp │ │ ├── bindnvdsinfer.hpp │ │ ├── bindnvdsmeta.hpp │ │ ├── bindnvosd.hpp │ │ ├── bindopticalflow.hpp │ │ ├── bindpreprocessmeta.hpp │ │ ├── bindroimeta.hpp │ │ ├── bindschema.hpp │ │ └── bindtrackermeta.hpp │ ├── nvds │ │ └── nvds_360d_meta.h │ ├── pyds.hpp │ └── utils.hpp ├── pyproject.toml ├── qemu_docker │ └── ubuntu-cross-aarch64.Dockerfile ├── setup.py └── src │ ├── bindanalyticsmeta.cpp │ ├── bindfunctions.cpp │ ├── bindgstnvdsmeta.cpp │ ├── bindmeta360.cpp │ ├── bindnvbufsurface.cpp │ ├── bindnvdsinfer.cpp │ ├── bindnvdsmeta.cpp │ ├── bindnvosd.cpp │ ├── bindopticalflow.cpp │ ├── bindpreprocessmeta.cpp │ ├── bindroimeta.cpp │ ├── bindschema.cpp │ ├── bindtrackermeta.cpp │ ├── custom_binding │ ├── bindcustom.cpp │ └── include │ │ ├── bindcustom.hpp │ │ └── custom_data.hpp │ ├── pyds.cpp │ └── utils.cpp ├── docs ├── Makefile ├── Nvidia.ico ├── PYTHON_API │ └── Methods │ │ ├── methodsdoc.rst │ │ └── pymethods.rst ├── README.md ├── bindings_file_list.txt ├── conf.py ├── content │ └── nv_logo.png ├── custom.css ├── ex.py ├── favicon.ico ├── index.rst ├── make.bat ├── parse_bindings.py ├── pk_scripts.js └── version_api.rst ├── notebooks ├── configs │ ├── config_tracker_NvDCF_perf.yml │ ├── dslaunchpad_pgie_config.txt │ ├── dslaunchpad_sgie1_config.txt │ ├── dslaunchpad_sgie2_config.txt │ └── dslaunchpad_tracker_config.txt ├── deepstream_launchpad.ipynb ├── deepstream_test_1.ipynb ├── deepstream_test_4.ipynb ├── ds_launchpad_pipeline.png ├── ds_test1.png └── ds_workflow.png └── tests ├── __init__.py ├── integration ├── README.md ├── __init__.py ├── deepstream_demo.py ├── ds_base_config.txt ├── ds_pgie_config.txt ├── ds_sgie1_config.txt ├── ds_sgie2_config.txt ├── ds_tracker_config.txt ├── test.py └── tracker_config.yml └── testcommon ├── __init__.py ├── frame_iterator.py ├── generic_pipeline.py ├── pipeline_fakesink.py ├── pipeline_fakesink_tracker.py ├── pipeline_filesink.py ├── pipeline_nveglglessink.py ├── tracker_utils.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-app-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/.python-app-pipeline.png -------------------------------------------------------------------------------- /.test3-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/.test3-app.png -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/FAQ.md -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/HOWTO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/THIRD_PARTY_LICENSE -------------------------------------------------------------------------------- /apps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/README -------------------------------------------------------------------------------- /apps/common/FPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/common/FPS.py -------------------------------------------------------------------------------- /apps/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/common/bus_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/common/bus_call.py -------------------------------------------------------------------------------- /apps/common/platform_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/common/platform_info.py -------------------------------------------------------------------------------- /apps/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/common/utils.py -------------------------------------------------------------------------------- /apps/deepstream-custom-binding-test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-custom-binding-test/README -------------------------------------------------------------------------------- /apps/deepstream-custom-binding-test/deepstream_custom_binding_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-custom-binding-test/deepstream_custom_binding_test.py -------------------------------------------------------------------------------- /apps/deepstream-demux-multi-in-multi-out/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-demux-multi-in-multi-out/README -------------------------------------------------------------------------------- /apps/deepstream-demux-multi-in-multi-out/deepstream_demux_multi_in_multi_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-demux-multi-in-multi-out/deepstream_demux_multi_in_multi_out.py -------------------------------------------------------------------------------- /apps/deepstream-demux-multi-in-multi-out/ds_demux_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-demux-multi-in-multi-out/ds_demux_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-cupy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-cupy/README -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-cupy/deepstream_imagedata-multistream_cupy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-cupy/deepstream_imagedata-multistream_cupy.py -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-cupy/dstest_imagedata_cupy_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-cupy/dstest_imagedata_cupy_config.txt -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-redaction/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-redaction/README -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-redaction/config_infer_primary_peoplenet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-redaction/config_infer_primary_peoplenet.txt -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-redaction/deepstream_imagedata-multistream_redaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-redaction/deepstream_imagedata-multistream_redaction.py -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream-redaction/imagedata-app-block-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream-redaction/imagedata-app-block-diagram.png -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream/README -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream/deepstream_imagedata-multistream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream/deepstream_imagedata-multistream.py -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream/dstest_imagedata_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream/dstest_imagedata_config.txt -------------------------------------------------------------------------------- /apps/deepstream-imagedata-multistream/imagedata-app-block-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-imagedata-multistream/imagedata-app-block-diagram.png -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/README -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/config_nvdsanalytics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/config_nvdsanalytics.txt -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/config_nvdsanalytics_c02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/config_nvdsanalytics_c02.txt -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/config_tracker_NvDCF_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/config_tracker_NvDCF_perf.yml -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/deepstream_nvdsanalytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/deepstream_nvdsanalytics.py -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/dsnvanalytics_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/dsnvanalytics_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-nvdsanalytics/dsnvanalytics_tracker_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-nvdsanalytics/dsnvanalytics_tracker_config.txt -------------------------------------------------------------------------------- /apps/deepstream-opticalflow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-opticalflow/README -------------------------------------------------------------------------------- /apps/deepstream-opticalflow/deepstream-opticalflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-opticalflow/deepstream-opticalflow.py -------------------------------------------------------------------------------- /apps/deepstream-preprocess-test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-preprocess-test/README -------------------------------------------------------------------------------- /apps/deepstream-preprocess-test/config_preprocess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-preprocess-test/config_preprocess.txt -------------------------------------------------------------------------------- /apps/deepstream-preprocess-test/deepstream_preprocess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-preprocess-test/deepstream_preprocess_test.py -------------------------------------------------------------------------------- /apps/deepstream-preprocess-test/dstest1_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-preprocess-test/dstest1_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-rtsp-in-rtsp-out/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-rtsp-in-rtsp-out/README -------------------------------------------------------------------------------- /apps/deepstream-rtsp-in-rtsp-out/deepstream_test1_rtsp_in_rtsp_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-rtsp-in-rtsp-out/deepstream_test1_rtsp_in_rtsp_out.py -------------------------------------------------------------------------------- /apps/deepstream-rtsp-in-rtsp-out/dstest1_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-rtsp-in-rtsp-out/dstest1_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-rtsp-in-rtsp-out/dstest1_pgie_inferserver_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-rtsp-in-rtsp-out/dstest1_pgie_inferserver_config.txt -------------------------------------------------------------------------------- /apps/deepstream-segmask/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-segmask/README -------------------------------------------------------------------------------- /apps/deepstream-segmask/deepstream_segmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-segmask/deepstream_segmask.py -------------------------------------------------------------------------------- /apps/deepstream-segmask/dstest_segmask_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-segmask/dstest_segmask_config.txt -------------------------------------------------------------------------------- /apps/deepstream-segmentation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-segmentation/README -------------------------------------------------------------------------------- /apps/deepstream-segmentation/deepstream_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-segmentation/deepstream_segmentation.py -------------------------------------------------------------------------------- /apps/deepstream-segmentation/dstest_segmentation_citysemsegformer_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-segmentation/dstest_segmentation_citysemsegformer_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test1-rtsp-out/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1-rtsp-out/README -------------------------------------------------------------------------------- /apps/deepstream-test1-rtsp-out/deepstream_test1_rtsp_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1-rtsp-out/deepstream_test1_rtsp_out.py -------------------------------------------------------------------------------- /apps/deepstream-test1-rtsp-out/dstest1_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1-rtsp-out/dstest1_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test1-usbcam/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1-usbcam/README -------------------------------------------------------------------------------- /apps/deepstream-test1-usbcam/deepstream_test_1_usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1-usbcam/deepstream_test_1_usb.py -------------------------------------------------------------------------------- /apps/deepstream-test1-usbcam/dstest1_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1-usbcam/dstest1_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1/README -------------------------------------------------------------------------------- /apps/deepstream-test1/deepstream_test_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1/deepstream_test_1.py -------------------------------------------------------------------------------- /apps/deepstream-test1/dstest1_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test1/dstest1_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/README -------------------------------------------------------------------------------- /apps/deepstream-test2/config_tracker_NvDCF_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/config_tracker_NvDCF_perf.yml -------------------------------------------------------------------------------- /apps/deepstream-test2/deepstream_test_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/deepstream_test_2.py -------------------------------------------------------------------------------- /apps/deepstream-test2/dstest2_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/dstest2_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test2/dstest2_sgie1_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/dstest2_sgie1_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test2/dstest2_sgie2_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/dstest2_sgie2_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test2/dstest2_tracker_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test2/dstest2_tracker_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/README -------------------------------------------------------------------------------- /apps/deepstream-test3/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/config.pbtxt -------------------------------------------------------------------------------- /apps/deepstream-test3/config_infer_primary_peoplenet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/config_infer_primary_peoplenet.txt -------------------------------------------------------------------------------- /apps/deepstream-test3/config_triton_grpc_infer_primary_peoplenet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/config_triton_grpc_infer_primary_peoplenet.txt -------------------------------------------------------------------------------- /apps/deepstream-test3/config_triton_infer_primary_peoplenet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/config_triton_infer_primary_peoplenet.txt -------------------------------------------------------------------------------- /apps/deepstream-test3/deepstream_test_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/deepstream_test_3.py -------------------------------------------------------------------------------- /apps/deepstream-test3/dstest3_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test3/dstest3_pgie_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/README -------------------------------------------------------------------------------- /apps/deepstream-test4/cfg_amqp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/cfg_amqp.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/cfg_azure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/cfg_azure.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/cfg_kafka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/cfg_kafka.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/cfg_mqtt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/cfg_mqtt.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/cfg_redis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/cfg_redis.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/deepstream_test_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/deepstream_test_4.py -------------------------------------------------------------------------------- /apps/deepstream-test4/dstest4_msgconv_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/dstest4_msgconv_config.txt -------------------------------------------------------------------------------- /apps/deepstream-test4/dstest4_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/deepstream-test4/dstest4_pgie_config.txt -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/README -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/config_tracker_NvDCF_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/config_tracker_NvDCF_perf.yml -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/deepstream_rt_src_add_del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/deepstream_rt_src_add_del.py -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/dstest_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/dstest_pgie_config.txt -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/dstest_sgie1_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/dstest_sgie1_config.txt -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/dstest_sgie2_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/dstest_sgie2_config.txt -------------------------------------------------------------------------------- /apps/runtime_source_add_delete/dstest_tracker_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/apps/runtime_source_add_delete/dstest_tracker_config.txt -------------------------------------------------------------------------------- /bindings/BINDINGSGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/BINDINGSGUIDE.md -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/CUSTOMUSERMETAGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/CUSTOMUSERMETAGUIDE.md -------------------------------------------------------------------------------- /bindings/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/MANIFEST.in -------------------------------------------------------------------------------- /bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/README.md -------------------------------------------------------------------------------- /bindings/docstrings/analyticsmetadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/analyticsmetadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/customdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/customdoc.h -------------------------------------------------------------------------------- /bindings/docstrings/functionsdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/functionsdoc.h -------------------------------------------------------------------------------- /bindings/docstrings/gstnvdsmetadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/gstnvdsmetadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/meta360doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/meta360doc.h -------------------------------------------------------------------------------- /bindings/docstrings/nvbufsurfacedoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/nvbufsurfacedoc.h -------------------------------------------------------------------------------- /bindings/docstrings/nvdsinferdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/nvdsinferdoc.h -------------------------------------------------------------------------------- /bindings/docstrings/nvdsmetadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/nvdsmetadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/nvosddoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/nvosddoc.h -------------------------------------------------------------------------------- /bindings/docstrings/opticalflowdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/opticalflowdoc.h -------------------------------------------------------------------------------- /bindings/docstrings/preprocessmetadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/preprocessmetadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/roimetadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/roimetadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/schemadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/schemadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/trackermetadoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/trackermetadoc.h -------------------------------------------------------------------------------- /bindings/docstrings/utilsdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/docstrings/utilsdoc.h -------------------------------------------------------------------------------- /bindings/include/bind/bind_string_property_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bind_string_property_definitions.h -------------------------------------------------------------------------------- /bindings/include/bind/bindanalyticsmeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindanalyticsmeta.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindfunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindfunctions.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindgstnvdsmeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindgstnvdsmeta.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindmeta360.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindmeta360.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindnvbufsurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindnvbufsurface.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindnvdsinfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindnvdsinfer.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindnvdsmeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindnvdsmeta.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindnvosd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindnvosd.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindopticalflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindopticalflow.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindpreprocessmeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindpreprocessmeta.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindroimeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindroimeta.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindschema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindschema.hpp -------------------------------------------------------------------------------- /bindings/include/bind/bindtrackermeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/bind/bindtrackermeta.hpp -------------------------------------------------------------------------------- /bindings/include/nvds/nvds_360d_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/nvds/nvds_360d_meta.h -------------------------------------------------------------------------------- /bindings/include/pyds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/pyds.hpp -------------------------------------------------------------------------------- /bindings/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/include/utils.hpp -------------------------------------------------------------------------------- /bindings/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/pyproject.toml -------------------------------------------------------------------------------- /bindings/qemu_docker/ubuntu-cross-aarch64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/qemu_docker/ubuntu-cross-aarch64.Dockerfile -------------------------------------------------------------------------------- /bindings/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/setup.py -------------------------------------------------------------------------------- /bindings/src/bindanalyticsmeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindanalyticsmeta.cpp -------------------------------------------------------------------------------- /bindings/src/bindfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindfunctions.cpp -------------------------------------------------------------------------------- /bindings/src/bindgstnvdsmeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindgstnvdsmeta.cpp -------------------------------------------------------------------------------- /bindings/src/bindmeta360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindmeta360.cpp -------------------------------------------------------------------------------- /bindings/src/bindnvbufsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindnvbufsurface.cpp -------------------------------------------------------------------------------- /bindings/src/bindnvdsinfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindnvdsinfer.cpp -------------------------------------------------------------------------------- /bindings/src/bindnvdsmeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindnvdsmeta.cpp -------------------------------------------------------------------------------- /bindings/src/bindnvosd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindnvosd.cpp -------------------------------------------------------------------------------- /bindings/src/bindopticalflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindopticalflow.cpp -------------------------------------------------------------------------------- /bindings/src/bindpreprocessmeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindpreprocessmeta.cpp -------------------------------------------------------------------------------- /bindings/src/bindroimeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindroimeta.cpp -------------------------------------------------------------------------------- /bindings/src/bindschema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindschema.cpp -------------------------------------------------------------------------------- /bindings/src/bindtrackermeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/bindtrackermeta.cpp -------------------------------------------------------------------------------- /bindings/src/custom_binding/bindcustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/custom_binding/bindcustom.cpp -------------------------------------------------------------------------------- /bindings/src/custom_binding/include/bindcustom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/custom_binding/include/bindcustom.hpp -------------------------------------------------------------------------------- /bindings/src/custom_binding/include/custom_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/custom_binding/include/custom_data.hpp -------------------------------------------------------------------------------- /bindings/src/pyds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/pyds.cpp -------------------------------------------------------------------------------- /bindings/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/bindings/src/utils.cpp -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Nvidia.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/Nvidia.ico -------------------------------------------------------------------------------- /docs/PYTHON_API/Methods/methodsdoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/PYTHON_API/Methods/methodsdoc.rst -------------------------------------------------------------------------------- /docs/PYTHON_API/Methods/pymethods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/PYTHON_API/Methods/pymethods.rst -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/bindings_file_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/bindings_file_list.txt -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/content/nv_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/content/nv_logo.png -------------------------------------------------------------------------------- /docs/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/custom.css -------------------------------------------------------------------------------- /docs/ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/ex.py -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/parse_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/parse_bindings.py -------------------------------------------------------------------------------- /docs/pk_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/pk_scripts.js -------------------------------------------------------------------------------- /docs/version_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/docs/version_api.rst -------------------------------------------------------------------------------- /notebooks/configs/config_tracker_NvDCF_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/configs/config_tracker_NvDCF_perf.yml -------------------------------------------------------------------------------- /notebooks/configs/dslaunchpad_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/configs/dslaunchpad_pgie_config.txt -------------------------------------------------------------------------------- /notebooks/configs/dslaunchpad_sgie1_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/configs/dslaunchpad_sgie1_config.txt -------------------------------------------------------------------------------- /notebooks/configs/dslaunchpad_sgie2_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/configs/dslaunchpad_sgie2_config.txt -------------------------------------------------------------------------------- /notebooks/configs/dslaunchpad_tracker_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/configs/dslaunchpad_tracker_config.txt -------------------------------------------------------------------------------- /notebooks/deepstream_launchpad.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/deepstream_launchpad.ipynb -------------------------------------------------------------------------------- /notebooks/deepstream_test_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/deepstream_test_1.ipynb -------------------------------------------------------------------------------- /notebooks/deepstream_test_4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/deepstream_test_4.ipynb -------------------------------------------------------------------------------- /notebooks/ds_launchpad_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/ds_launchpad_pipeline.png -------------------------------------------------------------------------------- /notebooks/ds_test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/ds_test1.png -------------------------------------------------------------------------------- /notebooks/ds_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/notebooks/ds_workflow.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/README.md -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/deepstream_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/deepstream_demo.py -------------------------------------------------------------------------------- /tests/integration/ds_base_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/ds_base_config.txt -------------------------------------------------------------------------------- /tests/integration/ds_pgie_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/ds_pgie_config.txt -------------------------------------------------------------------------------- /tests/integration/ds_sgie1_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/ds_sgie1_config.txt -------------------------------------------------------------------------------- /tests/integration/ds_sgie2_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/ds_sgie2_config.txt -------------------------------------------------------------------------------- /tests/integration/ds_tracker_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/ds_tracker_config.txt -------------------------------------------------------------------------------- /tests/integration/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/test.py -------------------------------------------------------------------------------- /tests/integration/tracker_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/integration/tracker_config.yml -------------------------------------------------------------------------------- /tests/testcommon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testcommon/frame_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/frame_iterator.py -------------------------------------------------------------------------------- /tests/testcommon/generic_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/generic_pipeline.py -------------------------------------------------------------------------------- /tests/testcommon/pipeline_fakesink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/pipeline_fakesink.py -------------------------------------------------------------------------------- /tests/testcommon/pipeline_fakesink_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/pipeline_fakesink_tracker.py -------------------------------------------------------------------------------- /tests/testcommon/pipeline_filesink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/pipeline_filesink.py -------------------------------------------------------------------------------- /tests/testcommon/pipeline_nveglglessink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/pipeline_nveglglessink.py -------------------------------------------------------------------------------- /tests/testcommon/tracker_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/tracker_utils.py -------------------------------------------------------------------------------- /tests/testcommon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/deepstream_python_apps/HEAD/tests/testcommon/utils.py --------------------------------------------------------------------------------