updated code with more comments
This commit is contained in:
parent
460a71d2b3
commit
67123bb970
11 changed files with 262 additions and 1116 deletions
|
@ -8,12 +8,15 @@ from time import time
|
|||
from geom import getSphericalCoords, getAngularDiff
|
||||
from recording.tracker import Marker
|
||||
|
||||
# from visual import vector as v # for vector operations
|
||||
from vector import Vector as v
|
||||
try:
|
||||
from visual import vector as v
|
||||
except ImportError:
|
||||
from vector import Vector as v
|
||||
|
||||
DATA_DIR = './recording/data/'
|
||||
# DATA_DIR = '.\\recording\\data\\'
|
||||
|
||||
# Update these accordingly for testing out your own data
|
||||
EYE_CAMERA_IMAGE_WIDTH = 640
|
||||
EYE_CAMERA_IMAGE_HEIGHT = 360
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue