├── .gitignore ├── LICENSE ├── LICENSE-DAVIS ├── README.md ├── benchmark.py ├── pyproject.toml ├── requirements.txt └── vos_benchmark ├── __init__.py ├── benchmark.py ├── evaluator.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-DAVIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/LICENSE-DAVIS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/benchmark.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | Pillow 3 | tqdm 4 | opencv-python 5 | scikit-image -------------------------------------------------------------------------------- /vos_benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vos_benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/vos_benchmark/benchmark.py -------------------------------------------------------------------------------- /vos_benchmark/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/vos_benchmark/evaluator.py -------------------------------------------------------------------------------- /vos_benchmark/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkchengrex/vos-benchmark/HEAD/vos_benchmark/utils.py --------------------------------------------------------------------------------