You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dcnum <= 0.14.0, preselection was employed to remove input images that presumably contain no events. This was implemented as follows:
ifself.preselect:
ptp=np.ptp(self.data.image_corr[index])
ifptp<0.1*self.ptp_median:
# do not use this eventreturnNone
The ptp_median value was computed from the background data.
Preselection was removed in dcnum 0.15.0, because
it represents a preprocessing step that has possibly hidden impact on data processing
it is not yet represented in any pipeline identifier
Should we want to re-introduce preselection, then we would need to properly at it with its own pipeline identifier. Should the input data contain duplicate frames, this could also be addressed (instead of segmenting a duplicate frame twice).
The text was updated successfully, but these errors were encountered:
paulmueller
changed the title
Preselection
Preselection based on peak-to-peak analysis
Nov 21, 2023
- BREAKING CHANGE: Remove preselection capabilities, because it is not
well integrated into the pipeline. For more information, please see
issue #15.
- ref: increment DCNUM_PPID_GENERATION to 7
In dcnum <= 0.14.0, preselection was employed to remove input images that presumably contain no events. This was implemented as follows:
The
ptp_median
value was computed from the background data.Preselection was removed in dcnum 0.15.0, because
Should we want to re-introduce preselection, then we would need to properly at it with its own pipeline identifier. Should the input data contain duplicate frames, this could also be addressed (instead of segmenting a duplicate frame twice).
The text was updated successfully, but these errors were encountered: