We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Using: -Kinect V2 -Windows10 -Processing 3.2.1 -Kinect PV2
MaskTest Code: void draw() { background(0);
image(kinect.getDepthImage(), 0, 0); image(kinect.getBodyTrackImage(), 512, 0);
int [] rawData = kinect.getRawBodyTrack();
foundUsers = false; for(int i = 0; i < rawData.length; i+=5){ if(rawData[i] != 255){ //found something foundUsers = true; break; }
}