我正在尝试使用 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()
在openVX
标题 ( openvx/include/VX/vx_*
) 中找到函数。
任何人都可以帮助我使用 openVX 读写和显示图像。
谢谢你。