Search found 514 matches

by beckdo
Wed Jul 18, 2007 10:51 am
Forum: Point Cloud SDK - 3D Point Tracking
Topic: get_CameraCount
Replies: 1
Views: 2713

Re: get_CameraCount

<t>Getting the camera info in the current release is a little difficult. You need wait until point cloud data is being received. So your last attempt is close the only problem is that there is a slight delay before all the camera threads spin up and start producing data.<br/> <br/> The next release ...
by beckdo
Mon Jul 02, 2007 3:14 pm
Forum: General OptiTrack Support
Topic: CoInitializeEx Multithreaded
Replies: 1
Views: 2569

Re: CoInitializeEx Multithreaded

I believe that multithreaded apartment is required for the OptiTrack SDK and attempting to using it in multithreading mode will likely cause it to crash unfortunately.
by beckdo
Sun Jun 17, 2007 1:20 am
Forum: Point Cloud SDK - 3D Point Tracking
Topic: Point Cloud questions
Replies: 14
Views: 14387

Re: Point Cloud questions

Even though we're doing lots of the heavy lifting on the cameras themselves, ultimately the CPU performance is the key player here. The 12 camera limit is a soft limit by the way. I believe with a high end machine you could take it on up to 16 currently. I can't say enough good things about the new ...
by beckdo
Fri Jun 15, 2007 11:02 pm
Forum: General OptiTrack Support
Topic: OptiTrack FLEX:V100
Replies: 7
Views: 4396

Re: OptiTrack FLEX:V100

Hey Mark,

Just to give you a heads up, the Point Cloud SDK is now available.
by beckdo
Tue May 08, 2007 11:15 am
Forum: General OptiTrack Support
Topic: Vector Calculation
Replies: 7
Views: 4859

Re: Vector Calculation

The Point Cloud SDK has been updated with some screenshots.

Here's an additional screen shot using more cameras.


[image]http://media.naturalpoint.com/optitrack ... hot032.png[/image]
by beckdo
Thu May 03, 2007 4:23 pm
Forum: General OptiTrack Support
Topic: Vector Calculation
Replies: 7
Views: 4859

Re: Vector Calculation

<t>This sounds like a good candidate for our Point Cloud SDK which is due out very shortly. It allows 3D tracking of lots of arbitrarily placed markers simultaneously.<br/> <br/> I'm going to try and get someone to update our web site with some of the latest screenshots so people can get a better id...
by beckdo
Thu May 03, 2007 4:19 pm
Forum: General OptiTrack Support
Topic: Modified win32 sample hangs
Replies: 13
Views: 11255

Re: Modified win32 sample hangs

Another way to solve the 'hang' problem without needing the Beta SDK is to put this code in your main loop: MSG msg; while( PeekMessage( &msg, NULL, 0, 0, PM_NOREMOVE ) ) { if(GetMessage( &msg, NULL, 0, 0 ) ) { TranslateMessage(&msg); DispatchMessage(&msg); } } Since it's a console a...
by beckdo
Tue May 01, 2007 1:31 pm
Forum: General OptiTrack Support
Topic: Modified win32 sample hangs
Replies: 13
Views: 11255

Re: Modified win32 sample hangs

Actually, in your code you need to make sure not to call NPVector->Update with a NULL camera frame (pFrame==NULL) Bracket the frame processing with a check like this... if(pFrame!=NULL) { hr = pVector->Update(pCamera, pFrame); ...your processing code here... hr = pFrame->Release(); } Once I added th...
by beckdo
Tue May 01, 2007 11:45 am
Forum: General OptiTrack Support
Topic: Modified win32 sample hangs
Replies: 13
Views: 11255

Re: Modified win32 sample hangs

You'll want to rebuild your application after installing the beta SDK. That will solve your crash.
by beckdo
Tue Apr 24, 2007 9:30 am
Forum: General OptiTrack Support
Topic: Gray scale image in c++
Replies: 4
Views: 3236

Re: Gray scale image in c++

Are you looking to access the grayscale, or are you actually looking for a sample that actually displays the data?