summaryrefslogtreecommitdiff
path: root/Code/constants.py
diff options
context:
space:
mode:
authorMatt Cooper <matthew_cooper@brown.edu>2016-08-12 20:36:02 -0400
committerMatt Cooper <matthew_cooper@brown.edu>2016-08-12 20:36:02 -0400
commit856fc1973b0d63ef1841e37c3391dc49484e59a8 (patch)
tree3c32c51ea8103a96ce303d4d868cc3c283b51a42 /Code/constants.py
parent42774cdcfec30be73e7ec6eedb82a8c53af4a857 (diff)
Made sure c.TEST_DIR exists before running
Diffstat (limited to 'Code/constants.py')
-rw-r--r--Code/constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Code/constants.py b/Code/constants.py
index afe8f9d..e0c2485 100644
--- a/Code/constants.py
+++ b/Code/constants.py
@@ -75,8 +75,8 @@ MOVEMENT_THRESHOLD = 100
# total number of processed clips in TRAIN_DIR_CLIPS
NUM_CLIPS = len(glob(TRAIN_DIR_CLIPS + '*'))
-# the height and width of the full frames to test on
-TEST_HEIGHT, TEST_WIDTH = get_test_frame_dims()
+# the height and width of the full frames to test on. Set in avg_runner.py main.
+TEST_HEIGHT, TEST_WIDTH = 0
# the height and width of the patches to train on
TRAIN_HEIGHT = TRAIN_WIDTH = 32