Questions tagged [simple-openni]

SimpleOpenNI is the Processing wrapper for OpenNI and NITE. Although it's not in a fully complete wrapper(some functionalities aren't yet implemented), it's very easy to setup and provides most of the needed functionalities(depth/rgb/ir/scene streams, skeleton tracking(without Psi pose required and multiple profiles), hand tracking and gestures, etc.)

SimpleOpenNI is a Processing library which greatly simplifies development using RGB/D sensors such as Microsoft Kinect for Xbox360 (not Kinect for Windows) and Asus Xtion(Pro and Pro Live) developed at the Interaction Design Department Zurich.

The library ships with plenty of examples and the Wiki pages are also helpful. There is also a full book covering various techniques using this library: Making Things See.

54 questions
0
votes
1 answer

OpenNI installation: operation not permitted

I am trying to install kinect on my macOS Sierra (10.12). I have used the explanation on greenfoot, so I downloaded Openni, KinectDriver and NITE, extracted them got to the unzipped directory through the terminal and tried to install using the…
0
votes
1 answer

SimpleOpenNI not working on Processing 3.1.1 using Mac OS 10.11.5 El Capitan

I keep getting this error when I run a example code from SimpleOpenNI such as NoSuchMethodError: You may be using a library that's incompatible with this version of Processing. I have tried in vain everywhere to find and properly install an OpenNI…
Eric Reyna
  • 181
  • 1
  • 3
  • 13
0
votes
0 answers

PCL with Kinect (OpenNI Grabber)

**Hi , I just want a point cloud from kinect device. I followed the below link to do so. http://pointclouds.org/documentation/tutorials/openni_grabber.php#openni-grabber But I am getting the following error . Please suggest me , what I am doing…
Marie
  • 9
  • 5
0
votes
1 answer

How to store or keep Kinect movement tracking data?

Our group is now facing a problem that, we aim to implement a login system using body movements with Kinect device. That is to say, we use body movements as a so call "password". In order to login, user has to enter the "password" by performing…
0
votes
1 answer

simpleOpenNI multiple users

I'm using simpleOpenNI with the Kinect. I have an array of 5 colors and a certain number of people (12-13) that will come in front of the kinect one by one. I need to relate a single color to a single person. When the index of the array of colors…
SF1
  • 469
  • 1
  • 6
  • 20
0
votes
0 answers

issue the output is white bachground processing&kinect

im running the following code in processing but i only get a white background!! import processing.opengl.*; import SimpleOpenNI.*; SimpleOpenNI kinect; import saito.objloader.*; OBJModel model; void setup() { size(1028, 768, OPENGL); model = new…
0
votes
1 answer

Positioning an entire kinect skeleton in the center of 3D space

Okay I have been searching for this problem everywhere, truth be told asked a similar question at the processing forum and no-one answered on it. So I took a freedom to ponder yours guy brains a bit. So I have a skeleton in P3D and every time its…
0
votes
0 answers

How to play a movie inside a user's silhoutte using kinect

I have created a program related to kinect in Processing IDE using SimpleOpenNI library, in which a simple image is displayed inside the user's silhouette. This is the code: depthValues=kinect.depthMap(); userMap = kinect.userMap(); for (int i =0; i…
Archana Sarang
  • 101
  • 1
  • 9
0
votes
1 answer

Processing's "Export" functionality does not work with SimpleOpenNI Kinect application

I'm running Processing 2.2.1 along with SimpleOpenNI 1.96 (based on instructions at http://shiffman.net/p5/kinect/). I modified the DepthImage example sketch and added file writing (code below). I'm trying to output the depth data from Kinect to…
AVJ
  • 213
  • 3
  • 11
0
votes
1 answer

Exporting the kinect-processing application

Recently , I have created a sketch in Processing-1.5.1 using SimpleOpenNI-1.96 library. A sketch is running fine even on a present mode. But after export a sketch, it gives me a blank gray screen, also kinect's red light doen't respond, even running…
Archana Sarang
  • 101
  • 1
  • 9
0
votes
1 answer

Expecting an absolute path error in Eclipse

I am doing a project relating to the Kinect. I am using Processing and the code works fine. I wanted to use Eclipse instead so I installed the revelant processing tools that enable me to do this. I am using the SimpleOpenNi library and when I run…
amjo92
  • 1
  • 1
  • 3
0
votes
1 answer

documentation of simple openni 1.96

i am trying to find out documentation of simple openni 1.96 because the old code is not suitable with simple openni 1.96. Anybody here, who know information about this ?
Faiz
  • 40
  • 4
0
votes
1 answer

enableGesture() not defined Simple-OpenNI

Before I get comments about the version of Simple-OpenNI that I'm using, I installed the only one that was on the Google Downloads page (v 1.96). I saw in another thread that I have to replace the line kinect.enableGesture() with…
Eric Roch
  • 125
  • 2
  • 10
0
votes
2 answers

enableGesture(); error on Kinect SimpleOpenNI

everyone. I'm have a problem and i don't no how to solve it. I try to make some tutorials with Hand click on Processing, and always happened the same error, the function enableGesture(); does not exist. What I can do? Can someone Help me? Thank You
0
votes
1 answer

Processing! Kinect send is position x in x seconds

I need a litle help here. I have a kinect working with processing using SimpleOpenNi library, and i just want the kinect send the position of a skeleton only 2 in 2 seconds for example. And if the position is the same as sent before don't do the…