diff options
author | jakobsj <jakobsj@users.noreply.github.com> | 2018-04-24 14:44:06 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-04-24 15:44:06 +0200 |
commit | 27752838308df13ac174047e0079e38d55f990cb (patch) | |
tree | 0b3cf9ad47a8b2fe205a0eb445aaefffcd65a248 /data | |
parent | 6b09916eb23c22aaa09d3a359841dd32393faabe (diff) | |
download | framework-27752838308df13ac174047e0079e38d55f990cb.tar.gz framework-27752838308df13ac174047e0079e38d55f990cb.tar.bz2 framework-27752838308df13ac174047e0079e38d55f990cb.tar.xz framework-27752838308df13ac174047e0079e38d55f990cb.zip |
Ip removal (#109)
* Removing IP data and files. Still in IP_parking branch. #102
* Also remove IP pyc file
Diffstat (limited to 'data')
-rw-r--r-- | data/IP_data70channels.mat | bin | 8710147 -> 0 bytes | |||
-rw-r--r-- | data/__pycache__/read_IPdata.cpython-35.pyc | bin | 1674 -> 0 bytes | |||
-rw-r--r-- | data/read_IPdata.py | 58 |
3 files changed, 0 insertions, 58 deletions
diff --git a/data/IP_data70channels.mat b/data/IP_data70channels.mat Binary files differdeleted file mode 100644 index 19b9421..0000000 --- a/data/IP_data70channels.mat +++ /dev/null diff --git a/data/__pycache__/read_IPdata.cpython-35.pyc b/data/__pycache__/read_IPdata.cpython-35.pyc Binary files differdeleted file mode 100644 index b062cf9..0000000 --- a/data/__pycache__/read_IPdata.cpython-35.pyc +++ /dev/null diff --git a/data/read_IPdata.py b/data/read_IPdata.py deleted file mode 100644 index a7565d7..0000000 --- a/data/read_IPdata.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -function to read IP data and provide a dictionary with data and parameters as an output -""" -from scipy import io -import numpy as np -from collections import defaultdict - -def read_IPdata(datafile): - # read data from mat file (specify the location) - alldata = io.loadmat(datafile) - data_raw = alldata.get('Data_raw') # here is raw projection data - Phantom_ideal = alldata.get('Phantom_ideal') # here is 70 channels ideal phantom - Photon_flux = alldata.get('Photon_flux') # photon flux for normalization - del alldata - - # extract geometry-related parameters - proj_numb,detectors_numb,channels = np.shape(data_raw) - im_size = np.size(Phantom_ideal,1) - - theta = np.linspace(0,proj_numb-1,proj_numb)*360/proj_numb # projection angles - dom_width = 1.0 # width of domain in cm - src_to_rotc = 3.0 # dist. from source to rotation center - src_to_det = 5.0 # dist. from source to detector - det_width = 2.0 # detector width - - # negative log normalisation of the raw data (avoiding of log(0)) - data_norm = np.zeros(np.shape(data_raw)) - for i in range(0,channels): - slice1 = data_raw[:,:,i] - indx = np.nonzero(slice1>0) - slice2 = np.zeros((proj_numb,detectors_numb), 'float32') - slice2[indx] = -np.log(slice1[indx]/Photon_flux[i]) - indx2 = np.nonzero(slice1==0) - slice3 = np.zeros((proj_numb,detectors_numb), 'float32') - slice3[indx2] = np.log(slice2[indx2]+Photon_flux[i]) - data_norm[:,:,i] = slice2 + slice3 - del indx, indx2, slice1, slice2, slice3 - data_norm = np.float32(data_norm*(im_size/dom_width)) - - #build a dictionary for data and related parameters - dataDICT = defaultdict(list) - dataDICT['data_norm'].append(data_norm) - dataDICT['data_raw'].append(data_raw) - dataDICT['Photon_flux'].append(Photon_flux) - dataDICT['Phantom_ideal'].append(Phantom_ideal) - dataDICT['theta'].append(theta) - dataDICT['proj_numb'].append(proj_numb) - dataDICT['detectors_numb'].append(detectors_numb) - dataDICT['channels'].append(channels) - dataDICT['im_size'].append(im_size) - dataDICT['dom_width'].append(dom_width) - dataDICT['src_to_rotc'].append(src_to_rotc) - dataDICT['src_to_det'].append(src_to_det) - dataDICT['det_width'].append(det_width) - - return (dataDICT)
\ No newline at end of file |