summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python
diff options
context:
space:
mode:
authorjakobsj <jakobsj@users.noreply.github.com>2018-04-27 09:39:40 +0100
committerGitHub <noreply@github.com>2018-04-27 09:39:40 +0100
commit3e2a667b72fa7519c0ad0b51f4ccd825e1d9eaaa (patch)
tree90b20d19eeccd09dd5e83f37581088e06bdb8bb9 /Wrappers/Python
parent27752838308df13ac174047e0079e38d55f990cb (diff)
parentb122aec2830c95106a187ec44f94e88bf223fee6 (diff)
downloadframework-3e2a667b72fa7519c0ad0b51f4ccd825e1d9eaaa.tar.gz
framework-3e2a667b72fa7519c0ad0b51f4ccd825e1d9eaaa.tar.bz2
framework-3e2a667b72fa7519c0ad0b51f4ccd825e1d9eaaa.tar.xz
framework-3e2a667b72fa7519c0ad0b51f4ccd825e1d9eaaa.zip
Merge pull request #115 from vais-ral/remove_camelcase
removes camelcase
Diffstat (limited to 'Wrappers/Python')
-rw-r--r--Wrappers/Python/ccpi/io/reader.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Wrappers/Python/ccpi/io/reader.py b/Wrappers/Python/ccpi/io/reader.py
index c66b1e8..b0b5414 100644
--- a/Wrappers/Python/ccpi/io/reader.py
+++ b/Wrappers/Python/ccpi/io/reader.py
@@ -44,7 +44,7 @@ class NexusReader(object):
Reader class for loading Nexus files.
'''
- def __init__(self, nexusFilename=None):
+ def __init__(self, nexus_filename=None):
'''
This takes in input as filename and loads the data dataset.
'''
@@ -52,7 +52,7 @@ class NexusReader(object):
self.dark = None
self.angles = None
self.geometry = None
- self.filename = nexusFilename
+ self.filename = nexus_filename
def load(self, dimensions=None, image_key_id=0):
'''
@@ -185,14 +185,14 @@ class XTEKReader(object):
Reader class for loading XTEK files
'''
- def __init__(self, xtekConfigFilename=None):
+ def __init__(self, xtek_config_filename=None):
'''
This takes in the xtek config filename and loads the dataset and the
required geometry parameters
'''
self.projections = None
self.geometry = {}
- self.filename = xtekConfigFilename
+ self.filename = xtek_config_filename
self.load()
def load(self):
@@ -233,12 +233,12 @@ class XTEKReader(object):
self.mask_radius = float(line.split('=')[1])
#Read Angles
- angles = self.readAngles()
+ angles = self.read_angles()
self.geometry = AcquisitionGeometry('cone', '3D', angles, pixel_num_h, xpixel_size, pixel_num_v, ypixel_size, -1 * source_x,
detector_x - source_x,
)
- def readAngles(self):
+ def read_angles(self):
"""
Read the angles file .ang or _ctdata.txt file and returns the angles
as an numpy array.
@@ -293,10 +293,10 @@ class XTEKReader(object):
pixels[pixels < 0.0] = 0.000001 # all negative values to approximately 0 as the std log of zero and non negative number is not defined
return pixels
- def getAcquisitionData(self, dimensions=None):
+ def get_acquisition_data(self, dimensions=None):
'''
This method load the acquisition data and given dimension and returns an AcquisitionData Object
'''
- data = self.loadProjection(dimensions)
+ data = self.load_projection(dimensions)
return AcquisitionData(data, geometry=self.geometry)