我已经在我的个人电脑上安装了vlfeat,它似乎已经在netbeans上工作了。
我目前正在尝试使用vlfeat的快速转移函数,但无法找到有关如何执行以下操作的任何参考资料:
如果能在这方面提供任何帮助,我将不胜感激。
谢谢。
发布于 2014-02-19 13:55:56
- The `image` is an array of `vl_qs_type` values with three dimensions (respectively widht, height, and channels). Typically, a color (e.g, RGB) image has three channels. The linear index of a pixel is computed with: `channels * width* height + row + height * col`.
- `vl_qs_type` is double, i.e. `typedef double vl_qs_type`.
- `image` is just a double array.
我不确定您采用Vlfeat的目的,但我强烈建议使用Vlfeat的Matlab,因为有许多可用的教程,许多算法都是简单的单一matlab函数调用。
https://stackoverflow.com/questions/21869061
复制相似问题