Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xsocs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
22
Issues
22
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kmap
xsocs
Commits
8dcdb91f
Commit
8dcdb91f
authored
Jun 15, 2016
by
Damien Naudet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added peak_fit example.
parent
04a29112
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
27 deletions
+63
-27
kmap/examples/id01_peak.py
kmap/examples/id01_peak.py
+32
-0
kmap/process/peak_fit.py
kmap/process/peak_fit.py
+31
-27
No files found.
kmap/examples/id01_peak.py
0 → 100644
View file @
8dcdb91f
import
os
from
kmap.process
import
peak_fit
import
numpy
as
np
# output directory (some temporary files will also be written there)
workdir
=
'/path/to/workdir/'
# path to the hdf5 file written by the img_to_qspace function
qspace_f
=
'/path/to/qspace.h5'
# result file
result_file
=
os
.
path
.
join
(
workdir
,
'results.txt'
)
results
,
success
=
peak_fit
.
get_peaks
(
qspace_f
,
indices
=
range
(
10
),
fit_type
=
peak_fit
.
FitTypes
.
LEASTSQ
,
n_proc
=
None
)
with
open
(
result_file
,
'w+'
)
as
res_f
:
res_f
.
write
(
'# X Y qx qy qz q I valid
\n
'
)
for
i
,
s
in
enumerate
(
success
):
x_pos
=
results
[
i
,
0
]
y_pos
=
results
[
i
,
1
]
xpeak
=
results
[
i
,
3
]
ypeak
=
results
[
i
,
6
]
zpeak
=
results
[
i
,
9
]
xpeak_max
=
results
[
i
,
2
]
q
=
np
.
sqrt
(
xpeak
**
2
+
ypeak
**
2
+
zpeak
**
2
)
r
=
(
x_pos
,
y_pos
,
xpeak
,
ypeak
,
zpeak
,
q
,
xpeak_max
,
s
)
res_str
=
'{0} {1} {2} {3} {4} {5} {6} {7} ({8})
\n
'
.
format
(
i
,
*
r
)
res_f
.
write
(
res_str
)
kmap/process/peak_fit.py
View file @
8dcdb91f
...
...
@@ -65,8 +65,6 @@ def _qspace_gauss_fit(x, y, v0):
if
result
[
4
]
not
in
[
1
,
2
,
3
,
4
]:
raise
ValueError
(
'Failed to fit : {0}.'
.
format
(
result
[
3
]))
#result = result[0]
#result[0] = _gauss_fn(result, result[1])
return
result
[
0
]
def
_qspace_centroid
(
x
,
y
,
v0
):
...
...
@@ -75,6 +73,7 @@ def _qspace_centroid(x, y, v0):
idx
=
np
.
abs
(
x
-
com
).
argmin
()
return
[
y
[
idx
],
com
,
np
.
nan
]
def
get_peaks
(
qspace_f
,
fit_type
=
FitTypes
.
LEASTSQ
,
indices
=
None
,
...
...
@@ -98,17 +97,28 @@ def get_peaks(qspace_f,
qdata
=
qspace_h5
[
'qspace'
]
n_points
=
qdata
.
shape
[
0
]
if
indices
is
None
:
indices
=
range
(
n_points
)
n_indices
=
len
(
indices
)
x_pos
=
qspace_h5
[
'geom/x'
][
indices
]
y_pos
=
qspace_h5
[
'geom/y'
][
indices
]
shared_res
=
mp_sharedctypes
.
RawArray
(
ctypes
.
c_double
,
n_indices
*
9
)
# TODO : find something better
shared_success
=
mp_sharedctypes
.
RawArray
(
ctypes
.
c_bool
,
n_indices
)
success
=
np
.
ndarray
((
n_indices
,),
dtype
=
np
.
bool
)
success
[:]
=
True
# this has to be done otherwise h5py complains about not being
# able to open compressed datasets from other processes
del
qdata
qdata
=
0
results
=
np
.
ndarray
((
n_indices
,
11
),
dtype
=
np
.
double
)
results
[:,
0
]
=
x_pos
results
[:,
1
]
=
y_pos
manager
=
mp
.
Manager
()
...
...
@@ -133,14 +143,12 @@ def get_peaks(qspace_f,
def
__init__
(
self
):
self
.
t_fit
=
0.
self
.
t_read
=
0.
self
.
t_lock
=
0.
self
.
t_write
=
0.
def
update
(
self
,
arg
):
(
t_read_
,
t_
lock_
,
t_
fit_
,
t_write_
)
=
arg
(
t_read_
,
t_fit_
,
t_write_
)
=
arg
self
.
t_fit
+=
t_fit_
self
.
t_read
+=
t_read_
self
.
t_lock
+=
t_lock_
self
.
t_write
+=
t_write_
res_times
=
myTimes
()
callback
=
res_times
.
update
...
...
@@ -161,28 +169,27 @@ def get_peaks(qspace_f,
# sending the None value to let the threads know that they should return
for
th_idx
in
range
(
n_proc
):
idx_queue
.
put
(
None
)
pool
.
close
()
pool
.
join
()
#t0 = time.time()
fit_x
=
np
.
ndarray
((
n_indices
,
3
),
dtype
=
np
.
float64
)
fit_y
=
np
.
ndarray
((
n_indices
,
3
),
dtype
=
np
.
float64
)
fit_z
=
np
.
ndarray
((
n_indices
,
3
),
dtype
=
np
.
float64
)
results
=
np
.
frombuffer
(
shared_res
)
results
.
shape
=
n_indices
,
9
fit_x
=
results
[...,
0
:
3
]
fit_y
=
results
[...,
3
:
6
]
fit_z
=
results
[...,
6
:
9
]
success
=
np
.
ndarray
((
n_indices
,),
dtype
=
np
.
bool
)
results
_np
=
np
.
frombuffer
(
shared_res
)
results
_np
.
shape
=
n_indices
,
9
results
[:,
2
:
5
]
=
results_np
[:,
0
:
3
]
results
[:,
5
:
8
]
=
results_np
[:,
3
:
6
]
results
[:,
8
:
11
]
=
results_np
[:,
6
:
9
]
t_total
=
time
.
time
()
-
t_total
if
disp_times
:
print
(
'Total : {0}.'
.
format
(
t_total
))
print
(
'Read {0}
(lock : {1})'
.
format
(
res_times
.
t_read
,
res_times
.
t_lock
))
print
(
'Read {0}
'
.
format
(
res_times
.
t_read
))
print
(
'Fit {0}'
.
format
(
res_times
.
t_fit
))
print
(
'Write {0}'
.
format
(
res_times
.
t_write
))
return
fit_x
,
fit_y
,
fit_z
,
success
return
results
,
success
def
_init_thread
(
shared_res_
,
shared_success_
,
...
...
@@ -224,7 +231,6 @@ def _fit_process(th_idx):
print
(
'Thread {0} started.'
.
format
(
th_idx
))
try
:
t_read
=
0.
t_lock
=
0.
t_fit
=
0.
results
=
np
.
frombuffer
(
shared_res
)
...
...
@@ -258,15 +264,11 @@ def _fit_process(th_idx):
if
i_cube
%
100
==
0
:
print
(
'Processing cube {0}/{1}.'
.
format
(
i_cube
,
result_shape
[
0
]))
t0
=
time
.
time
()
#read_lock.acquire()
t_lock
=
time
.
time
()
-
t0
t0
=
time
.
time
()
with
h5py
.
File
(
qspace_f
,
'r'
)
as
qspace_h5
:
qspace_h5
[
'qspace'
].
read_direct
(
cube
,
source_sel
=
np
.
s_
[
i_cube
],
dest_sel
=
None
)
#read_lock.release()
t_read
+=
time
.
time
()
-
t0
t0
=
time
.
time
()
...
...
@@ -284,8 +286,8 @@ def _fit_process(th_idx):
fit_z
=
fit_fn
(
q_z
,
z_sum
,
z_0
)
z_0
=
fit_z
except
Exception
as
ex
:
print
(
'Z Failed'
,
ex
)
z_0
=
None
print
'failed z'
,
ex
success_z
=
False
z_sum
=
0
...
...
@@ -300,7 +302,8 @@ def _fit_process(th_idx):
try
:
fit_y
=
fit_fn
(
q_y
,
y_sum
,
y_0
)
y_0
=
fit_y
except
:
except
Exception
as
ex
:
print
(
'Y Failed'
,
ex
)
y_0
=
None
success_y
=
False
...
...
@@ -314,7 +317,8 @@ def _fit_process(th_idx):
try
:
fit_x
=
fit_fn
(
q_x
,
x_sum
,
x_0
)
x_0
=
fit_x
except
:
except
Exception
as
ex
:
print
(
'X Failed'
,
ex
)
x_0
=
None
success_x
=
False
...
...
@@ -349,6 +353,6 @@ def _fit_process(th_idx):
except
Exception
as
ex
:
print
'EX'
,
ex
times
=
(
t_read
,
t_
lock
,
t_
fit
,
t_write
)
times
=
(
t_read
,
t_fit
,
t_write
)
print
(
'Thread {0} done ({1}).'
.
format
(
th_idx
,
times
))
return
times
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment