-
Notifications
You must be signed in to change notification settings - Fork 46
vot test fails with the trax exception #71
Description
Hello,
I am trying to run the ncc_multiobjecrt_mask tracker, which is a simple tracker example from the VOT github. I use module spider to load the opencv ( ml OpenCV/4.9.0-foss-2023a-CUDA-12.3.0-contrib ) and PIL (ml Pillow/10.0.0-GCCcore-12.3.0) on linux, but after running the command
python3 -m vot test ncc_multiobject_mask
I get the following error:
A newer version of the VOT toolkit is available (0.7.1), please update.
Generating dummy sequence
/mnt/appl/software/Python/3.11.5-GCCcore-13.2.0/bin/python3: error while loading shared libraries: libpython3.11.so.1.0: cannot open shared object file: No such file or directory
Unable to connect to tracker
Traceback (most recent call last):
File "/home.stud/myusername/.local/lib/python3.11/site-packages/vot/utilities/cli.py", line 541, in main
do_test(args)
File "/home.stud/myusername/.local/lib/python3.11/site-packages/vot/utilities/cli.py", line 89, in do_test
sequence = generate_dummy(50, objects=3 if runtime.multiobject else 1)
^^^^^^^^^^^^^^^^^^^
File "/home.stud/myusername/.local/lib/python3.11/site-packages/vot/tracker/trax.py", line 539, in multiobject
self._connect()
File "/home.stud/myusername/.local/lib/python3.11/site-packages/vot/tracker/trax.py", line 549, in _connect
self._process = TrackerProcess(self._command, self._envvars, log=log, socket=self._socket, timeout=self._timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home.stud/myusername/.local/lib/python3.11/site-packages/vot/tracker/trax.py", line 293, in init
raise e
File "/home.stud/myusername/.local/lib/python3.11/site-packages/vot/tracker/trax.py", line 289, in init
self._client = Client(stream=(self._process.stdin.fileno(), self._process.stdout.fileno()), log=log)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home.stud/myusername/.local/lib/python3.11/site-packages/trax/client.py", line 86, in init
raise TraxException("Unable to connect to tracker")
trax.TraxException: Unable to connect to tracker
The vot-toolkit version I use is 0.7.0.
I tried to use different versions of opencv but the error is always similar and fails with the GCCcore error.
Also, when I looked into the /mnt/appl/software/Python/3.11.5-GCCcore-13.2.0/lib I see
libpython3.11.so libpython3.11.so.1.0 libpython3.so pkgconfig python3.11
Meaning that libpython3.11.so.1.0 is present in the GCCcore
Thank you in advance
Ruslan