wikitude

Replace the camera stream in a Wikitude ArchitectView with an external video stream

对着背影说爱祢 提交于 2019-12-25 08:34:00
问题 I'm working on an Android mobile app oriented to the real time augmented visualization of a drone's camera view (specifically I'm working on a DJI Phantom 3 Professional with relative SDK). I'm using Wikitude framework for the AR part. Every Wikitude sample works by augmenting the smartphone's camera view, so I need to redirect the input video stream. At this stage, by using the DJI SDK features, I have a TextureView object containing the correctly decoded stream coming from the drone. The

Hi I am trying to execute the Wikitude sample application, but I am getting these compile errors, please help me in this

十年热恋 提交于 2019-12-25 03:56:32
问题 Build WikitudeAPI-SCM-Test of project WikitudeAPI-SCM-Test with configuration Debug Ld build/Debug-iphonesimulator/WikitudeAPI-SCM-Test.app/WikitudeAPI-SCM-Test normal i386 cd /Users/srinivas/Downloads/WikitudeAPI_iPhone_1.0.7/SampleApp setenv MACOSX_DEPLOYMENT_TARGET 10.6 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot

Can't load my world, issue with loading architect://architect.js

孤人 提交于 2019-12-24 07:35:52
问题 I am able to run the HelloWorld sample within the Wikitude PhoneGap Plugin package for iOS. However, when I carefully copy the necessary files and frameworks to my own vanilla PhoneGap project, I experience the following when trying to load the same HelloWorld world: Whenever I leave <script src="architect://architect.js"></script> in my code, the app crashes at the big Wikitude logo (right before is minimizes to the lower left corner) When I delete that line, the app does not crash but does

Customize Wikitude main view with Wikitude API

这一生的挚爱 提交于 2019-12-22 17:40:10
问题 I'm trying to use Wikitude API in an Android app, but there's very little documentation about it. So, is there any way to add an action bar to the wikitude view? And some buttons? Because I just see the way to add menu buttons, but nothing else. 回答1: IF you read the document we can just customise things which are given in doc like adding menu buttons and appending images to poi. As I asked to developer of wikitude they replied me as, when I asked about customising UI. -Unfortunately your

Augmented Reality in Hybrid mobile application

坚强是说给别人听的谎言 提交于 2019-12-22 08:57:43
问题 I am creating a hybrid mobile application using jQueryMobile and phonegap. Now I need to implement the augmented reality in camera view to the application. I got wikitude for this purpose. Can I do the functionality mentioned in the following link using hybrid mobile application? http://www.wikitude.com/showcases/active-website-augments-real-estate/ I got some sample application here https://github.com/Wikitude/wikitude-phonegap/tree/master/Android But I am confused whether I can use this for

Wikitude black screen with no location [closed]

这一生的挚爱 提交于 2019-12-14 03:23:30
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . I'm about to run the one of the POI example app on Android by Wikitude. I made an Android project and coped the sample wikitude project to my assets folder. I've copied a free, trial licence key, when I'm launching the Activity. However, I have a black screen and the "Trying to

Issue with arm and x86 in blackberry10 wikitude app

情到浓时终转凉″ 提交于 2019-12-11 09:51:40
问题 I am working on a Blackberry 10 app using wikitude SDK. I am using the documentation on the website and adding the libraries to the project . When the project is built , I am getting an error with "ntox86-ld" . I am new to this and cannot debug the error. The error is: 19:53:36 **** Build of configuration Simulator-Debug for project ARCascadesProject **** make -j4 Simulator-Debug make -C .//translations -f Makefile update cd x86 && D:/bbndk/host_10_2_0_15/win32/x86/usr/bin/qmake -spec

Wikitude plugin in Xamarin captured image

蹲街弑〆低调 提交于 2019-12-11 05:37:59
问题 I have created a new plugin for Wikitude. I want to send the recognized image to another API . in the first place I have to get the image but I'm failed. I have asked this question in Wikitude forums too but no one answer. Here is my plugin code: I'm using Wikitude 6.0 and VisualStudio 2017 public class Plugin02 : Com.Wikitude.Common.Plugins.Plugin { public Plugin02(string p0) : base(p0) { } public override void CameraFrameAvailable(Frame p0) { try { // try 1 BitmapFactory.Options Options =

How to pass data from Phonegap view to architect view from wikitude

自作多情 提交于 2019-12-11 01:54:58
问题 I am making a augmented reality / voice recognition app using Phonegap, wikitude and voicerecognizer (phonegap plugin). Almost everything works: The app launches the native speech api, saves the result in an input field, and then starts de wikitude ARchitect view. I have to put the value from the input field trough to the ARchitect view (this had to infect the models that show). The Problem is: I've no idea how to do this. I tried a lot of things but nothing worked. I was realy close to the

How to use wikitude plugin in xamarin forms?

核能气质少年 提交于 2019-12-11 00:42:04
问题 I am using Xamarin to develop cross platform AR application. I am using Wikitude instant tracking. I am able to start the Wikitude activity and able to run the Instant tracking...Now I want capture the high resolution image while tracking...I am trying to build the plugin to get the frame and then convert it to image stream Her is my Wikitude activity namespace XamarinExample.Droid { [Activity(Label = "WikitudeActivity")] public class WikitudeActivity : Activity, ArchitectView