Acquisition with Track IR 5

Post Reply
simon_o
Posts: 6
Joined: Fri May 08, 2009 1:55 pm

Acquisition with Track IR 5

Post by simon_o »

I have Track IR 4, for which I have written some code (using the OptiTrack API) that works. Now I bought the Track IR 5, and the same code that worked for Track IR 4 doesn't work for Track IR 5. The sensor's LEDs don't light up and there's no acquisition going on. The code that I use to open/start the camera is as follows:

LONG cameraCount;
CComPtr cameraCollection;
cameraCollection.CoCreateInstance(CLSID_NPCameraCollection);
cameraCollection->Enum();

cameraCollection->get_Count(&cameraCount);

if (cameraCount == 0)
{
cameraCollection.Release();
CoUninitialize();

return -1;
}

cameraCollection->Item(0, &m_camera);

m_camera->Open();
m_camera->Start();

So what must I do to make it work?
beckdo
Posts: 520
Joined: Tue Jan 02, 2007 2:02 pm

Re: Acquisition with Track IR 5

Post by beckdo »

Hi, we've haven't released a new version of the OptiTrack SDK which includes support for the TIR5....yet.
simon_o
Posts: 6
Joined: Fri May 08, 2009 1:55 pm

Re: Acquisition with Track IR 5

Post by simon_o »

I see... is that planned anytime soon?

Because if it isn't, the Track IR 5 is useless to me and I'll just return it.
Birch
Posts: 1139
Joined: Thu Jan 30, 2003 5:00 am
Location: Corvallis, Oregon

Re: Acquisition with Track IR 5

Post by Birch »

Yes, we plan to release a version of the OptiTrack SDK which supports the TrackIR 5, but that may take a couple weeks. If you'd like a pre-release build please send an email to support@naturalpoint.com.
Post Reply