ros-drivers / openni2_tracker

8 stars 16 forks source link

Unable to create user tracker. #7

Open arunavanag591 opened 8 years ago

arunavanag591 commented 8 years ago

It fails to create the user tracker and rosrun openni2_tracker openni2_tracker results in error.

v-lopez commented 8 years ago

Same issue here

bit-pirate commented 8 years ago

I doubt there will be any feedback, if you provide no details.

v-lopez commented 8 years ago

In our case, using the Orbbec sensor and running this code it fails with the error: "Unable to create user tracker".

It also happens with the following code sample:

int main(int argc, char** argv)
{
    nite::UserTracker userTracker;
    nite::Status niteRc;

    nite::NiTE::initialize();

    niteRc = userTracker.create();
    if (niteRc != nite::STATUS_OK)
    {
        printf("Couldn't create user tracker\n");
        return 3;
    }
}

So most likely is an Orbbec issue in my case.