2014-07-01から1ヶ月間の記事一覧

ofxkinect Exampleメモ(3)

//--------------------------------------------------------------void testApp::draw() { ofSetColor(255, 255, 255); if(bDrawPointCloud) { easyCam.begin(); //※ drawPointCloud(); easyCam.end(); } else { // draw from the live kinect //イブのオ…

ofxkinect Exampleメモ(2)

//--------------------------------------------------------------void testApp::update() { ofBackground(100, 100, 100); //kinectからの画像を更新 kinect.update(); // there is a new frame and we are connected //そこに新しいフレームがあり、我々…