目标跟踪代码matlab
时间: 2023-10-11 22:12:43 浏览: 69
目标跟踪代码matlab需要使用matconvnet库进行编译。首先,在matlab命令行窗口执行以下命令将matconvnet库用GPU编译:
`vl_compilenn('enableGpu', true)`
接下来,将vl_simplenn.m文件中第149行`l = net.layers{i}`的后面加入以下代码:
```
if gpuMode && strcmp(l.type, 'conv')
l.weights{1} = gpuArray(l.weights{1});
l.weights{2} = gpuArray(l.weights{2});
end
```
这样,你就可以在matlab中使用GPU进行目标跟踪代码的编译和运行了。
阅读全文