├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── labels ├── balloons.txt ├── birds-1.txt ├── pexels-flora-hsu-7008067.txt ├── pexels-palu-malerba-14305.txt ├── pexels-palu-malerba-14305356 (1).txt └── pexels-palu-malerba-14305356.txt ├── names.txt ├── pyproject.toml ├── setup.py └── src ├── annotation ├── annotate.py ├── filters.py └── utils.py ├── example ├── car.jpg ├── car.mp4 ├── images │ ├── img-0.jpg │ ├── img-1.jpg │ ├── img-10.jpg │ ├── img-11.jpg │ ├── img-12.jpg │ ├── img-13.jpg │ ├── img-14.jpg │ ├── img-15.jpg │ ├── img-16.jpg │ ├── img-17.jpg │ ├── img-18.jpg │ ├── img-19.jpg │ ├── img-2.jpg │ ├── img-20.jpg │ ├── img-21.jpg │ ├── img-22.jpg │ ├── img-23.jpg │ ├── img-24.jpg │ ├── img-25.jpg │ ├── img-26.jpg │ ├── img-27.jpg │ ├── img-28.jpg │ ├── img-29.jpg │ ├── img-3.jpg │ ├── img-30.jpg │ ├── img-31.jpg │ ├── img-32.jpg │ ├── img-33.jpg │ ├── img-34.jpg │ ├── img-35.jpg │ ├── img-36.jpg │ ├── img-37.jpg │ ├── img-38.jpg │ ├── img-39.jpg │ ├── img-4.jpg │ ├── img-40.jpg │ ├── img-41.jpg │ ├── img-42.jpg │ ├── img-43.jpg │ ├── img-44.jpg │ ├── img-45.jpg │ ├── img-46.jpg │ ├── img-47.jpg │ ├── img-48.jpg │ ├── img-49.jpg │ ├── img-5.jpg │ ├── img-50.jpg │ ├── img-6.jpg │ ├── img-7.jpg │ ├── img-8.jpg │ └── img-9.jpg ├── labels │ ├── img-0.txt │ ├── img-1.txt │ ├── img-10.txt │ ├── img-11.txt │ ├── img-12.txt │ ├── img-13.txt │ ├── img-14.txt │ ├── img-15.txt │ ├── img-16.txt │ ├── img-17.txt │ ├── img-18.txt │ ├── img-19.txt │ ├── img-2.txt │ ├── img-20.txt │ ├── img-21.txt │ ├── img-22.txt │ ├── img-23.txt │ ├── img-24.txt │ ├── img-25.txt │ ├── img-26.txt │ ├── img-27.txt │ ├── img-28.txt │ ├── img-29.txt │ ├── img-3.txt │ ├── img-30.txt │ ├── img-31.txt │ ├── img-32.txt │ ├── img-33.txt │ ├── img-34.txt │ ├── img-35.txt │ ├── img-36.txt │ ├── img-37.txt │ ├── img-38.txt │ ├── img-39.txt │ ├── img-4.txt │ ├── img-40.txt │ ├── img-41.txt │ ├── img-42.txt │ ├── img-43.txt │ ├── img-44.txt │ ├── img-45.txt │ ├── img-46.txt │ ├── img-47.txt │ ├── img-48.txt │ ├── img-49.txt │ ├── img-5.txt │ ├── img-50.txt │ ├── img-6.txt │ ├── img-7.txt │ ├── img-8.txt │ └── img-9.txt ├── names.txt └── people.mp4 └── tools ├── __init__.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include ./example/* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/README.md -------------------------------------------------------------------------------- /labels/balloons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/labels/balloons.txt -------------------------------------------------------------------------------- /labels/birds-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/labels/birds-1.txt -------------------------------------------------------------------------------- /labels/pexels-flora-hsu-7008067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/labels/pexels-flora-hsu-7008067.txt -------------------------------------------------------------------------------- /labels/pexels-palu-malerba-14305.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/labels/pexels-palu-malerba-14305.txt -------------------------------------------------------------------------------- /labels/pexels-palu-malerba-14305356 (1).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/labels/pexels-palu-malerba-14305356 (1).txt -------------------------------------------------------------------------------- /labels/pexels-palu-malerba-14305356.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/labels/pexels-palu-malerba-14305356.txt -------------------------------------------------------------------------------- /names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/names.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/setup.py -------------------------------------------------------------------------------- /src/annotation/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/annotation/annotate.py -------------------------------------------------------------------------------- /src/annotation/filters.py: -------------------------------------------------------------------------------- 1 | if __name__ == "__main__": 2 | pass -------------------------------------------------------------------------------- /src/annotation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/annotation/utils.py -------------------------------------------------------------------------------- /src/example/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/car.jpg -------------------------------------------------------------------------------- /src/example/car.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/car.mp4 -------------------------------------------------------------------------------- /src/example/images/img-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-0.jpg -------------------------------------------------------------------------------- /src/example/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-1.jpg -------------------------------------------------------------------------------- /src/example/images/img-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-10.jpg -------------------------------------------------------------------------------- /src/example/images/img-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-11.jpg -------------------------------------------------------------------------------- /src/example/images/img-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-12.jpg -------------------------------------------------------------------------------- /src/example/images/img-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-13.jpg -------------------------------------------------------------------------------- /src/example/images/img-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-14.jpg -------------------------------------------------------------------------------- /src/example/images/img-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-15.jpg -------------------------------------------------------------------------------- /src/example/images/img-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-16.jpg -------------------------------------------------------------------------------- /src/example/images/img-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-17.jpg -------------------------------------------------------------------------------- /src/example/images/img-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-18.jpg -------------------------------------------------------------------------------- /src/example/images/img-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-19.jpg -------------------------------------------------------------------------------- /src/example/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-2.jpg -------------------------------------------------------------------------------- /src/example/images/img-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-20.jpg -------------------------------------------------------------------------------- /src/example/images/img-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-21.jpg -------------------------------------------------------------------------------- /src/example/images/img-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-22.jpg -------------------------------------------------------------------------------- /src/example/images/img-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-23.jpg -------------------------------------------------------------------------------- /src/example/images/img-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-24.jpg -------------------------------------------------------------------------------- /src/example/images/img-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-25.jpg -------------------------------------------------------------------------------- /src/example/images/img-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-26.jpg -------------------------------------------------------------------------------- /src/example/images/img-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-27.jpg -------------------------------------------------------------------------------- /src/example/images/img-28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-28.jpg -------------------------------------------------------------------------------- /src/example/images/img-29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-29.jpg -------------------------------------------------------------------------------- /src/example/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-3.jpg -------------------------------------------------------------------------------- /src/example/images/img-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-30.jpg -------------------------------------------------------------------------------- /src/example/images/img-31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-31.jpg -------------------------------------------------------------------------------- /src/example/images/img-32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-32.jpg -------------------------------------------------------------------------------- /src/example/images/img-33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-33.jpg -------------------------------------------------------------------------------- /src/example/images/img-34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-34.jpg -------------------------------------------------------------------------------- /src/example/images/img-35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-35.jpg -------------------------------------------------------------------------------- /src/example/images/img-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-36.jpg -------------------------------------------------------------------------------- /src/example/images/img-37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-37.jpg -------------------------------------------------------------------------------- /src/example/images/img-38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-38.jpg -------------------------------------------------------------------------------- /src/example/images/img-39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-39.jpg -------------------------------------------------------------------------------- /src/example/images/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-4.jpg -------------------------------------------------------------------------------- /src/example/images/img-40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-40.jpg -------------------------------------------------------------------------------- /src/example/images/img-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-41.jpg -------------------------------------------------------------------------------- /src/example/images/img-42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-42.jpg -------------------------------------------------------------------------------- /src/example/images/img-43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-43.jpg -------------------------------------------------------------------------------- /src/example/images/img-44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-44.jpg -------------------------------------------------------------------------------- /src/example/images/img-45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-45.jpg -------------------------------------------------------------------------------- /src/example/images/img-46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-46.jpg -------------------------------------------------------------------------------- /src/example/images/img-47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-47.jpg -------------------------------------------------------------------------------- /src/example/images/img-48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-48.jpg -------------------------------------------------------------------------------- /src/example/images/img-49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-49.jpg -------------------------------------------------------------------------------- /src/example/images/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-5.jpg -------------------------------------------------------------------------------- /src/example/images/img-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-50.jpg -------------------------------------------------------------------------------- /src/example/images/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-6.jpg -------------------------------------------------------------------------------- /src/example/images/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-7.jpg -------------------------------------------------------------------------------- /src/example/images/img-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-8.jpg -------------------------------------------------------------------------------- /src/example/images/img-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/images/img-9.jpg -------------------------------------------------------------------------------- /src/example/labels/img-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-0.txt -------------------------------------------------------------------------------- /src/example/labels/img-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-1.txt -------------------------------------------------------------------------------- /src/example/labels/img-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-10.txt -------------------------------------------------------------------------------- /src/example/labels/img-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-11.txt -------------------------------------------------------------------------------- /src/example/labels/img-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-12.txt -------------------------------------------------------------------------------- /src/example/labels/img-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-13.txt -------------------------------------------------------------------------------- /src/example/labels/img-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-14.txt -------------------------------------------------------------------------------- /src/example/labels/img-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-15.txt -------------------------------------------------------------------------------- /src/example/labels/img-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-16.txt -------------------------------------------------------------------------------- /src/example/labels/img-17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-17.txt -------------------------------------------------------------------------------- /src/example/labels/img-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-18.txt -------------------------------------------------------------------------------- /src/example/labels/img-19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-19.txt -------------------------------------------------------------------------------- /src/example/labels/img-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-2.txt -------------------------------------------------------------------------------- /src/example/labels/img-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-20.txt -------------------------------------------------------------------------------- /src/example/labels/img-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-21.txt -------------------------------------------------------------------------------- /src/example/labels/img-22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-22.txt -------------------------------------------------------------------------------- /src/example/labels/img-23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-23.txt -------------------------------------------------------------------------------- /src/example/labels/img-24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-24.txt -------------------------------------------------------------------------------- /src/example/labels/img-25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-25.txt -------------------------------------------------------------------------------- /src/example/labels/img-26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-26.txt -------------------------------------------------------------------------------- /src/example/labels/img-27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-27.txt -------------------------------------------------------------------------------- /src/example/labels/img-28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-28.txt -------------------------------------------------------------------------------- /src/example/labels/img-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-29.txt -------------------------------------------------------------------------------- /src/example/labels/img-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-3.txt -------------------------------------------------------------------------------- /src/example/labels/img-30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-30.txt -------------------------------------------------------------------------------- /src/example/labels/img-31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-31.txt -------------------------------------------------------------------------------- /src/example/labels/img-32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-32.txt -------------------------------------------------------------------------------- /src/example/labels/img-33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-33.txt -------------------------------------------------------------------------------- /src/example/labels/img-34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-34.txt -------------------------------------------------------------------------------- /src/example/labels/img-35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-35.txt -------------------------------------------------------------------------------- /src/example/labels/img-36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-36.txt -------------------------------------------------------------------------------- /src/example/labels/img-37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-37.txt -------------------------------------------------------------------------------- /src/example/labels/img-38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-38.txt -------------------------------------------------------------------------------- /src/example/labels/img-39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-39.txt -------------------------------------------------------------------------------- /src/example/labels/img-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-4.txt -------------------------------------------------------------------------------- /src/example/labels/img-40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-40.txt -------------------------------------------------------------------------------- /src/example/labels/img-41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-41.txt -------------------------------------------------------------------------------- /src/example/labels/img-42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-42.txt -------------------------------------------------------------------------------- /src/example/labels/img-43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-43.txt -------------------------------------------------------------------------------- /src/example/labels/img-44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-44.txt -------------------------------------------------------------------------------- /src/example/labels/img-45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-45.txt -------------------------------------------------------------------------------- /src/example/labels/img-46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-46.txt -------------------------------------------------------------------------------- /src/example/labels/img-47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-47.txt -------------------------------------------------------------------------------- /src/example/labels/img-48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-48.txt -------------------------------------------------------------------------------- /src/example/labels/img-49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-49.txt -------------------------------------------------------------------------------- /src/example/labels/img-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-5.txt -------------------------------------------------------------------------------- /src/example/labels/img-50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-50.txt -------------------------------------------------------------------------------- /src/example/labels/img-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-6.txt -------------------------------------------------------------------------------- /src/example/labels/img-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-7.txt -------------------------------------------------------------------------------- /src/example/labels/img-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-8.txt -------------------------------------------------------------------------------- /src/example/labels/img-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/labels/img-9.txt -------------------------------------------------------------------------------- /src/example/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/names.txt -------------------------------------------------------------------------------- /src/example/people.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/example/people.mp4 -------------------------------------------------------------------------------- /src/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigvisionai/pyOpenAnnotate/HEAD/src/tools/visualize.py --------------------------------------------------------------------------------