Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
calng
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
calibration
calng
Commits
0aeb426f
Commit
0aeb426f
authored
2 months ago
by
David Hammer
Browse files
Options
Downloads
Plain Diff
Merge branch '2025-winter-bud-fixes' into mid-arbiter-on-scene
parents
d438abc7
74d39b40
No related branches found
No related tags found
1 merge request
!118
Draft: MID: put arbiter on manager scene
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/calng/Gotthard2Assembler.py
+7
-0
7 additions, 0 deletions
src/calng/Gotthard2Assembler.py
src/calng/frameselection_utils.py
+4
-5
4 additions, 5 deletions
src/calng/frameselection_utils.py
src/calng/kernels/peakfinder9_gpu.cu
+58
-55
58 additions, 55 deletions
src/calng/kernels/peakfinder9_gpu.cu
with
69 additions
and
60 deletions
src/calng/Gotthard2Assembler.py
+
7
−
0
View file @
0aeb426f
...
...
@@ -37,6 +37,13 @@ class Gotthard2Assembler(TrainMatcher.TrainMatcher):
.
dataSchema
(
schemas
.
preview_schema
(
wrap_image_in_imagedata
=
False
))
.
commit
(),
STRING_ELEMENT
(
expected
)
.
key
(
"
managerDevice
"
)
.
displayedName
(
"
Manager device
"
)
.
assignmentInternal
()
.
defaultValue
(
""
)
.
commit
(),
STRING_ELEMENT
(
expected
)
.
key
(
"
geometryDevice
"
)
.
displayedName
(
"
[Unused] Geometry device
"
)
...
...
This diff is collapsed.
Click to expand it.
src/calng/frameselection_utils.py
+
4
−
5
View file @
0aeb426f
...
...
@@ -138,9 +138,9 @@ class FrameselectionFriend:
def
get_mask
(
self
,
sources
):
if
self
.
_enabled
and
self
.
_arbiter
in
sources
:
return
np
.
array
(
sources
[
self
.
_arbiter
][
0
][
"
data.dataFramePattern
"
],
copy
=
False
)
.
astype
(
bool
,
copy
=
False
)
return
np
.
as
array
(
sources
[
self
.
_arbiter
][
0
][
"
data.dataFramePattern
"
],
dtype
=
bool
)
else
:
return
None
...
...
@@ -171,8 +171,7 @@ class FrameselectionFriend:
if
not
arbiter
.
has
(
mask_key
):
# no mask
continue
mask
=
np
.
array
(
arbiter
[
mask_key
],
dtype
=
bool
,
copy
=
False
)
mask
=
np
.
asarray
(
arbiter
[
mask_key
],
dtype
=
bool
)
for
source
,
data
in
correction_sources
.
items
():
if
not
data
.
has
(
arg
):
...
...
This diff is collapsed.
Click to expand it.
src/calng/kernels/peakfinder9_gpu.cu
+
58
−
55
View file @
0aeb426f
...
...
@@ -4,15 +4,15 @@
class
MaskedImageFrame
{
public:
const
float
*
data_start
;
const
unsigned
short
num_rows
;
const
unsigned
short
num_cols
;
__device__
MaskedImageFrame
(
const
float
*
data_start
,
const
unsigned
short
num_rows
,
const
unsigned
short
num_cols
)
:
data_start
(
data_start
),
num_rows
(
num_rows
),
num_cols
(
num_cols
)
{}
const
unsigned
short
ss_dim
;
const
unsigned
short
fs_dim
;
__device__
MaskedImageFrame
(
const
float
*
data_start
,
const
unsigned
short
ss_dim
,
const
unsigned
short
fs_dim
)
:
data_start
(
data_start
),
ss_dim
(
ss_dim
),
fs_dim
(
fs_dim
)
{}
__device__
bool
is_masked
(
const
unsigned
short
i
,
const
unsigned
short
j
)
{
return
isnan
(
data_start
[
i
*
num_cols
+
j
]);
return
isnan
(
data_start
[
i
*
fs_dim
+
j
]);
}
__device__
float
get
(
const
unsigned
short
i
,
const
unsigned
short
j
)
{
return
data_start
[
i
*
num_cols
+
j
];
return
data_start
[
i
*
fs_dim
+
j
];
}
__device__
float
get
(
const
unsigned
short
i
,
const
unsigned
short
j
,
const
float
fallback
)
{
if
(
is_masked
(
i
,
j
))
{
...
...
@@ -56,8 +56,8 @@ public:
};
extern
"C"
__global__
void
pf9
(
const
unsigned
short
num_frames
,
const
unsigned
short
num_rows
,
const
unsigned
short
num_cols
,
const
unsigned
short
ss_dim
,
const
unsigned
short
fs_dim
,
const
unsigned
short
window_radius
,
const
float
min_peak_over_border
,
const
float
min_snr_biggest_pixel
,
...
...
@@ -73,37 +73,37 @@ extern "C" __global__ void pf9(const unsigned short num_frames,
// execution model: one thread handles one pixel in one frame
const
unsigned
short
frame
=
blockDim
.
x
*
blockIdx
.
x
+
threadIdx
.
x
;
const
unsigned
short
row
=
blockDim
.
y
*
blockIdx
.
y
+
threadIdx
.
y
;
const
unsigned
short
col
=
blockDim
.
z
*
blockIdx
.
z
+
threadIdx
.
z
;
const
unsigned
short
ss_index
=
blockDim
.
y
*
blockIdx
.
y
+
threadIdx
.
y
;
const
unsigned
short
fs_index
=
blockDim
.
z
*
blockIdx
.
z
+
threadIdx
.
z
;
if
(
frame
>=
num_frames
||
row
<
window_radius
||
row
>=
num_rows
-
window_radius
||
col
<
window_radius
||
col
>=
num_cols
-
window_radius
)
{
ss_index
<
window_radius
||
ss_index
>=
ss_dim
-
window_radius
||
fs_index
<
window_radius
||
fs_index
>=
fs_dim
-
window_radius
)
{
return
;
}
// wrap thin helper class around for convenience
MaskedImageFrame
masked_frame
(
image
+
frame
*
(
num_rows
*
num_cols
),
num_rows
,
num_cols
);
MaskedImageFrame
masked_frame
(
image
+
frame
*
(
ss_dim
*
fs_dim
),
ss_dim
,
fs_dim
);
// candidate should not be masked
if
(
masked_frame
.
is_masked
(
row
,
col
))
{
if
(
masked_frame
.
is_masked
(
ss_index
,
fs_index
))
{
return
;
}
float
pixel_val
=
masked_frame
.
get
(
row
,
col
);
float
pixel_val
=
masked_frame
.
get
(
ss_index
,
fs_index
);
// candidate should be greater than immediate neighbors
// with tie breaking: in case of equality, lowest row,
col
is candidate
if
(
pixel_val
<=
masked_frame
.
get
(
row
-
1
,
col
-
1
,
-
INFINITY
)
||
pixel_val
<=
masked_frame
.
get
(
row
-
1
,
col
,
-
INFINITY
)
||
pixel_val
<=
masked_frame
.
get
(
row
-
1
,
col
+
1
,
-
INFINITY
)
||
pixel_val
<=
masked_frame
.
get
(
row
,
col
-
1
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
row
,
col
+
1
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
row
+
1
,
col
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
row
+
1
,
col
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
row
+
1
,
col
,
-
INFINITY
))
{
// with tie breaking: in case of equality, lowest row,
fs_index
is candidate
if
(
pixel_val
<=
masked_frame
.
get
(
ss_index
-
1
,
fs_index
-
1
,
-
INFINITY
)
||
pixel_val
<=
masked_frame
.
get
(
ss_index
-
1
,
fs_index
,
-
INFINITY
)
||
pixel_val
<=
masked_frame
.
get
(
ss_index
-
1
,
fs_index
+
1
,
-
INFINITY
)
||
pixel_val
<=
masked_frame
.
get
(
ss_index
,
fs_index
-
1
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
ss_index
,
fs_index
+
1
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
ss_index
+
1
,
fs_index
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
ss_index
+
1
,
fs_index
,
-
INFINITY
)
||
pixel_val
<
masked_frame
.
get
(
ss_index
+
1
,
fs_index
,
-
INFINITY
))
{
return
;
}
...
...
@@ -112,7 +112,7 @@ extern "C" __global__ void pf9(const unsigned short num_frames,
// (full border for window radius 2, less for higher)
{
float
border_max
=
-
INFINITY
;
masked_frame
.
fun_ring
(
row
,
col
,
window_radius
,
[
&
]
(
unsigned
short
,
unsigned
short
,
float
val
)
{
masked_frame
.
fun_ring
(
ss_index
,
fs_index
,
window_radius
,
[
&
]
(
unsigned
short
,
unsigned
short
,
float
val
)
{
border_max
=
max
(
border_max
,
val
);
});
if
(
pixel_val
-
min_peak_over_border
<=
border_max
)
{
...
...
@@ -127,7 +127,7 @@ extern "C" __global__ void pf9(const unsigned short num_frames,
// https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm
unsigned
short
count
=
0
;
float
M2
=
0
;
masked_frame
.
fun_ring
(
row
,
col
,
window_radius
,
[
&
]
(
unsigned
short
,
unsigned
short
,
float
val
)
{
masked_frame
.
fun_ring
(
ss_index
,
fs_index
,
window_radius
,
[
&
]
(
unsigned
short
,
unsigned
short
,
float
val
)
{
++
count
;
float
delta
=
val
-
mean
;
mean
+=
delta
/
static_cast
<
float
>
(
count
);
...
...
@@ -147,44 +147,47 @@ extern "C" __global__ void pf9(const unsigned short num_frames,
}
// whole peak should have sufficent SNR
float
peak_weighted_
row
;
float
peak_weighted_
col
;
float
peak_total_mass
=
pixel_val
-
mean
;
float
peak_weighted_
ss
;
float
peak_weighted_
fs
;
float
peak_total_mass
=
0
;
{
/* TODO: more compact form */
float
peak_weighted_row_nom
=
static_cast
<
float
>
(
row
)
*
pixel_val
;
float
peak_weighted_col_nom
=
static_cast
<
float
>
(
col
)
*
pixel_val
;
const
float
peak_pixel_threshold
=
mean
+
min_snr_peak_pixels
*
sigma
;
for
(
unsigned
short
layer
=
1
;
layer
<=
window_radius
;
++
layer
)
{
float
total_mass_before
=
peak_total_mass
;
masked_frame
.
fun_ring
(
row
,
col
,
layer
,
[
&
]
(
unsigned
short
i
,
unsigned
short
j
,
float
val
)
{
if
(
val
>
peak_pixel_threshold
)
{
float
val_over_mean
=
val
-
mean
;
peak_total_mass
+=
val_over_mean
;
peak_weighted_row_nom
+=
val_over_mean
*
static_cast
<
float
>
(
i
);
peak_weighted_col_nom
+=
val_over_mean
*
static_cast
<
float
>
(
j
);
}
});
// in case nothing was added, stop expanding
if
(
peak_total_mass
==
total_mass_before
)
{
break
;
}
}
float
peak_weighted_ss_nom
=
0
;
float
peak_weighted_fs_nom
=
0
;
// expand peak in rings
{
const
float
peak_pixel_threshold
=
mean
+
min_snr_peak_pixels
*
sigma
;
for
(
unsigned
short
layer
=
1
;
layer
<=
window_radius
;
++
layer
)
{
float
total_mass_before
=
peak_total_mass
;
masked_frame
.
fun_ring
(
ss_index
,
fs_index
,
layer
,
[
&
]
(
unsigned
short
i
,
unsigned
short
j
,
float
val
)
{
if
(
val
>
peak_pixel_threshold
)
{
float
val_over_mean
=
val
-
mean
;
peak_total_mass
+=
val_over_mean
;
peak_weighted_ss_nom
+=
val_over_mean
*
static_cast
<
float
>
(
i
);
peak_weighted_fs_nom
+=
val_over_mean
*
static_cast
<
float
>
(
j
);
}
});
// in case nothing was added, stop expanding
if
(
peak_total_mass
==
total_mass_before
)
{
break
;
}
}
}
if
(
peak_total_mass
<=
mean
+
min_snr_whole_peak
*
sigma
)
{
return
;
}
if
(
peak_total_mass
==
0
)
{
float
peak_weighted_
row
=
static_cast
<
float
>
(
row
);
float
peak_weighted_
col
=
static_cast
<
float
>
(
col
);
peak_weighted_
ss
=
static_cast
<
float
>
(
ss_index
);
peak_weighted_
fs
=
static_cast
<
float
>
(
fs_index
);
}
else
{
peak_weighted_
row
=
peak_weighted_
row
_nom
/
peak_total_mass
;
peak_weighted_
col
=
peak_weighted_
col
_nom
/
peak_total_mass
;
peak_weighted_
ss
=
peak_weighted_
ss
_nom
/
peak_total_mass
;
peak_weighted_
fs
=
peak_weighted_
fs
_nom
/
peak_total_mass
;
}
}
unsigned
int
output_index
=
atomicInc
(
output_counts
+
frame
,
max_peaks
);
unsigned
int
output_pos
=
frame
*
max_peaks
+
output_index
;
output_x
[
output_pos
]
=
peak_weighted_
row
;
output_y
[
output_pos
]
=
peak_weighted_
col
;
output_x
[
output_pos
]
=
peak_weighted_
ss
;
output_y
[
output_pos
]
=
peak_weighted_
fs
;
output_intensity
[
output_pos
]
=
peak_total_mass
;
}
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