summaryrefslogtreecommitdiff
path: root/Code/constants.py
diff options
context:
space:
mode:
authorMatt Cooper <matthew_cooper@brown.edu>2016-08-12 20:38:16 -0400
committerMatt Cooper <matthew_cooper@brown.edu>2016-08-12 20:38:16 -0400
commit80f480bb53bb141eb179e7ee0f3e288776d1b8f0 (patch)
tree3bf0006314c91f19347c2b09c528e0595c8c0ab1 /Code/constants.py
parent856fc1973b0d63ef1841e37c3391dc49484e59a8 (diff)
Fixed small bug in last commit.
Diffstat (limited to 'Code/constants.py')
-rw-r--r--Code/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Code/constants.py b/Code/constants.py
index e0c2485..61e9fea 100644
--- a/Code/constants.py
+++ b/Code/constants.py
@@ -76,7 +76,7 @@ MOVEMENT_THRESHOLD = 100
NUM_CLIPS = len(glob(TRAIN_DIR_CLIPS + '*'))
# the height and width of the full frames to test on. Set in avg_runner.py main.
-TEST_HEIGHT, TEST_WIDTH = 0
+TEST_HEIGHT = TEST_WIDTH = 0
# the height and width of the patches to train on
TRAIN_HEIGHT = TRAIN_WIDTH = 32