ubuntu下安装matlab及配置vot-toolkit
1、ubuntu安装matlab
关于在linux上安装matlab可以借鉴附录5-6,谢谢。
2、ubuntu配置vot-toolkit
2.1 配置vot-toolkit(matlab版)
参考附录1配置matlab版很顺利,需要注意一点是可以参考附录2把workspace_load.m文件下第142行的文件路径换成下载好的vot2016数据集所在路径,省的代码下载太慢。
2.2 配置vot-toolkit(python版)
同样是参考附录1,下面记录在运行run_test的时候出现的问题。
报错1:'TraX support not found. Please add trax module to Python path.
这个比较好解决,在vot.py中import sys
之后加入一行sys.path.append(r'/diskC/hyt/vot-toolkit-master/')
这里改为你的vot-toolkit所在的绝对路径即可。
报错2:Tracker execution interrupted: Unable to start the tracker process TraX support not detected.
这里则是借鉴附录3,参考vot-toolkit-master/tracker/examples/tracker_Demo_py.m
的写法,修改tracker_ncc.m文件如下图,其中tracker_linkpath涉及到trax的编译借鉴附录4。
附录
- Performing evaluation with VOT toolkit | GeYao’s Blog
http://geyao1995.com/fight_against_vot_toolkit/#more - 「vot」VOT工具箱使用笔记 - seo实验室
http://www.seotest.cn/jishu/32185.html - https://github.com/votchallenge/vot-toolkit/issues/215
- Ubuntu16.04下vot-toolkit的python版配置 - 一个菜鸟的奋斗 - ****博客
https://blog.****.net/u013685264/article/details/98627497 - ubuntu16.04安装MATLAB R2017b步骤详解(附完整**文件包) - 思绪无限的博客 - ****博客
https://blog.****.net/qq_32892383/article/details/79670871 - Ubuntu Server 14 安装 Matlab2014的问题 | 码农网
https://www.codercto.com/a/4420.html