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
+5
View File
@@ -14,6 +14,11 @@ class HDF5DataFilePluginAzInt : public HDF5DataFilePlugin {
std::vector<float> az_int_bin_to_two_theta;
std::vector<float> az_int_bin_to_phi;
std::vector<float> az_int_image;
std::vector<float> az_int_image_std;
std::vector<uint64_t> az_int_image_count;
bool save_profile_count = false;
bool save_profile_std = false;
// std::unique_ptr<HDF5DataSet> dataset;
public: