Search found 6 matches

by jeffweber
Tue Nov 18, 2014 7:05 am
Forum: Motive
Topic: (1.7 Beta 2) AddTrackables does not seem to be working
Replies: 5
Views: 3794

Re: (1.7 Beta 2) AddTrackables does not seem to be working

Ok, I will look again at this on my end. To be clear, what I found was that after calling Load, Add, Add, the value of NPTrackingTools.TT_TrackableCount() was coming back as 1 rather than 3 like I expected. I will dig a bit more and see if I missed something. I'm using the same code that worked fine...
by jeffweber
Mon Nov 17, 2014 7:57 am
Forum: Motive
Topic: (1.7 Beta 2) AddTrackables does not seem to be working
Replies: 5
Views: 3794

Re: (1.7 Beta 2) AddTrackables does not seem to be working

Any info on this yet. It's got me road-blocked right now.
by jeffweber
Fri Nov 14, 2014 8:37 am
Forum: Motive
Topic: (1.7 Beta 2) AddTrackables does not seem to be working
Replies: 5
Views: 3794

(1.7 Beta 2) AddTrackables does not seem to be working

In the 1.7 beta2, calling AddTrackables after LoadTrackable for multiple .tra files does not load all the files. Only the first file seems to get loaded. More detail: Assume I have 3 trackables files each containing a single rigid body. rigidbody1.tra rigidbody2.tra rigidbody3.tra In version 1.5, I ...
by jeffweber
Thu Nov 13, 2014 9:19 am
Forum: Motive
Topic: Motive 1.7 Beta 2. NPTrackingTools API Issue
Replies: 1
Views: 2072

Motive 1.7 Beta 2. NPTrackingTools API Issue

We use the NPTrackingTools api quite heavily. We currently use the 1.5 version. We use DLLImport to create a C# friendly managed wrapper. With version 1.5, we were able to wrap methods like so: [DllImport("NPTrackingToolsx64.dll")] public static extern void TT_ClearTrackableList(); With th...
by jeffweber
Wed Jun 19, 2013 5:38 am
Forum: Tracking Tools
Topic: LoadTrackables and AddTrackables Issue
Replies: 3
Views: 7028

Re: LoadTrackables and AddTrackables Issue

I'm hitting the tracking API through a managed wrapper, but here are the relevant pieces of code: When screen loads I call: _algorithmCoordinator.LoadTrackablesFile(Trackables.RIGID_BODY_1); _algorithmCoordinator.AddTrackablesFile(Trackables.RIGID_BODY_2); This in-turn calls: public void LoadTrackab...
by jeffweber
Tue Jun 18, 2013 11:29 am
Forum: Tracking Tools
Topic: LoadTrackables and AddTrackables Issue
Replies: 3
Views: 7028

LoadTrackables and AddTrackables Issue

<t>I've created two seperate RigidBody files (.tra files) each containing a single Rigid Body exported from Motiv.<br/> <br/> When I try to track both rigid bodies in my application by calling TT_LoadTrackables(RBFile1.tra) first, then calling TT_AddTrackables(RBFile2.tra) only the Rigid Body from t...