1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
"""Various utility functions."""
import argparse
import gi
import glob
import logging
import math
import os
from collections import OrderedDict
gi.require_version('Ufo', '1.0')
from gi.repository import Ufo
LOG = logging.getLogger(__name__)
RESOURCES = None
def range_list(value):
"""
Split *value* separated by ':' into int triple, filling missing values with 1s.
"""
def check(region):
if region[0] >= region[1]:
raise argparse.ArgumentTypeError("{} must be less than {}".format(region[0], region[1]))
lst = [int(x) for x in value.split(':')]
if len(lst) == 1:
frm = lst[0]
return (frm, frm + 1, 1)
if len(lst) == 2:
check(lst)
return (lst[0], lst[1], 1)
if len(lst) == 3:
check(lst)
return (lst[0], lst[1], lst[2])
raise argparse.ArgumentTypeError("Cannot parse {}".format(value))
def make_subargs(args, subargs):
"""Return an argparse.Namespace consisting of arguments from *args* which are listed in the
*subargs* list."""
namespace = argparse.Namespace()
for subarg in subargs:
setattr(namespace, subarg, getattr(args, subarg))
return namespace
def set_node_props(node, args):
"""Set up *node*'s properties to *args* which is a dictionary of values."""
for name in dir(node.props):
if not name.startswith('_') and hasattr(args, name):
value = getattr(args, name)
if value is not None:
LOG.debug("Setting {}:{} to {}".format(node.get_plugin_name(), name, value))
node.set_property(name, getattr(args, name))
def get_filenames(path):
"""
Get all filenams from *path*, which could be a directory or a pattern for
matching files in a directory.
"""
if not path:
return []
return sorted(glob.glob(os.path.join(path, '*') if os.path.isdir(path) else path))
def setup_read_task(task, path, args):
"""Set up *task* and take care of handling file types correctly."""
task.props.path = path
fnames = get_filenames(path)
if fnames and fnames[0].endswith('.raw'):
if not args.width or not args.height:
raise RuntimeError("Raw files require --width, --height and --bitdepth arguments.")
task.props.raw_width = args.width
task.props.raw_height = args.height
task.props.raw_bitdepth = args.bitdepth
def restrict_value(limits, dtype=float):
"""Convert value to *dtype* and make sure it is within *limits* (included) specified as tuple
(min, max). If one of the tuple values is None it is ignored."""
def check(value=None, clamp=False):
if value is None:
return limits
result = dtype(value)
if limits[0] is not None and result < limits[0]:
if clamp:
result = dtype(limits[0])
else:
raise argparse.ArgumentTypeError('Value cannot be less than {}'.format(limits[0]))
if limits[1] is not None and result > limits[1]:
if clamp:
result = dtype(limits[1])
else:
raise argparse.ArgumentTypeError('Value cannot be greater than {}'.format(limits[1]))
return result
return check
def convert_filesize(value):
multiplier = 1
conv = OrderedDict((('k', 2 ** 10),
('m', 2 ** 20),
('g', 2 ** 30),
('t', 2 ** 40)))
if not value[-1].isdigit():
if value[-1] not in list(conv.keys()):
raise argparse.ArgumentTypeError('--output-bytes-per-file must either be a ' +
'number or end with {} '.format(list(conv.keys())) +
'to indicate kilo, mega, giga or terabytes')
multiplier = conv[value[-1]]
value = value[:-1]
value = int(float(value) * multiplier)
if value < 0:
raise argparse.ArgumentTypeError('--output-bytes-per-file cannot be less than zero')
return value
def tupleize(num_items=None, conv=float, dtype=tuple):
"""Convert comma-separated string values to a *num-items*-tuple of values converted with
*conv*.
"""
def split_values(value=None):
"""Convert comma-separated string *value* to a tuple of numbers."""
if not value: # empty value or string
return dtype([])
if type(value) is float or type(value) is int:
return dtype([value])
try:
result = dtype([conv(x) for x in value.split(',')])
except:
raise argparse.ArgumentTypeError('Expect comma-separated tuple')
if num_items and len(result) != num_items:
raise argparse.ArgumentTypeError('Expected {} items'.format(num_items))
return result
return split_values
def next_power_of_two(number):
"""Compute the next power of two of the *number*."""
return 2 ** int(math.ceil(math.log(number, 2)))
def read_image(filename):
"""Read image from file *filename*."""
if filename.lower().endswith('.tif') or filename.lower().endswith('.tiff'):
from tifffile import TiffFile
with TiffFile(filename) as tif:
return tif.asarray(out='memmap')
elif '.edf' in filename.lower():
import fabio
edf = fabio.edfimage.edfimage()
edf.read(filename)
return edf.data
else:
raise ValueError('Unsupported image format')
def write_image(filename, image):
import tifffile
directory = os.path.dirname(filename)
os.makedirs(directory, exist_ok=True)
tifffile.imwrite(filename, image)
def get_image_shape(filename):
"""Determine image shape (numpy order) from file *filename*."""
if filename.lower().endswith('.tif') or filename.lower().endswith('.tiff'):
from tifffile import TiffFile
with TiffFile(filename) as tif:
page = tif.pages[0]
shape = (page.imagelength, page.imagewidth)
if len(tif.pages) > 1:
shape = (len(tif.pages),) + shape
else:
# fabio doesn't seem to be able to read the shape without reading the data
shape = read_image(filename).shape
return shape
def get_first_filename(path):
"""Returns the first valid image filename in *path*."""
if not path:
raise RuntimeError("Path to sinograms or projections not set.")
filenames = get_filenames(path)
if not filenames:
raise RuntimeError("No files found in `{}'".format(path))
return filenames[0]
def determine_shape(args, path=None, store=False, do_raise=False):
"""Determine input shape from *args* which means either width and height are specified in args
or try to read the *path* and determine the shape from it. The default path is args.projections,
which is the typical place to find the input. If *store* is True, assign the determined values
if they aren't already present in *args*. Return a tuple (width, height). If *do_raise* is True,
raise an exception if shape cannot be determined.
"""
width = args.width
height = args.height
if not (width and height):
filename = get_first_filename(path or args.projections)
try:
shape = get_image_shape(filename)
# Now set the width and height if not specified
width = width or shape[-1]
height = height or shape[-2]
except Exception as exc:
LOG.info("Couldn't determine image dimensions from '{}'".format(filename))
if do_raise:
raise exc
if store:
if not args.width:
args.width = width
if not args.height:
args.height = height - args.y
return (width, height)
def get_filtering_padding(width):
"""Get the number of horizontal padded pixels in order to avoid convolution artifacts."""
return next_power_of_two(2 * width) - width
def setup_padding(pad, width, height, mode, crop=None, pad_width=None, pad_height=0, centered=True):
if pad_width is not None and pad_width < 0:
raise ValueError("pad_width must be >= 0")
if pad_height < 0:
raise ValueError("pad_height must be >= 0")
if pad_width is None:
# Default is horizontal padding only
pad_width = get_filtering_padding(width)
pad.props.width = width + pad_width
pad.props.height = height + pad_height
pad.props.x = pad_width // 2 if centered else 0
pad.props.y = pad_height // 2 if centered else 0
pad.props.addressing_mode = mode
LOG.debug(
"Padding (x=0, y=0, w=%d, h=%d) -> (x=%d, y=%d, w=%d, h=%d) with mode `%s'",
width,
height,
pad.props.x,
pad.props.y,
pad.props.width,
pad.props.height,
mode,
)
if crop:
# crop to original width after filtering
crop.props.width = width
crop.props.height = height
crop.props.x = pad_width // 2 if centered else 0
crop.props.y = pad_height // 2 if centered else 0
return (pad_width, pad_height)
def make_region(n, dtype=int):
"""Make region in such a way that in case of odd *n* it is centered around 0. Use *dtype* as
data type.
"""
return (-dtype(n / 2), dtype(n / 2 + n % 2), dtype(1))
def get_reconstructed_cube_shape(x_region, y_region, z_region):
"""Get the shape of the reconstructed cube as (slice width, slice height, num slices)."""
import numpy as np
z_start, z_stop, z_step = z_region
y_start, y_stop, y_step = y_region
x_start, x_stop, x_step = x_region
num_slices = len(np.arange(z_start, z_stop, z_step))
slice_height = len(np.arange(y_start, y_stop, y_step))
slice_width = len(np.arange(x_start, x_stop, x_step))
return slice_width, slice_height, num_slices
def get_reconstruction_regions(params, store=False, dtype=int):
"""Compute reconstruction regions along all three axes, use *dtype* for as data type for x and y
regions, z region is always float.
"""
width, height = determine_shape(params)
if getattr(params, 'transpose_input', False):
# In case down the pipeline there is a transpose task
tmp = width
width = height
height = tmp
if params.x_region[1] == -1:
x_region = make_region(width, dtype=dtype)
else:
x_region = params.x_region
if params.y_region[1] == -1:
y_region = make_region(width, dtype=dtype)
else:
y_region = params.y_region
if params.region[1] == -1:
region = make_region(height, dtype=float)
else:
region = params.region
LOG.info('X region: {}'.format(x_region))
LOG.info('Y region: {}'.format(y_region))
LOG.info('Parameter region: {}'.format(region))
if store:
params.x_region = x_region
params.y_region = y_region
params.region = region
return x_region, y_region, region
def get_scarray_value(scarray, index):
if len(scarray) == 1:
return scarray[0]
return scarray[index]
def run_scheduler(scheduler, graph):
from threading import Thread
# Reuse resources until https://github.com/ufo-kit/ufo-core/issues/191 is solved.
global RESOURCES
if not RESOURCES:
RESOURCES = Ufo.Resources()
scheduler.set_resources(RESOURCES)
thread = Thread(target=scheduler.run, args=(graph,))
thread.setDaemon(True)
thread.start()
try:
thread.join()
return True
except KeyboardInterrupt:
LOG.info('Processing interrupted')
scheduler.abort()
return False
def fbp_filtering_in_phase_retrieval(args):
if args.energy is None or args.propagation_distance is None:
# No phase retrieval at all
return False
return (
args.projection_filter != 'none' and (
args.retrieval_method != 'tie' or
args.tie_approximate_logarithm
)
)
class Vector(object):
"""A vector based on axis-angle representation."""
def __init__(self, x_angle=0, y_angle=0, z_angle=0, position=None):
import numpy as np
self.position = np.array(position, dtype=float) if position is not None else None
self.x_angle = x_angle
self.y_angle = y_angle
self.z_angle = z_angle
def __repr__(self):
return 'Vector(position={}, angles=({}, {}, {}))'.format(self.position,
self.x_angle,
self.y_angle,
self.z_angle)
def __str__(self):
return repr(self)
|