So I'm relatively new to Processing, but here's the gist of what I'm trying to do. I've downloaded Shiffman's kinect library, and I've managed to capture a movie of the kinect's depth data, but what I'm really trying to do is import the data to Maya. Daniel Vasquez wrote some brilliant MEL script called
Cache Cloud that takes sequences of .csv files or .txt files and imports them as particle data into Maya.
Where I'm having a problem is exporting the depth data as a .csv or .txt file from Processing. The way I understand it, cache cloud treats each individual .csv file as a single frame, and the data array inside that .csv file is an x,y,z coordinate for a particle in float, float, float format. I'm not sure how to make these .csv files from my depth data in Processing, but I thought that perhaps createWriter or printWriter would help? Any help would be incredibly appreciated.