Skip to content

Commit 5868fd2

Browse files
committed
Filenames for aligned images, with tests.
1 parent a79de80 commit 5868fd2

File tree

3 files changed

+38
-6
lines changed

3 files changed

+38
-6
lines changed

bin/halostack_cli.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from halostack.image import Image
2727
from halostack.align import Align
2828
from halostack.helpers import (get_filenames, parse_enhancements,
29-
get_two_points, read_config)
29+
get_two_points, read_config, intermediate_fname)
3030
import argparse
3131
import logging
3232
import platform
@@ -126,8 +126,7 @@ def halostack_cli(args):
126126
LOGGER.debug("Alignment initialized.")
127127

128128
if args['save_prefix'] is not None:
129-
fname = args['save_prefix'] + '_' + \
130-
os.path.splitext(base_img_fname)[0] + '.png'
129+
fname = intermediate_fname(args['save_prefix'], base_img_fname)
131130
base_img.save(fname)
132131

133132
if len(args['enhance_images']) > 0:
@@ -153,8 +152,7 @@ def halostack_cli(args):
153152
continue
154153

155154
if args['save_prefix'] is not None:
156-
fname = args['save_prefix'] + '_' + \
157-
os.path.splitext(img_fname)[0] + '.png'
155+
fname = intermediate_fname(args['save_prefix'], img_fname)
158156
img.save(fname)
159157

160158
if len(args['enhance_images']) > 0:

halostack/helpers.py

+20
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import ConfigParser
3030
from collections import OrderedDict as od
3131
import warnings
32+
import os.path
3233

3334
LOGGER = logging.getLogger(__name__)
3435

@@ -176,3 +177,22 @@ def read_config(args):
176177
args[key] = cfg[key]
177178

178179
return args
180+
181+
182+
def intermediate_fname(prefix, fname):
183+
'''Form filename for the aligned image files.
184+
185+
:param prefix: prefix to prepend to the basename of the file.
186+
:type prefix: str
187+
:param fname: filename, with of without the path
188+
:type fname: str
189+
:rtype: new filename as a string
190+
'''
191+
192+
basename = os.path.basename(fname)
193+
barename = os.path.splitext(basename)[0]
194+
dirname = os.path.dirname(fname)
195+
parts = [prefix, '_', barename, '.png']
196+
fname = ''.join(parts)
197+
198+
return os.path.join(dirname, fname)

tests/unittests/test_helpers.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import unittest
22
import os
3-
from halostack.helpers import get_filenames, parse_enhancements
3+
from halostack.helpers import get_filenames, parse_enhancements, \
4+
intermediate_fname
5+
import platform
46

57
class TestHelpers(unittest.TestCase):
68

@@ -37,6 +39,18 @@ def test_parse_enhancements(self):
3739
result = parse_enhancements(self.enh2)
3840
self.assertDictEqual(result, {'usm': [25., 5.], 'gradient': None})
3941

42+
def test_intermediate_fname(self):
43+
result = intermediate_fname('foo', 'img.png')
44+
self.assertEqual(result, 'foo_img.png')
45+
if platform.system() == 'Windows':
46+
result = intermediate_fname('foo', 'C:\temp\img.png')
47+
self.assertEqual(result, 'C:\temp\foo_img.png')
48+
result = intermediate_fname('foo', 'C:\temp\bar\img.png')
49+
self.assertEqual(result, 'C:\temp\bar\foo_img.png')
50+
else:
51+
result = intermediate_fname('foo', '/tmp/bar/img.png')
52+
self.assertEqual(result, '/tmp/bar/foo_img.png')
53+
4054
def assertItemsEqual(self, a, b):
4155
for i in range(len(a)):
4256
if isinstance(a[i], dict):

0 commit comments

Comments
 (0)