234
edits
(Created page with "Here I will give a quick description on what I did to make the Kinect "talk" to Max MSP. I was working on a Macbook Pro 2015 with OS Mojave 10.14.4, and Max 7 (7.3.6) VERY...") |
No edit summary |
||
Line 16: | Line 16: | ||
What you need, to make Max 7 recognize and process the Kinect signal, you need a Max Object called "jit.freenect.grab". This was developed by Jean-Marc Pelletier and two others. | What you need, to make Max 7 recognize and process the Kinect signal, you need a Max Object called "jit.freenect.grab". This was developed by Jean-Marc Pelletier and two others. | ||
Find the object and more info about it and its developer right here https://jmpelletier.com/freenect/ | Find the object and more info about it and its developer right here https://jmpelletier.com/freenect/ | ||
I got my download right here https://www.notion.so/Kinect-freenect-a4268b52caa64266a48900dc489b3c2d | |||
As far as I know, the object does NOT work with newer Kinect sensors, ONLY with the Kinect 360. | |||
The easiest and quickest way to add this object to your Max Application is to copy it into your project folder. | |||
Now you should be able to create a new object and type in "jit.freenect.grab". If you look into the help file of freenect, that can be downloaded together with the object itself, you can find more things and parameters you need to get signals flowing. | |||
[[File:Bildschirmfoto 2020-07-15 um 17.42.42.png|400px]] | |||
on this picture you can see the freenect object and multiple messages that you can use to control your singal flow. | |||
Most important is the "qmetro 2" object, that simply gives your patch the command to read the incoming video signal at a stready frame rate. | |||
You can also see an "open" and a "close" message box, the simply start or stop the video input from the kinect. | |||
With the "format rgb" or "format ir" messages you can choose if you want to use the standard camera, or the infrared camera input. To change the mode, you need to press "close", then on the "format ..." message and then on "open". | |||
By default, the freenect outputs the normal camera input in RGB mode. | |||
The resolution of the video output is 640p x 480p. | |||
Right here you can see the infrared output. The screens are "jit.pwindow" objects. | |||
[[File:Bildschirmfoto 2020-07-15 um 17.42.56.png|400px]] | |||
Another think that is pretty useful (and fun) is the "tilt $1" message box. By feeding the message box values from -30 to 30 you can tilt the Kinect sensor physically. |
edits