Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
ToolBox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
ToolBox
Commits
7134dd95
Commit
7134dd95
authored
2 years ago
by
Hampus Wikmark Kreuger
Browse files
Options
Downloads
Patches
Plain Diff
Centroid subtracts dark image if there is one
parent
92cb6a1f
No related branches found
No related tags found
3 merge requests
!195
Commented centroid
,
!191
Centroid subtracts dark image if there is one
,
!188
P2866 updates
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/toolbox_scs/detectors/hrixs.py
+6
-2
6 additions, 2 deletions
src/toolbox_scs/detectors/hrixs.py
with
6 additions
and
2 deletions
src/toolbox_scs/detectors/hrixs.py
+
6
−
2
View file @
7134dd95
...
...
@@ -333,11 +333,11 @@ class hRIXS:
# If runNB cannot be iterated over, we assume it's a single run
data
=
self
.
from_run
(
runNB
,
proposal
)
self
.
dark_image
=
data
[
'
hRIXS_det
'
].
mean
(
dim
=
'
trainId
'
)
self
.
dark_im_array
=
self
.
dark_image
.
to_numpy
()
self
.
USE_DARK
=
True
def
find_curvature
(
self
,
runNB
,
proposal
=
None
,
plot
=
True
,
args
=
None
,
**
kwargs
):
data
=
self
.
from_run
(
runNB
,
proposal
)
image
=
data
[
'
hRIXS_det
'
].
sum
(
dim
=
'
trainId
'
)
\
.
to_numpy
()[
self
.
X_RANGE
,
self
.
Y_RANGE
].
T
if
args
is
None
:
...
...
@@ -356,8 +356,12 @@ class hRIXS:
hit_y
=
[]
ret
=
np
.
zeros
((
len
(
data
[
"
hRIXS_det
"
]),
bins
))
for
image
,
r
in
zip
(
data
[
"
hRIXS_det
"
],
ret
):
if
self
.
USE_DARK
:
use_image
=
image
.
to_numpy
()
-
self
.
dark_im_array
else
:
use_image
=
image
.
to_numpy
()
c
=
centroid
(
image
.
to_numpy
()
[
self
.
X_RANGE
,
self
.
Y_RANGE
].
T
,
use_
image
[
self
.
X_RANGE
,
self
.
Y_RANGE
].
T
,
threshold
=
self
.
THRESHOLD
,
std_threshold
=
self
.
STD_THRESHOLD
,
curvature
=
(
self
.
CURVE_A
,
self
.
CURVE_B
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment