Hi i am currently trying to implement a kinect application using SimpleOpenNI where i will be be able to detect circles in real time from the kinects RGB camera. So far i have completed the following code
//Setting the depth image to the processing PImage function
PImage depthImage = kinect.depthImage();
//Setting the RGB image to the processing PImage function
PImage rgbImage = kinect.rgbImage();
//Call the depth image
image(depthImage, 0, 0);
//Call the rgb image
image(rgbImage, 640, 0);
}
}
The above code works correctly and i am able to view the kinect in a PApplet. I am unsure how to complete the software to be able to recognize circles this is my first time using processing and i need some help how will i be able to detect circles from the kinects RGB camera ? Any ideas or Snippets will be very helpful for me to be able to learn more about processing and different libraries.