My use case is that I want to track different objects kept in different rooms. I uploaded the images of object(1) and downloaded the WTO file and successfully able to track it by setting the targetcollection property of object tracker. Now for the object(2) how should I proceed? I tried having two objecttrackers in my single scene and setting the targetcollection property to different WTO files, but it is not working.
How to track multiple objects in wikitude?
283 Views Asked by Piyush Nariani At
1
There are 1 best solutions below
Related Questions in UNITY-GAME-ENGINE
- How to use invokerepeating and make ui text fade in/out over time?
- Player input not working properly in unity
- Get block in Mesh Unity
- Does Unity render invisible material?
- Physics.OverlapSphere couldn't detect my ‘Player’
- Cannot sync non-player objects in Unity mirror
- How to script a simple collision using hands in OVRCameraRigInteraction?
- Drawing on 3D object at Unity
- How to Override Spline Rotation for Player-Controlled Car in Racing Game?
- Why doesn't my enemy shield take damage first. Instead both enemy and shield are being destroyed together
- unity + Vuforia balck screen in android AR app
- how do I change an objects tag when the game closes
- How to remove white space in a user's input through an input field in Unity?
- Timeline doesn't start eventhough it recognises the trigger input
- Ragdoll 2D Aiming
Related Questions in AUGMENTED-REALITY
- unity + Vuforia balck screen in android AR app
- I want to rotate WebXR Rectile towards walls
- Looking to access wide angle camera of smartphone while making an AR application using Vuforia
- Quest 3 device technical feasibility
- Finding 3D camera location from a known 2D symbol inside an image
- AR Image Display Issue
- Integrating Vuforia with OpenCV Hand Pose Estimator in Unity for Interactive Image Targets
- How to fix destroy method in Unity AR
- How to increase Vuforia camera resolution?
- How can I render a depth map provided from ARCore using sceneview?
- MRTK 3 with Vuforia problem for Image Target Recognition
- Augmented Reality Breadboard Markerless Method with Vuforia and Unity3D
- can't to save oculus spatial anchors (on cloud or locally)
- AR Plane Detection using Oculus Integration Unity SDK
- AR Portal attached to real-life wooden frame
Related Questions in WIKITUDE
- What augmented reality packages can be integrated with flutter, to create an augmented reality environment when reading a QR code?
- Share wikitude AR using openvidu
- Image tracking with object drawing with Wikitude Plugin
- Android Studio cannot find symbol class / package does not exist /wikitude
- Permission for Android strage
- Gradle Error: Colliding Attributes when creating Build
- Speech to text enabling in unity not working
- Can I safely remove the Samples folder in Wikitude?
- Why are native views of Cordova plugins stacked an how can I disable them
- Wikitude crash on Xamarin.Android app No virtual method setLightEstimationMode
- How to recognize a non-rectangular image in Unity?
- Is there 3D Viewer for the Wikitude SDK that doesn't require wt3 file conversion?
- How to track multiple objects in wikitude?
- Creating an app on android studio using wikitude however it constantly crashes on startup
- how to stream Webrtc's camera output to the Wikitude sdk on native android
Related Questions in ANDROID-AUGMENTED-REALITY
- Related to AR core for my flutter project
- Mobile AR – Scaling, Rotating and Dragging 3D Objects
- Improve the quality of my AR image - ARCore Android
- Video in Unity Asset is not embedded in the Android Build
- Implementing Depth API for Collision Detection in Google ARCore Furniture App
- How to launch web AR on android from a QR code
- CommandInvokationFailure: Gradle build failed in unity
- Vuforia marker based AR
- displaying video on ViroReact Hangs
- Android phone camera is not recognising flat image targets : issues with license and database
- How to display AR model_viewer plus on Android
- Inspect point cloud saved with google cloud anchor
- import assets for unity ARcore application from server
- The changes between older and newer versions of Vuforia Engine
- How to add Sceneform dependency into build.gradle?
Related Questions in WIKITUDE-SDK
- Share wikitude AR using openvidu
- Android Studio cannot find symbol class / package does not exist /wikitude
- Gradle Error: Colliding Attributes when creating Build
- Wikitude crash on Xamarin.Android app No virtual method setLightEstimationMode
- How to track multiple objects in wikitude?
- Not able to access wikitude architect package
- Wikitude I/chromium: [INFO:CONSOLE(1)] "Uncaught ReferenceError: World is not defined"
- unity wikitude error? not running in android phone?
- Android Studio Wikitude Native SDK Issue
- No such property: name for class: java.lang.String Open File
- Can we Add 3D Model AR.GeoLocation with Occlusion in Wikitude JAVASCRIPT API
- Wikitude license using wikitude studio
- How to setup wikitude7.1.0sdk on android studio
- Android Studio Wikitiude Samples Error
- How to Bind the Wikitude aar file in xamarin
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you don't need to track multiple targets at the same time, you can use a single ObjectTracker with a single WTO file that contains two targets.
In the Target Manager, you can add the second object to an existing project, resulting in a WTO file with two targets.
In Unity, the ObjectTrackable has OnObjectRecognized and OnObjectLost events, which will allow you to distinguish between which target is currently tracked, so you can enable / disable augmentations as necessary.