大家好,我有一个关于AR技术的问题!
正是我有问题的ARToolKit框架。 我做了教程中的所有内容,但应用程序无法识别我输入的符号。
教程页面:链接
我创造了什么: - 关于符号的模式文件(文件名.patt),并将其添加到\Data\下的项目中 - 随着mk_patt.exe识别图像,我想成为的来源。 - 修改了源代码:
markerID = ARToolKit.getInstance().addMarker("single;data/patt.eslogo;80");
但我不知道我还要做什么。 顺便说一下,这是一个示例,程序使用原始源工作并在符号上绘制立方体。并且新的模式文件是相同的样式,因此没有问题。
知道吗?我没有找到有用的视频,包括确切的方法
更详细:
首先,当我使用mk_patt.exe并给出项目的"camera_para.dat",创建并添加"patt.slogo"模式文件后,我将这一行修改为:
markerID = ARToolKit.getInstance().addMarker("single;Data/patt.slogo;80");
这是绘图方法的要点:
公共空抽奖(GL10 gl) {
...
if (ARToolKit.getInstance().queryMarkerVisible(markerID)) {
立方体抽奖(GL10 gl);
顺便说一下,这是来自 git 的公共"kosiara"示例:链接
logcat 的要点是:
06-20 10:46:02.454 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): ARController::startRunning(): called, start running
06-20 10:46:02.454 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): VideoSource::configure(): video Source video configuration: "-format=NV21"
06-20 10:46:02.454 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): VideoSource::configure(): video Source camera parameters: "Data/camera_para.dat"
06-20 10:46:02.454 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): [error]Opening Android Video Source.
06-20 10:46:02.454 32096-32096/org.artoolkit.ar.samples I/libar: Using supplied video config "-format=NV21".
06-20 10:46:02.454 32096-32096/org.artoolkit.ar.samples I/libar: Requesting images in NV21 format.
06-20 10:46:02.467 32096-32096/org.artoolkit.ar.samples I/ARActivity: Camera initialised
06-20 10:46:02.787 32096-32167/org.artoolkit.ar.samples V/RenderScript: 0xa0c63000 Launching thread(s), CPUs 4
06-20 10:46:03.264 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): [error]Loading single AR marker from file 'Data/patt.slogo', width 80.000000.
06-20 10:46:03.273 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): [error]ARController::addMarker(): called
06-20 10:46:03.273 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): ARController::addMarker(): Added marker (UID=0), total markers loaded: 1, exiting, returning true
06-20 10:46:03.273 32096-32096/org.artoolkit.ar.samples I/ARActivity: Scene configured successfully
06-20 10:46:03.274 32096-32212/org.artoolkit.ar.samples I/libar: cparamSearch beginning search for LGE/Nexus 5/hammerhead, camera 0, aspect ratio 16:9.
06-20 10:46:03.275 32096-32212/org.artoolkit.ar.samples I/libar: Matched cached camera calibration record (1920x1080, focal length 0.00).
06-20 10:46:03.275 32096-32212/org.artoolkit.ar.samples I/libar: Matched cached camera calibration record (1280x720, focal length 0.00).
06-20 10:46:03.695 32096-32096/org.artoolkit.ar.samples I/CameraPreview: Autofocused....
06-20 10:46:03.930 32096-32212/org.artoolkit.ar.samples E/libARWrapper: ARController (native): [error]Android Video Source running 1280x720.
06-20 10:46:03.961 32096-32096/org.artoolkit.ar.samples E/libARWrapper: ARController (native): ARController::initAR() called
我尝试使用另一个模式文件并且它正在工作,但是当我创建关于符号的模式时的过程与现在相同,我不知道为什么程序无法识别我使用相同的逻辑使用的符号。
结论:最终程序使用另一个符号,我用比以前更宽的线条创建,这就是重点。