使用openVX

时间:2017-07-14 10:21:03

标签: openvx

我正在尝试使用openVX读取图像。 我通过参考一些样本编写了以下程序。

#include <iostream>
#include <string>
//#include <vx_examples.h>
#include <VX/vx.h>
//#include <VX/vx_helper.h>

using namespace std;
int main(int argc, char** argv)
{
 cout << "SampleOpenVXCode" << endl;
 vx_image vxSrc;
 vx_context context = vxCreateContext();
 vxuFReadImage(context, argv[1], vxSrc);
 vxuFWriteImage(context, vxSrc, "/home/deepak/Desktop/test.jpg");
}

但我收到了以下错误。

openvxTest.cpp: In function ‘int main(int, char**)’:
openvxTest.cpp:18:39: error: ‘vxuFReadImage’ was not declared in this scope
  vxuFReadImage(context, argv[1], vxSrc);
                                       ^
openvxTest.cpp:20:65: error: ‘vxuFWriteImage’ was not declared in this scope
  vxuFWriteImage(context, vxSrc, "/home/deepak/Desktop/test.jpg");

此外,我无法在vxuFWriteImage()标题(vxuFReadImage())中找到函数openVXopenvx/include/VX/vx_*

任何人都可以帮我看看使用openVX写和显示图像。

谢谢。

1 个答案:

答案 0 :(得分:1)

OpenVX specification中没有此类功能。这是针对特定平台的交叉编译?因为他们可能已经编写了这个API,因此需要链接适当的头文件和库。