├── .gitignore ├── LICENSE ├── README.md ├── configs ├── config_nvdsanalytics.txt ├── config_tracker.txt ├── dstest1_pgie_YOLOv7-Pose-YOLOLAYER_config.txt └── dstest1_pgie_YOLOv8-Pose_config.txt ├── deepstream_YOLOv7-Pose_YoloLayer.py ├── deepstream_YOLOv8-Pose_rtsp.py ├── imgs ├── Multistream_4_YOLOv8s-pose-3.PNG ├── YOLO-pose_architecture_based_on_YOLOv5.PNG ├── netron_yolov8s-pose_dy-sim-640_onnx.PNG └── netron_yolov8s-pose_dy_onnx.PNG └── utils ├── FPS.py ├── bus_call.py ├── display.py ├── is_aarch_64.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/README.md -------------------------------------------------------------------------------- /configs/config_nvdsanalytics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/configs/config_nvdsanalytics.txt -------------------------------------------------------------------------------- /configs/config_tracker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/configs/config_tracker.txt -------------------------------------------------------------------------------- /configs/dstest1_pgie_YOLOv7-Pose-YOLOLAYER_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/configs/dstest1_pgie_YOLOv7-Pose-YOLOLAYER_config.txt -------------------------------------------------------------------------------- /configs/dstest1_pgie_YOLOv8-Pose_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/configs/dstest1_pgie_YOLOv8-Pose_config.txt -------------------------------------------------------------------------------- /deepstream_YOLOv7-Pose_YoloLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/deepstream_YOLOv7-Pose_YoloLayer.py -------------------------------------------------------------------------------- /deepstream_YOLOv8-Pose_rtsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/deepstream_YOLOv8-Pose_rtsp.py -------------------------------------------------------------------------------- /imgs/Multistream_4_YOLOv8s-pose-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/imgs/Multistream_4_YOLOv8s-pose-3.PNG -------------------------------------------------------------------------------- /imgs/YOLO-pose_architecture_based_on_YOLOv5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/imgs/YOLO-pose_architecture_based_on_YOLOv5.PNG -------------------------------------------------------------------------------- /imgs/netron_yolov8s-pose_dy-sim-640_onnx.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/imgs/netron_yolov8s-pose_dy-sim-640_onnx.PNG -------------------------------------------------------------------------------- /imgs/netron_yolov8s-pose_dy_onnx.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/imgs/netron_yolov8s-pose_dy_onnx.PNG -------------------------------------------------------------------------------- /utils/FPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/utils/FPS.py -------------------------------------------------------------------------------- /utils/bus_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/utils/bus_call.py -------------------------------------------------------------------------------- /utils/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/utils/display.py -------------------------------------------------------------------------------- /utils/is_aarch_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/utils/is_aarch_64.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunghuiHsu/deepstream-yolo-pose/HEAD/utils/utils.py --------------------------------------------------------------------------------