Skip to content

Commit

Permalink
fixed width distortion!
Browse files Browse the repository at this point in the history
  • Loading branch information
tbuser committed Sep 17, 2012
1 parent e5f636c commit 9a642f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spinscan.pde
Expand Up @@ -22,8 +22,8 @@ PrintWriter splineFile;


int width = 860; int width = 860;
int height = 720; int height = 720;
int framerate = 13; int framerate = 15;
int threshold = 10; // 30 int threshold = 30; // 30
int frame = 1; int frame = 1;


int videoWidth = 640; int videoWidth = 640;
Expand Down Expand Up @@ -64,11 +64,11 @@ String plyFilename = null;
String splineFilename = null; String splineFilename = null;


// degrees 56 zoom in 75 zoom out // degrees 56 zoom in 75 zoom out
float camHFOV = 75.0; float camVFOV = 75.0;
// degrees // degrees
float camVFOV = (camHFOV * 4.0) / 5.0; float camHFOV = (camVFOV * 4.0) / 5.0;
// from camera to center of table in mm // from camera to center of table in mm
float camDistance = 304.8; // 1 foot float camDistance = 304.8; // 1 foot = 304.8
// degrees // degrees
float laserOffset = 30.0; // 15? 45? float laserOffset = 30.0; // 15? 45?
int frameSkip = 1; int frameSkip = 1;
Expand Down

0 comments on commit 9a642f5

Please sign in to comment.