├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── demo.py ├── install.py ├── models └── put_your_segmentation_models.txt └── scripts ├── api.py ├── batch_dir.py ├── convertor.py ├── main.py ├── sa_mask.py ├── td_abg.py └── tools.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/demo.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/install.py -------------------------------------------------------------------------------- /models/put_your_segmentation_models.txt: -------------------------------------------------------------------------------- 1 | put_your_segmentation_models -------------------------------------------------------------------------------- /scripts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/api.py -------------------------------------------------------------------------------- /scripts/batch_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/batch_dir.py -------------------------------------------------------------------------------- /scripts/convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/convertor.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/sa_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/sa_mask.py -------------------------------------------------------------------------------- /scripts/td_abg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/td_abg.py -------------------------------------------------------------------------------- /scripts/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattyamonaca/PBRemTools/HEAD/scripts/tools.py --------------------------------------------------------------------------------