FCOT
FCOT copied to clipboard
error:can't import name region
Thank you for your work. After running the command: python -c "from pytracking.evaluation.environment import create_default_local_file; create_default_local_file()" error occured : can't import name region At the same time, running the command : python run_video.py fcot fcot_lasot video_path, the same error occured : from the file pytracking\utils\vot_utils\ init.py can't import name region. How to get rid of this problem?
You can handle the problem by building vot_util. The script for building is submitted to this repo. To handle the problem, you can pull the latest repo and run the command
cd pytracking/utils/vot_utils/
python setup.py build_ext --inplace
You can handle the problem by building vot_util. The script for building is submitted to this repo. To handle the problem, you can pull the latest repo and run the command
cd pytracking/utils/vot_utils/ python setup.py build_ext --inplace
Thanks