v1.0.0-rc.51

This commit is contained in:
2025-06-22 13:15:10 +02:00
parent aa13b1cd0b
commit 50eaaaaf29
176 changed files with 954 additions and 194 deletions
+5
View File
@@ -6,6 +6,7 @@
#include "StrongPixelSet.h"
#include "../compression/JFJochDecompress.h"
#include "indexing/IndexerFactory.h"
#include "SpotAnalysis.h"
ImageAnalysisCPU::ImageAnalysisCPU(const DiffractionExperiment &in_experiment,
const AzimuthalIntegration &in_integration,
@@ -150,6 +151,10 @@ void ImageAnalysisCPU::Analyze(DataMessage &output,
if (spot_finding_settings.enable)
spots = spotFinder.Run(image, spot_finding_settings);
output.spot_count_low_res = CountLowResSpots(experiment,
spots,
spot_finding_settings.cutoff_spot_count_low_res);
std::vector<DiffractionSpot> spots_out;
FilterSpotsByCount(max_spot_count, spots, spots_out);