Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LimaGroup
Lima-camera-slsdetector
Commits
4adcb005
Commit
4adcb005
authored
Feb 05, 2021
by
Alejandro Homs Puron
Committed by
operator for beamline
Feb 11, 2021
Browse files
FrameAssembler: add inter module gap pixel filling
* Do not need to include receiver destination buffer offset
parent
60c36bb2
Changes
3
Hide whitespace changes
Inline
Side-by-side
slsDetectorPackage
@
0604528d
Compare
62dae8ad
...
0604528d
Subproject commit
62dae8adb6408680d11e9f3ec2bb56bac2437dd5
Subproject commit
0604528d4ac4a99f8307c4c422d11c1b930957c0
src/SlsDetectorEiger.cpp
View file @
4adcb005
...
...
@@ -634,7 +634,7 @@ bool Eiger::Recv::processOneFrame(FrameType frame, char *bptr)
DEB_PARAM
()
<<
DEB_VAR2
(
m_idx
,
frame
);
RecvImageData
data
;
data
.
frame
=
frame
;
data
.
buffer
=
bptr
+
m_data_offset
;
data
.
buffer
=
bptr
;
return
m_recv
->
getImage
(
data
);
}
...
...
src/SlsDetectorJungfrau.cpp
View file @
4adcb005
...
...
@@ -59,7 +59,7 @@ bool Jungfrau::Recv::processOneFrame(FrameType frame, char *bptr)
DEB_PARAM
()
<<
DEB_VAR2
(
m_idx
,
frame
);
RecvImageData
data
;
data
.
frame
=
frame
;
data
.
buffer
=
bptr
+
m_data_offset
;
data
.
buffer
=
bptr
;
return
m_recv
->
getImage
(
data
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment