Voxxlr
http://www.voxxlr.com/
Project Tango Test in my room
Kinectfusion
ToF Camera Noise of Kinect for Windows Ver.2.0
3D Laser Scanner
Moedls - Mobile 3d Laser Scanner
Scanning the David
Track finger with the Wii remote
Binvox
Tutorial Tuesday: Binvox
Download
Run cmd
Google bunny obj then save it
Extract the file and drag to cmd (remember to space between 2 links)
Download viewvox
Processing
Ctrl + K to open folder, then drag the data object to Processing sketch
Rocket
PShape bunny;
void setup(){
size(400,400,P3D);
bunny = loadShape("rocket.obj");
}
void draw (){
background(255,0,0);
translate(width/2, height/2);
shape(bunny, 0, 0);
}
Rotating rocket
PShape bunny;
void setup(){
size(800,800,P3D);
bunny=loadShape("rocket.obj");
}
void draw(){
background(255,0,0);
lights();
translate(width/2,height/2);
rotateX(radians(mouseY));
rotateY(radians(mouseX));
shape(bunny,0,0);
}
void setup(){
size(800,800,P3D);
bunny=loadShape("rocket.obj");
}
void draw(){
background(255,0,0);
lights();
translate(width/2,height/2);
rotateX(radians(mouseY));
rotateY(radians(mouseX));
shape(bunny,0,0);
}
Rotating bunny
PShape bunny;
void setup(){
size(400,400,P3D);
bunny=loadShape("bunny.obj");
}
void draw(){
background(0,255,0);
lights();
translate(width/2,height/2);
rotateX(radians(mouseY));
rotateY(radians(mouseX));
scale(50,50,50);//picture size
shape(bunny,0,0);
}
沒有留言:
張貼留言