/usr/share/pyshared/nibabel/arrayproxy.py is in python-nibabel 1.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the NiBabel package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
""" Array proxy base class
The API is - at minimum:
* The object has an attribute ``shape``
* that the object returns the data array from ``np.asarray(obj)``
* that modifying no object outside ``obj`` will affect the result of
``np.asarray(obj)``. Specifically, if you pass a header into the the
__init__, then modifying the original header will not affect the result of the
array return.
You might also want to implement ``state_stamper``
"""
from .volumeutils import allopen
class ArrayProxy(object):
"""
The array proxy allows us to freeze the passed fileobj and header such that
it returns the expected data array.
This fairly generic implementation allows us to deal with Analyze and its
variants, including Nifti1, and with the MGH format, apparently.
It requires a ``header`` object with methods:
* copy
* get_data_shape
* data_from_fileobj
Other image types might need to implement their own implementation of this
API. See :mod:`minc` for an example.
"""
def __init__(self, file_like, header):
self.file_like = file_like
self.header = header.copy()
self._data = None
self._shape = header.get_data_shape()
@property
def shape(self):
return self._shape
def __array__(self):
''' Cached read of data from file '''
if self._data is None:
self._data = self._read_data()
return self._data
def _read_data(self):
fileobj = allopen(self.file_like)
data = self.header.data_from_fileobj(fileobj)
if isinstance(self.file_like, basestring): # filename
fileobj.close()
return data
|