You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yesterday I was able to run the simple project inside VS2013. The issue is when you press Esc or close the app it crashes from the ofxKinectCommonBridge. I don't have the source codes here in the office but maybe you can find the issue easily.
Regards,
Ivaylo
The text was updated successfully, but these errors were encountered:
Can you guys provide me with a little more info on where it's crashing? I suspect it might be in how I shut down the ofxKCB but I want to make sure before I make changes and I'm currently without a a Windows 8 machine to test (not ideal, I know)
I ran into the same issue when running the simple project example.
I fixed it simply by calling kinect.stop() before the app closes:
void testApp::close(){
kinect.stop();
}
This way you make sure that the kinect thread is stopped before the app closes.
Otherwise the main thread might destruct your kinect handle while the thread is still running and trying to access it.
Hello @joshuajnoble,
Yesterday I was able to run the simple project inside VS2013. The issue is when you press Esc or close the app it crashes from the ofxKinectCommonBridge. I don't have the source codes here in the office but maybe you can find the issue easily.
Regards,
Ivaylo
The text was updated successfully, but these errors were encountered: