The function size() and class "Enumeration" do not exist. why?
import org.openkinect.freenect.*; import org.openkinect.freenect2.*; import org.openkinect.processing.*; import org.openkinect.tests.*; // Daniel Shiffman // Kinect Point Cloud example //...
View Articleinstalling OpenCV
Hello, I can't install OpenCV, nor I can't find any good tutorial to do it for processing. Could you helped me? I tried to installing, maybe in all the ways I've found. Don't you know about some good...
View ArticleHow to get the x position of the Average Point Tracking so as to control...
Hello Guys, I am wondering how can i get the x position of the average point tracking on openkinect lib so as to control servos on a arduino. I am using processing 3, i didn't find any tuto about it,...
View ArticleHow do I make this full screen or at least increase the dimensions?
I'll try and keep this short and snappy. I have this code that will give me a simple black silhouette on Processing 2.0 using the Kinect unfortunately it's stuck at 640 x 480. I know this is because...
View Articlekinect not work
OS:windows 10 64bit jdk 8 processing 2 kinect 2(install kinect 2 sdk,drive normal) but run kinect example anyone ,message: java.lang.unsupportedClassVerisonError
View ArticleSimpleOpenNI fails with Processing 3.0
I'm getting a no such method error when trying to run simple open ni in processing 3.0a9. This happens when I call context = new SimpleOpenNI(this); I assume this is because PApplet has been...
View ArticleHow to detect a blink of an eye in Processing?
Hi people! How would I go about detecting a blink of an eye in Processing? Build of an OpenCV example? Look into FaceOSC? Or something else? Regards Andreas from Denmark
View ArticleKinect with processing and openNi
I am using the kinect with processing using openNi. I am supposed to make an interactive game with the character (skeleton) of the kinect but dont know how!! Can anyone please help me? Its kind of an...
View ArticleKinect_OpenNi
Hello, does anyone know how can i do this using kinect openNi processing?
View ArticleUsing USB WEBCAM in Example from OpenCV using Processing
yes guys excuse me for a second Frank here, but is there a way for me to select the capture device from the list given by the capture getting started example ? and using one of those cameras as the one...
View Articlehow to use the selected capture device in other opencv example in processing ?
yes guys excuse me for a second Frank here, but is there a way for me to select the capture device from the list given by the capture getting started example ? and using one of those cameras as the one...
View ArticleHow can i declare Pvector?
import SimpleOpenNI.*; SimpleOpenNI context; void setup() { size(640,480); background(255); context = new SimpleOpenNI(this); if(context.isInit() == false) { exit(); return; } context.enableDepth();...
View Articlemake virtual drawing with skeleton's hand
float theta1; float theta2; float yval; float xval; import SimpleOpenNI.*; SimpleOpenNI context; color[] userClr = new color[] { color(255, 0, 0), color(0, 255, 0), color(0, 0, 255), color(255, 255,...
View Articlehow do we go about making a visual face in Processing ?
i want to make a interactive face like a simulation that will change facial expressions according to what the camera see in processing using OpenCV but im not sure how such implementation is start, any...
View ArticleUrgent question on collision *detection* between shape and images
I have been stuck at one point for a little while, which is how to do collision detection with ellipses and images. I'm trying to make a kinect game with skeleton calibration. With six boxes on both...
View ArticleHelp! Combining SimpleOpenNi - RealWorldPoint Depthmap with HeightMapNoise
Hello! I am working with the Kinect camera in Processing. And I am trying to combine the depthmap with the HeightMap Noise effect. I will put two codes below. SimpleOpenNi Library; import...
View ArticleKinect Pointclouds for 3d shader or Mesh?
Hi everyone. I would like use the pointclouds from kinect for link them as mesh, or particular, or other fluid simulation. What is the best way about generate it in real-time and easy to do? GLS...
View ArticleLagging while running a sketch, why?
i been trying to build a gif brain simulator that has multiple sketches and a face recognition openCV in the same window and i see the program runs but with lag, can someone expand on this reason or...
View ArticleMake this code to kinect color picker
ColorPicker cp; void setup() { size( 500, 500 ); frameRate( 100 ); cp = new ColorPicker( 10, 10, 400, 400, 255 ); } void draw () { background( 80 ); cp.render(); } public class ColorPicker { int x, y,...
View ArticleRepel function HELP
Hi there! I'm trying to learn processing via messing around with found script. I'm trying to make these fish repel away from the mouse, and, eventually, any red color data collected from my kinect....
View Article