我有一个名为Core Features的vuforia示例,它在Reference Link
上正常运行我想使用vufoira同时检测两个图像目标。
我找到了这个链接:Reference Link for two images
我不知道#include <iostream>
#include <string>
class Foo
{
public:
Foo(double d)
: mD(d)
{
}
Foo(const std::string& str)
{
try
{
mD = std::stod(str);
}
catch (...)
{
throw;
}
}
Foo(const Foo& other)
: mD(other.mD)
{
}
virtual ~Foo() {}
protected:
double mD;
};
class Bar
{
public:
Bar(const Foo& a, const Foo& b)
: mA(a)
, mB(b)
{
}
virtual ~Bar() {}
protected:
Foo mA;
Foo mB;
};
int main(int argc, char* argv[])
{
if (argc < 3) { return 0; }
Foo a(std::string(argv[1]));
Foo b(std::string(argv[2]));
Bar wtf(a, b);
}
文件的位置或我应该添加的位置。我不明白它应该如何运作。任何有关指南或步骤的帮助都将受到高度赞赏
答案 0 :(得分:0)
首先检查Android NDK上的示例和指南:
https://developer.android.com/ndk/index.html
一旦你能够匹配java和cpp clode for android,下载Vuforia SKD,将它包含在你的项目中并浏览他们准备的所有教程和文档
答案 1 :(得分:0)
取代“核心功能”示例,使用链接从{Vuforia示例>下载“高级主题”:https://developer.vuforia.com/downloads/samples
IMP:你还必须在android studio中设置“NDK”的路径来编译C ++代码。请在谷歌搜索“如何在Android工作室设置NDK”
我认为关注链接会对您有所帮助:
https://library.vuforia.com/articles/Solution/How-To-Communicate-Between-Java-and-C-using-the-JNI