votchallenge / integration

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

python_ncc_mask.py can not use #4

Closed Naughty-Galileo closed 1 year ago

Naughty-Galileo commented 1 year ago

AttributeError: 'MultiObjectTrackerRuntime' object has no attribute '_runtime'

lukacu commented 1 year ago

Yes, the tracker that you are trying to run is single-object tracker and cannot be applied to multiple object tracking experiments at the moment. Use python_ncc.py as an example of multi-object tracking.

imadtoubal commented 1 year ago

I think the problem is that you're trying to access self._runtime before even assigning it. This can be fixed by changing vot.tracker.MultiObjectTrackerRuntime, line 554 from:

        if self._runtime.multiobject:

to

        if runtime.multiobject:

Please open this issue again since it does not seem resolved.