├── .bazelrc ├── .envrc ├── .gitignore ├── LICENSE ├── README.md ├── WORKSPACE ├── examples ├── BUILD ├── coco_labels.txt └── pytorch_yolo.pbtext ├── mediapipe_pytorch ├── BUILD └── pytorch_inference_calculator.cc └── third_party └── libtorch └── BUILD /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/.bazelrc -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/WORKSPACE -------------------------------------------------------------------------------- /examples/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/examples/BUILD -------------------------------------------------------------------------------- /examples/coco_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/examples/coco_labels.txt -------------------------------------------------------------------------------- /examples/pytorch_yolo.pbtext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/examples/pytorch_yolo.pbtext -------------------------------------------------------------------------------- /mediapipe_pytorch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/mediapipe_pytorch/BUILD -------------------------------------------------------------------------------- /mediapipe_pytorch/pytorch_inference_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/mediapipe_pytorch/pytorch_inference_calculator.cc -------------------------------------------------------------------------------- /third_party/libtorch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsuess/mediapipe-pytorch/HEAD/third_party/libtorch/BUILD --------------------------------------------------------------------------------