To download the data, you need to install the vot-toolkit in any environment.
This step only needs to be done ONCE.
pip install vot-toolkitThen download the data, run the following command (it will download 26 GiB of data)
vot initialize vot2024/mainThis will download the data. The main thing is that you should have a sequences folder with all the challenge sequences from VOTS2023/2024.
Create a directory to store results and logs (for debugging):
mkdir results logs- Build the Docker Image:
docker build -t tracker-image .- Run the Docker Container:
Make sure the
resultsandsequencesdirectories exist on your host machine before running this command. This will also ensure that the container can write outputs to these directories.
docker run --gpus all -v $(pwd)/results:/app/results -v $(pwd)/sequences:/app/sequences -v $(pwd)/logs:/app/logs tracker-imageThis command mounts the results and sequences directories from your current directory to the container and runs the default command specified in the Dockerfile.