SimpleOpenNI dropping bytes

edited February 2014 in Kinect

I am using processing 2, simple open NI, open NI. When I run the code below I get the error, "[Stream 70] Expected max 1748 data bytes, but got 1908. Dropping..."

import SimpleOpenNI.*; SimpleOpenNI kinect;

void setup() { size(640*2, 480); kinect = new SimpleOpenNI(this); kinect.enableDepth(); kinect.enableRGB(); }

void draw() { kinect.update(); image(kinect.depthImage(), 0, 0); }

The image still displays, but does anyone have any information on this? When searching Google, I ran across similar issues, but that was in 2011 and they were unresolved.

https://github.com/ofTheo/ofxKinect/issues/28

Answers

Sign In or Register to comment.