├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── convert_onnx.py ├── convert_script.txt ├── demo_video.py ├── log-cleaner.sh ├── nms_yolact_edge.py ├── nms_yolact_edge_score_gather_nd.py ├── nms_yolact_edge_score_indices.py ├── nms_yolact_edge_xyxyx_yxyx.py ├── score_slice_test.py └── yolact_edge ├── backbone.py └── yolact.py /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/config.py -------------------------------------------------------------------------------- /convert_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/convert_onnx.py -------------------------------------------------------------------------------- /convert_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/convert_script.txt -------------------------------------------------------------------------------- /demo_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/demo_video.py -------------------------------------------------------------------------------- /log-cleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/log-cleaner.sh -------------------------------------------------------------------------------- /nms_yolact_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/nms_yolact_edge.py -------------------------------------------------------------------------------- /nms_yolact_edge_score_gather_nd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/nms_yolact_edge_score_gather_nd.py -------------------------------------------------------------------------------- /nms_yolact_edge_score_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/nms_yolact_edge_score_indices.py -------------------------------------------------------------------------------- /nms_yolact_edge_xyxyx_yxyx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/nms_yolact_edge_xyxyx_yxyx.py -------------------------------------------------------------------------------- /score_slice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/score_slice_test.py -------------------------------------------------------------------------------- /yolact_edge/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/yolact_edge/backbone.py -------------------------------------------------------------------------------- /yolact_edge/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/yolact_edge_onnx_tensorrt_myriad/HEAD/yolact_edge/yolact.py --------------------------------------------------------------------------------