Page 1 of 1
Can I get 2D marker area?
Posted: Thu Oct 21, 2010 8:11 pm
by Ushikubo Tomohiro
I've been developed OptiTrack SDK, and I've used 2D marker area. On release S250e Camera, I have to use Traking Tools API.
In the OptiTrack SDK, I can get the 2D marker area. But I can't find to get the 2D marker area in Traking Tools API.
Would you tell me how to get the 2D marker area in Traking Tools API?
Re: Can I get 2D marker area?
Posted: Fri Oct 22, 2010 11:26 am
by beckdo
Fortunately you have two options. #1. Use the Tracking Tools API or #2. Use the new Camera SDK (OptiTrack SDK Replacement) that should be available today on our software download's page.
If you're going to use the Tracking Tools API:
Tracking Tools API
-----------------------
First see how many 2D markers a camera has for the current frame with:
TT_CameraMarkerCount(int CameraIndex)
Then fetch each marker with
TT_CameraMarker(int CameraIndex, int MarkerIndex, float &x, float &y);
If you're going to use the Camera SDK, check the sample directory and docs directory for more information.
I would recommend the Camera SDK because it's very easy to use.
Re: Can I get 2D marker area?
Posted: Sun Oct 24, 2010 7:14 pm
by Ushikubo Tomohiro
Thank you for replying to my question.
I'll check the Camera SDK.