mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-20 00:21:02 +01:00
fixing warnings, and completing bug fix of gui and data gui call back
This commit is contained in:
@@ -3289,13 +3289,13 @@ void multiSlsDetector::readFrameFromReceiver() {
|
||||
if (dynamicRange == 4 && gappixelsenable) {
|
||||
int n = processImageWithGapPixels(multiframe, multigappixels);
|
||||
thisData =
|
||||
new detectorData(getCurrentProgress(), currentFileName.c_str(), nPixelsX,
|
||||
nPixelsY, multigappixels, n, dynamicRange, currentFileIndex);
|
||||
new detectorData(getCurrentProgress(), currentFileName.c_str(), nCompletePixelsX,
|
||||
nCompletePixelsY, multigappixels, n, dynamicRange, currentFileIndex);
|
||||
}
|
||||
// normal pixels
|
||||
else {
|
||||
thisData = new detectorData(getCurrentProgress(), currentFileName.c_str(), nPixelsX,
|
||||
nPixelsY, multiframe, multisize, dynamicRange,
|
||||
thisData = new detectorData(getCurrentProgress(), currentFileName.c_str(), nCompletePixelsX,
|
||||
nCompletePixelsY, multiframe, multisize, dynamicRange,
|
||||
currentFileIndex);
|
||||
}
|
||||
dataReady(thisData, currentFrameIndex,
|
||||
|
||||
Reference in New Issue
Block a user