AzimuthalIntegrationProfile: Add standard deviation + save pixel count + improve handling of special cases (missing image)

This commit is contained in:
2026-06-02 15:50:11 +02:00
parent 75de40f52b
commit 953089009f
13 changed files with 175 additions and 16 deletions
+3
View File
@@ -100,6 +100,9 @@ void MXAnalysisWithoutFPGA::Analyze(DataMessage &output,
output.error_pixel_count = ret.error_pixel_count;
output.saturated_pixel_count = ret.saturated_pixel_count;
output.az_int_profile = profile.GetResult();
output.az_int_profile_count = profile.GetPixelCount();
output.az_int_profile_std = profile.GetStd();
output.bkg_estimate = profile.GetBkgEstimate(integration.Settings());
}