summaryrefslogtreecommitdiff
path: root/cli/app/commands
diff options
context:
space:
mode:
Diffstat (limited to 'cli/app/commands')
-rw-r--r--cli/app/commands/biggan/search_class.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/app/commands/biggan/search_class.py b/cli/app/commands/biggan/search_class.py
index 6339e8b..78b7b2d 100644
--- a/cli/app/commands/biggan/search_class.py
+++ b/cli/app/commands/biggan/search_class.py
@@ -164,6 +164,8 @@ def load_target_image(opt_fp_in):
fn = os.path.basename(opt_fp_in)
fbase, ext = os.path.splitext(fn)
fp_frames = "frames_{}_{}".format(fbase, int(time.time() * 1000))
- os.makedirs(join(app_cfg.DIR_OUTPUTS, fp_frames), exist_ok=True)
+ fp_frames_fullpath = join(app_cfg.DIR_OUTPUTS, fp_frames)
+ print("Output to {}".format(fp_frames_fullpath))
+ os.makedirs(fp_frames_fullpath, exist_ok=True)
target_im = imread(opt_fp_in)
return target_im, fp_frames