├── .dockerignore ├── .gitignore ├── DGPU_ARCHS.png ├── Dockerfile ├── README.md ├── TODO.md ├── config_tracker_DeepSORT.yml ├── config_tracker_IOU.yml ├── config_tracker_NvDCF_accuracy.yml ├── config_tracker_NvDCF_max_perf.yml ├── config_tracker_NvDCF_perf.yml ├── deepstream_app.txt ├── default.sh ├── deviceQuery.cpp ├── docker-compose.yml ├── export_svg.py ├── logs └── .gitkeep ├── models ├── .gitkeep ├── labels.txt ├── yolov5l-seg.txt ├── yolov5m-seg.txt ├── yolov5n-seg.txt ├── yolov5s-seg.txt ├── yolov5x-seg.txt ├── yolov7-mask.txt ├── yolov7-seg-dev.txt ├── yolov7-seg.txt └── yolov7x-seg.txt ├── nvdsinfer_customparser ├── Makefile └── nvdsinfer_custombboxparser.cpp ├── onnx2tensorrt.sh ├── plot.ipynb ├── plot.png ├── run.sh └── videos └── .gitkeep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /DGPU_ARCHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/DGPU_ARCHS.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | - Decrease conf-thres 4 | -------------------------------------------------------------------------------- /config_tracker_DeepSORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/config_tracker_DeepSORT.yml -------------------------------------------------------------------------------- /config_tracker_IOU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/config_tracker_IOU.yml -------------------------------------------------------------------------------- /config_tracker_NvDCF_accuracy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/config_tracker_NvDCF_accuracy.yml -------------------------------------------------------------------------------- /config_tracker_NvDCF_max_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/config_tracker_NvDCF_max_perf.yml -------------------------------------------------------------------------------- /config_tracker_NvDCF_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/config_tracker_NvDCF_perf.yml -------------------------------------------------------------------------------- /deepstream_app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/deepstream_app.txt -------------------------------------------------------------------------------- /default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/default.sh -------------------------------------------------------------------------------- /deviceQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/deviceQuery.cpp -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /export_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/export_svg.py -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/labels.txt -------------------------------------------------------------------------------- /models/yolov5l-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov5l-seg.txt -------------------------------------------------------------------------------- /models/yolov5m-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov5m-seg.txt -------------------------------------------------------------------------------- /models/yolov5n-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov5n-seg.txt -------------------------------------------------------------------------------- /models/yolov5s-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov5s-seg.txt -------------------------------------------------------------------------------- /models/yolov5x-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov5x-seg.txt -------------------------------------------------------------------------------- /models/yolov7-mask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov7-mask.txt -------------------------------------------------------------------------------- /models/yolov7-seg-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov7-seg-dev.txt -------------------------------------------------------------------------------- /models/yolov7-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov7-seg.txt -------------------------------------------------------------------------------- /models/yolov7x-seg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/models/yolov7x-seg.txt -------------------------------------------------------------------------------- /nvdsinfer_customparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/nvdsinfer_customparser/Makefile -------------------------------------------------------------------------------- /nvdsinfer_customparser/nvdsinfer_custombboxparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/nvdsinfer_customparser/nvdsinfer_custombboxparser.cpp -------------------------------------------------------------------------------- /onnx2tensorrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/onnx2tensorrt.sh -------------------------------------------------------------------------------- /plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/plot.ipynb -------------------------------------------------------------------------------- /plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/plot.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiennguyen9874/deepstream-realtime-instance-segmentation/HEAD/run.sh -------------------------------------------------------------------------------- /videos/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------