// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute // SPDX-License-Identifier: GPL-3.0-only #ifndef JFJOCH_JFJOCHVIEWERIMAGESTATISTICS_H #define JFJOCH_JFJOCHVIEWERIMAGESTATISTICS_H #include #include #include "../../reader/JFJochReader.h" class JFJochViewerImageStatistics : public QWidget { Q_OBJECT QLabel *source_name; QLabel *sample_name; QLabel *dataset_name; QLabel *detector_name; QLabel *exposure_time; QLabel *rotation_angle_label; QLabel *rotation_angle; QLabel *spots; QLabel *valid_values; QLabel *indexed; QLabel *bkg_estimate; QLabel *res_estimate; QLabel *masked_pixels; QLabel *b_factor; QLabel *profile_radius_label; QLabel *profile_radius; public: JFJochViewerImageStatistics(QWidget *parent); public slots: void loadImage(std::shared_ptr image); }; #endif //JFJOCH_JFJOCHVIEWERIMAGESTATISTICS_H