votchallenge / integration

Integration examples and utilities for VOT toolkit
10 stars 13 forks source link

No module named 'python_ncc' #1

Closed JudasDie closed 4 years ago

JudasDie commented 4 years ago

Hi, After configuring the new toolkit following the tutorial, it raises an error "No module named 'python_ncc'" when I run the tracker. Could you kindly help me to fix it? Here is the configuration file, image

alanlukezic commented 4 years ago

Hi, it looks like the problem is in <>, which should be deleted.

JudasDie commented 4 years ago

Hi, it looks like the problem is in <>, which should be deleted.

Thanks. After fixing this, the NCC tracker runs on a dummy video. But I couldn't find where it saves the results or downloads videos. Is this normal?

image

alanlukezic commented 4 years ago

This is the output of the vot test command, which only tests if a tracker is successfully integrated to the toolkit - it just runs the tracker on a dummy sequence and it does not save results on a disk. If you want to run your tracker on the vot sequences you need to run the vot evaluate command:

vot evaluate --workspace

The results are saved in the results folder in vot-workspace directory.

JudasDie commented 4 years ago

This is the output of the vot test command, which only tests if a tracker is successfully integrated to the toolkit - it just runs the tracker on a dummy sequence and it does not save results on a disk. If you want to run your tracker on the vot sequences you need to run the vot evaluate command:

vot evaluate --workspace

The results are saved in the results folder in vot-workspace directory.

Thanks a lot!