From d1c99cb0afb1fcfd6b3ee27f9168cb985d744e59 Mon Sep 17 00:00:00 2001 From: edgarriba Date: Tue, 17 Nov 2015 13:59:41 +0000 Subject: [PATCH] update supported extensions format Former-commit-id: 3ad5842d6add07a1bf81953a19d4cf7d00b43145 --- scripts/context.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/context.py b/scripts/context.py index b60cead6..d79c419e 100644 --- a/scripts/context.py +++ b/scripts/context.py @@ -5,4 +5,7 @@ scripts_path = os.path.abspath(os.path.dirname(__file__)) superbuild_path = os.path.join(scripts_path[:-7], 'SuperBuild/') pyopencv_path = os.path.join(superbuild_path, 'lib/python2.7/dist-packages') -opensfm_path = os.path.join(superbuild_path, "src/opensfm") \ No newline at end of file +opensfm_path = os.path.join(superbuild_path, "src/opensfm") + +# Define supported image extensions +supported_extensions = {'.jpg','.jpeg'} \ No newline at end of file