updated code with more comments

This commit is contained in:
mohsen-mansouryar 2016-04-28 18:14:38 +02:00
parent 460a71d2b3
commit 67123bb970
11 changed files with 262 additions and 1116 deletions

View file

@ -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