Start a new topic

Not able to run 01_ImageTracking_1_ImageOnTarget using cordova Plugin

hi all,


I am trying to load Image on Target option using Wikitude Plugin dynamically. it just showing the page with Loading... We just need only one feature to be implemented. All features are working but if I want to dynamically load single feature. Please help me in this.


Hi,


Can you please describe your issue in more details - it sounds like you're testing the client based Image Recognition feature and have issues with it. Does this issue occur in the sample app? If so, do you get any error log output? Does it occur on Android and iOS or just one platform?


Thx and greetings

Nicola

hi,


Yes I am testing Client based image Recognition feature and it is from the sample app. It occurs in iOS. I don't have any logs for this. index.html page opens up but not the camera. Is there any specific settings I need to do in the app. 

Hi,


So this behaviour occurs with the unchanged sample app and you followed the setup guide in the documentation? Did you make sure that all permissions are set and the lifecycle handling is correct?


Thx and greetings

Nicola

Below are the permission I have added in infoplist. Camaera is opening fine when I integrate with all the features.



{


    "NSAppTransportSecurity" :

    {

        "NSAllowsArbitraryLoads" : true

    } ,

 

    "NSCameraUsageDescription" : "Amway",

    "NSFaceIDUsageDescription": "Amway",

    "NFCReaderUsageDescription":"Amway",

    "NSPhotoLibraryAddUsageDescription":"",

    "NSLocationAlwaysAndWhenInUseUsageDescription": "",

    "NSLocationWhenInUseUsageDescription":"",

    "NSPhotoLibraryUsageDescription":"",

    "Privacy - Media Library Usage Description": "For sharing downloaded videos"


}


My index.html looks like this

<body>

<script type="text/javascript" src="cordova.js"></script>

<script type="text/javascript" src="js/sampleIndices.js"></script>

<script type="text/javascript" src="js/loadingPoisFromApplicationModel.js"></script>

<script type="text/javascript" src="js/index.js"></script>

      <script>

        alert("before");

        app.initialize();

        app.loadExampleARchitectWorld(getSamplePath(0, 0));

        alert("after");

      </script>


index.js


/*

 * Licensed to the Apache Software Foundation (ASF) under one

 * or more contributor license agreements.  See the NOTICE file

 * distributed with this work for additional information

 * regarding copyright ownership.  The ASF licenses this file

 * to you under the Apache License, Version 2.0 (the

 * "License"); you may not use this file except in compliance

 * with the License.  You may obtain a copy of the License at

 *

 * http://www.apache.org/licenses/LICENSE-2.0

 *

 * Unless required by applicable law or agreed to in writing,

 * software distributed under the License is distributed on an

 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY

 * KIND, either express or implied.  See the License for the

 * specific language governing permissions and limitations

 * under the License.

 */

var app = {


    // represents the device capability of launching ARchitect Worlds with specific features

    isDeviceSupported: false,

    isArchitectWorldLoaded: false,


    // Application Constructor

    initialize: function() {

        this.bindEvents();

    },

    // Bind Event Listeners

    //

    // Bind any events that are required on startup. Common events are:

    // 'load', 'deviceready', 'offline', and 'online'.

    bindEvents: function() {

        document.addEventListener('deviceready', this.onDeviceReady, false);

    },

    // deviceready Event Handler

    onDeviceReady: function() {

        app.wikitudePlugin = cordova.require("com.wikitude.phonegap.WikitudePlugin.WikitudePlugin");

        // set a callback for android that is called once the back button was clicked.

        if ( cordova.platformId == "android" ) {

            app.wikitudePlugin.setBackButtonCallback(app.onBackButton);

        }

        app.wikitudePlugin.setJSONObjectReceivedCallback(app.onJSONObjectReceived);

    },

    // --- Wikitude Plugin ---

    loadExampleARchitectWorld: function(example) {

alert("example"+JSON.stringify(example));

        app.isArchitectWorldLoaded = false;

        // inject poi data using phonegap's GeoLocation API and inject data using World.loadPoisFromJsonData

        if ( example.requiredExtension === "ObtainPoiDataFromApplicationModel" ) {

            prepareApplicationDataModel();

        }


        /* cordova.file.applicationDirectory is used to demonstrate the use of the cordova file plugin in combination with the Wikitude plugin */

        /* The length check here is only necessary because for each example the same 'example' object is given here and we only want to change the path once. */

      /*  

      if ( example.path.length > cordova.file.applicationDirectory ) {

            if ( example.path.substring(0, cordova.file.applicationDirectory) != cordova.file.applicationDirectory ) {

                example.path = cordova.file.applicationDirectory + example.path;

            }

        }

*/

       alert("prepareArchitectWorld b efoer"+JSON.stringify(example));

        app.prepareArchitectWorld(example, function() {

          alert("prepareArchitectWorld"+JSON.stringify(example));

            app.loadARchitectWorld(example);

        });

    },

    loadCustomARchitectWorldFromURL: function(url) {

        var customArchitectWorld = {

            "path": url,

            "requiredFeatures": [

                "image_tracking",

                "geo"

            ],

            "startupConfiguration": {

                "camera_position": "back"

            }

        };

        app.isArchitectWorldLoaded = false;

        app.prepareArchitectWorld(customArchitectWorld, function() {

            app.loadARchitectWorld(customArchitectWorld);

        });

    },

    prepareArchitectWorld: function(architectWorld, successCallback) {

      alert("isDeviceSupported first"+JSON.stringify(app.wikitudePlugin));

        app.wikitudePlugin.isDeviceSupported(function() {

          alert("isDeviceSupported"+JSON.stringify(app.wikitudePlugin));

            app.wikitudePlugin.requestAccess(

                function() {

                  alert("Inside")

                    successCallback();

                },

                function(error) {

                    /* The error object contains two error messages.

                        * userDescription is a end user formatted message that can be displayed with e.g. a JS alert

                        * developerDescription is a developer formatted message with more detailed information about the error

                     */

                    /* Here, the userDescription is used to show a confirmation box which, in case of a positive result, shows the applications settings so that user can grant access. */

                    var openAppSettings = confirm(error.userDescription + '\nOpen App Settings?');

                    if ( openAppSettings == true ) {

                        app.wikitudePlugin.openAppSettings();

                    }

                },

                architectWorld.requiredFeatures);

          alert("step1");

        }, function(errorMessage) {

            alert(errorMessage);

        },

        architectWorld.requiredFeatures);

      alert("step2");

    },

    // Use this method to load a specific ARchitect World from either the local file system or a remote server

    loadARchitectWorld: function(architectWorld) {

      

        app.wikitudePlugin.loadARchitectWorld(function successFn(loadedURL) {

                /* Respond to successful world loading if you need to */

                app.isArchitectWorldLoaded = true;


                /* in case the loaded Architect World belongs to the 'obtain poi data from application model' example, we can now safely inject poi data. */

                if ( architectWorld.requiredExtension === "ObtainPoiDataFromApplicationModel" ) {

                    injectGeneratedPoiJsonData();

                }

            }, function errorFn(error) {

                app.isArchitectWorldLoaded = false;

                alert('Loading AR web view failed: ' + error);

            },

            architectWorld.path, architectWorld.requiredFeatures, architectWorld.startupConfiguration

        );

      alert("architectWorld"+JSON.stringify(architectWorld));

    },

    // This function gets called if you call "AR.platform.sendJSONObject" in your ARchitect World

    onJSONObjectReceived: function (jsonObject) {

        if (typeof jsonObject.action !== 'undefined') {

            if ( jsonObject.action === "capture_screen" ) {

                app.wikitudePlugin.captureScreen(

                    function(absoluteFilePath) {

                        alert("snapshot stored at:\n" + absoluteFilePath);

                    },

                    function (errorMessage) {

                        alert(errorMessage);

                    },

                    true, null

                );

            } else if (jsonObject.action === "present_poi_details") {

                var alertMessage = "Poi '" + jsonObject.id + "' selected\nTitle: " + jsonObject.title + "\nDescription: " + jsonObject.description;

                alert(alertMessage);

            } else if (jsonObject.action === "save_current_instant_target") {

                window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem){

                    fileSystem.root.getFile("SavedAugmentations.json", {create: true, exclusive: false}, function(fileEntry){

                        fileEntry.createWriter(function(writer){

                            writer.write(JSON.stringify(jsonObject.augmentations));

                        }, app.saveError);

                    }, app.saveError);

                }, app.saveError);

                app.wikitudePlugin.callJavaScript("World.saveCurrentInstantTargetToUrl(\"" + cordova.file.dataDirectory + "SavedInstantTarget.wto" + "\");")

            } else if (jsonObject.action === "load_existing_instant_target") {

                window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem){

                    fileSystem.root.getFile("SavedAugmentations.json", null, function(fileEntry){

                        fileEntry.file(function(file){

                            var reader = new FileReader();

                            reader.onloadend = function(evt) {

                                var augmentations = evt.target.result;

                                app.wikitudePlugin.callJavaScript("World.loadExistingInstantTargetFromUrl(\"" + cordova.file.dataDirectory + "SavedInstantTarget.wto" + "\"," + augmentations + ");");

                            };

                            reader.readAsText(file);

                        }, app.loadError);

                    }, app.loadError);

                }, app.loadError);

            }

        }

    },

    saveError: function(error) {

        alert("Could not save the current instant target.");

    },

    loadError: function(error) {

        alert("Could not load instant target, please save it first.");

    },

    onBackButton: function() {

        /* Android back button was pressed and the Wikitude PhoneGap Plugin is now closed */

    },

    showBuildInformation: function() {

        var sdkVersion = ""


        app.wikitudePlugin.getSDKVersion(function(version){ sdkVersion = version });


        app.wikitudePlugin.getSDKBuildInformation(function(buildInformationJSON) {

            var buildInformation = JSON.parse(buildInformationJSON);

            alert(

                "Build configuration: " + buildInformation.buildConfiguration + "\n" +

                "Build date: " + buildInformation.buildDate + "\n" +

                "Build number: " + buildInformation.buildNumber + "\n" +

                "Build version: " + sdkVersion

            );

        });

    }

    // --- End Wikitude Plugin ---

};


app.initialize();



Still I am unable to launch the camera

Hello,



I think the best thing to get to the bottom of this issue would be for you to check the JavaScript console for any errors, I suspect there will be something.


To do that on an iOS device you need to use Safari. While you device is running the app and is connected to your Mac, go to Developer > YOUR_DEVICE > index.html. Click the reload button and see whether any errors pop up.



- Daniel

Login or Signup to post a comment