├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── data └── aliases │ ├── analysis.json │ ├── downloader.json │ ├── experiment.json │ ├── indexer.json │ ├── loader.json │ ├── report.json │ └── transformer.json ├── docs ├── Makefile ├── api.rst ├── api │ ├── analysis.rst │ ├── dataset.rst │ ├── experiment.rst │ ├── region.rst │ ├── report.rst │ ├── stack.rst │ ├── tracker.rst │ └── utilities.rst ├── conf.py ├── index.rst ├── overview.rst ├── requirements.txt ├── tutorials.rst └── tutorials │ ├── cli.rst │ ├── dataset.rst │ ├── integration.rst │ ├── jupyter.rst │ ├── report.rst │ ├── stack.rst │ └── workspace.rst ├── requirements.txt ├── setup.py └── vot ├── __init__.py ├── __main__.py ├── analysis ├── __init__.py ├── accuracy.py ├── failures.py ├── longterm.py ├── multistart.py ├── processor.py ├── supervised.py └── tests.py ├── dataset ├── __init__.py ├── common.py ├── cow.png ├── dummy.py ├── got10k.py ├── otb.py ├── proxy.py └── trackingnet.py ├── experiment ├── __init__.py ├── helpers.py ├── multirun.py ├── multistart.py └── transformer.py ├── region ├── __init__.py ├── io.py ├── raster.py ├── shapes.py └── tests.py ├── report ├── __init__.py ├── commands.tex ├── common.py ├── html.py ├── jquery.js ├── latex.py ├── pure.css ├── report.css ├── report.js ├── table.js ├── tests.py └── video.py ├── stack ├── __init__.py ├── otb100.yaml ├── otb50.yaml ├── tests.py ├── tests │ ├── basic.yaml │ ├── multiobject.yaml │ └── segmentation.yaml ├── vot2013.yaml ├── vot2014.yaml ├── vot2015 │ ├── rgb.yaml │ └── tir.yaml ├── vot2016 │ ├── rgb.yaml │ └── tir.yaml ├── vot2017.yaml ├── vot2018 │ ├── longterm.yaml │ └── shortterm.yaml ├── vot2019 │ ├── longterm.yaml │ ├── rgbd.yaml │ ├── rgbtir.yaml │ └── shortterm.yaml ├── vot2020 │ ├── longterm.yaml │ ├── rgbd.yaml │ ├── rgbtir.yaml │ └── shortterm.yaml ├── vot2021 │ ├── longterm.yaml │ ├── rgbd.yaml │ └── shortterm.yaml ├── vot2022 │ ├── depth.yaml │ ├── longterm.yaml │ ├── rgbd.yaml │ ├── shortterm.yaml │ └── shorttermbox.yaml ├── vots2023.yaml ├── vots2024 │ ├── main.yaml │ ├── votst.yaml │ └── votstval.yaml └── vots2025 │ ├── main.yaml │ ├── realtime.yaml │ ├── votst.yaml │ └── votstval.yaml ├── tracker ├── __init__.py ├── dummy.py ├── results.py ├── tests.py └── trax.py ├── utilities ├── __init__.py ├── cli.py ├── data.py ├── draw.py ├── io.py ├── migration.py ├── net.py └── notebook.py ├── version.py └── workspace ├── __init__.py ├── storage.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/README.md -------------------------------------------------------------------------------- /data/aliases/analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/data/aliases/analysis.json -------------------------------------------------------------------------------- /data/aliases/downloader.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /data/aliases/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/data/aliases/experiment.json -------------------------------------------------------------------------------- /data/aliases/indexer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/data/aliases/indexer.json -------------------------------------------------------------------------------- /data/aliases/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/data/aliases/loader.json -------------------------------------------------------------------------------- /data/aliases/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/data/aliases/report.json -------------------------------------------------------------------------------- /data/aliases/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/data/aliases/transformer.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/api/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/analysis.rst -------------------------------------------------------------------------------- /docs/api/dataset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/dataset.rst -------------------------------------------------------------------------------- /docs/api/experiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/experiment.rst -------------------------------------------------------------------------------- /docs/api/region.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/region.rst -------------------------------------------------------------------------------- /docs/api/report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/report.rst -------------------------------------------------------------------------------- /docs/api/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/stack.rst -------------------------------------------------------------------------------- /docs/api/tracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/tracker.rst -------------------------------------------------------------------------------- /docs/api/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/api/utilities.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials.rst -------------------------------------------------------------------------------- /docs/tutorials/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/cli.rst -------------------------------------------------------------------------------- /docs/tutorials/dataset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/dataset.rst -------------------------------------------------------------------------------- /docs/tutorials/integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/integration.rst -------------------------------------------------------------------------------- /docs/tutorials/jupyter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/jupyter.rst -------------------------------------------------------------------------------- /docs/tutorials/report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/report.rst -------------------------------------------------------------------------------- /docs/tutorials/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/stack.rst -------------------------------------------------------------------------------- /docs/tutorials/workspace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/docs/tutorials/workspace.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/setup.py -------------------------------------------------------------------------------- /vot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/__init__.py -------------------------------------------------------------------------------- /vot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/__main__.py -------------------------------------------------------------------------------- /vot/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/__init__.py -------------------------------------------------------------------------------- /vot/analysis/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/accuracy.py -------------------------------------------------------------------------------- /vot/analysis/failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/failures.py -------------------------------------------------------------------------------- /vot/analysis/longterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/longterm.py -------------------------------------------------------------------------------- /vot/analysis/multistart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/multistart.py -------------------------------------------------------------------------------- /vot/analysis/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/processor.py -------------------------------------------------------------------------------- /vot/analysis/supervised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/supervised.py -------------------------------------------------------------------------------- /vot/analysis/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/analysis/tests.py -------------------------------------------------------------------------------- /vot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/__init__.py -------------------------------------------------------------------------------- /vot/dataset/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/common.py -------------------------------------------------------------------------------- /vot/dataset/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/cow.png -------------------------------------------------------------------------------- /vot/dataset/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/dummy.py -------------------------------------------------------------------------------- /vot/dataset/got10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/got10k.py -------------------------------------------------------------------------------- /vot/dataset/otb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/otb.py -------------------------------------------------------------------------------- /vot/dataset/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/proxy.py -------------------------------------------------------------------------------- /vot/dataset/trackingnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/dataset/trackingnet.py -------------------------------------------------------------------------------- /vot/experiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/experiment/__init__.py -------------------------------------------------------------------------------- /vot/experiment/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/experiment/helpers.py -------------------------------------------------------------------------------- /vot/experiment/multirun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/experiment/multirun.py -------------------------------------------------------------------------------- /vot/experiment/multistart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/experiment/multistart.py -------------------------------------------------------------------------------- /vot/experiment/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/experiment/transformer.py -------------------------------------------------------------------------------- /vot/region/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/region/__init__.py -------------------------------------------------------------------------------- /vot/region/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/region/io.py -------------------------------------------------------------------------------- /vot/region/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/region/raster.py -------------------------------------------------------------------------------- /vot/region/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/region/shapes.py -------------------------------------------------------------------------------- /vot/region/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/region/tests.py -------------------------------------------------------------------------------- /vot/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/__init__.py -------------------------------------------------------------------------------- /vot/report/commands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/commands.tex -------------------------------------------------------------------------------- /vot/report/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/common.py -------------------------------------------------------------------------------- /vot/report/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/html.py -------------------------------------------------------------------------------- /vot/report/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/jquery.js -------------------------------------------------------------------------------- /vot/report/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/latex.py -------------------------------------------------------------------------------- /vot/report/pure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/pure.css -------------------------------------------------------------------------------- /vot/report/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/report.css -------------------------------------------------------------------------------- /vot/report/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/report.js -------------------------------------------------------------------------------- /vot/report/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/table.js -------------------------------------------------------------------------------- /vot/report/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vot/report/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/report/video.py -------------------------------------------------------------------------------- /vot/stack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/__init__.py -------------------------------------------------------------------------------- /vot/stack/otb100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/otb100.yaml -------------------------------------------------------------------------------- /vot/stack/otb50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/otb50.yaml -------------------------------------------------------------------------------- /vot/stack/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/tests.py -------------------------------------------------------------------------------- /vot/stack/tests/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/tests/basic.yaml -------------------------------------------------------------------------------- /vot/stack/tests/multiobject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/tests/multiobject.yaml -------------------------------------------------------------------------------- /vot/stack/tests/segmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/tests/segmentation.yaml -------------------------------------------------------------------------------- /vot/stack/vot2013.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2013.yaml -------------------------------------------------------------------------------- /vot/stack/vot2014.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2014.yaml -------------------------------------------------------------------------------- /vot/stack/vot2015/rgb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2015/rgb.yaml -------------------------------------------------------------------------------- /vot/stack/vot2015/tir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2015/tir.yaml -------------------------------------------------------------------------------- /vot/stack/vot2016/rgb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2016/rgb.yaml -------------------------------------------------------------------------------- /vot/stack/vot2016/tir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2016/tir.yaml -------------------------------------------------------------------------------- /vot/stack/vot2017.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2017.yaml -------------------------------------------------------------------------------- /vot/stack/vot2018/longterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2018/longterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2018/shortterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2018/shortterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2019/longterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2019/longterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2019/rgbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2019/rgbd.yaml -------------------------------------------------------------------------------- /vot/stack/vot2019/rgbtir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2019/rgbtir.yaml -------------------------------------------------------------------------------- /vot/stack/vot2019/shortterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2019/shortterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2020/longterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2020/longterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2020/rgbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2020/rgbd.yaml -------------------------------------------------------------------------------- /vot/stack/vot2020/rgbtir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2020/rgbtir.yaml -------------------------------------------------------------------------------- /vot/stack/vot2020/shortterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2020/shortterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2021/longterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2021/longterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2021/rgbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2021/rgbd.yaml -------------------------------------------------------------------------------- /vot/stack/vot2021/shortterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2021/shortterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2022/depth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2022/depth.yaml -------------------------------------------------------------------------------- /vot/stack/vot2022/longterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2022/longterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2022/rgbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2022/rgbd.yaml -------------------------------------------------------------------------------- /vot/stack/vot2022/shortterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2022/shortterm.yaml -------------------------------------------------------------------------------- /vot/stack/vot2022/shorttermbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vot2022/shorttermbox.yaml -------------------------------------------------------------------------------- /vot/stack/vots2023.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2023.yaml -------------------------------------------------------------------------------- /vot/stack/vots2024/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2024/main.yaml -------------------------------------------------------------------------------- /vot/stack/vots2024/votst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2024/votst.yaml -------------------------------------------------------------------------------- /vot/stack/vots2024/votstval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2024/votstval.yaml -------------------------------------------------------------------------------- /vot/stack/vots2025/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2025/main.yaml -------------------------------------------------------------------------------- /vot/stack/vots2025/realtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2025/realtime.yaml -------------------------------------------------------------------------------- /vot/stack/vots2025/votst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2025/votst.yaml -------------------------------------------------------------------------------- /vot/stack/vots2025/votstval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/stack/vots2025/votstval.yaml -------------------------------------------------------------------------------- /vot/tracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/tracker/__init__.py -------------------------------------------------------------------------------- /vot/tracker/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/tracker/dummy.py -------------------------------------------------------------------------------- /vot/tracker/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/tracker/results.py -------------------------------------------------------------------------------- /vot/tracker/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/tracker/tests.py -------------------------------------------------------------------------------- /vot/tracker/trax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/tracker/trax.py -------------------------------------------------------------------------------- /vot/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/__init__.py -------------------------------------------------------------------------------- /vot/utilities/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/cli.py -------------------------------------------------------------------------------- /vot/utilities/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/data.py -------------------------------------------------------------------------------- /vot/utilities/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/draw.py -------------------------------------------------------------------------------- /vot/utilities/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/io.py -------------------------------------------------------------------------------- /vot/utilities/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/migration.py -------------------------------------------------------------------------------- /vot/utilities/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/net.py -------------------------------------------------------------------------------- /vot/utilities/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/utilities/notebook.py -------------------------------------------------------------------------------- /vot/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/version.py -------------------------------------------------------------------------------- /vot/workspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/workspace/__init__.py -------------------------------------------------------------------------------- /vot/workspace/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/workspace/storage.py -------------------------------------------------------------------------------- /vot/workspace/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/votchallenge/toolkit/HEAD/vot/workspace/tests.py --------------------------------------------------------------------------------