Files
Jungfraujoch/viewer/JFJochViewerImageStatistics.h
T
leonarski_f f5bde00175
Build Packages / build:rpm (ubuntu2404) (push) Has been cancelled
Build Packages / Generate python client (push) Has been cancelled
Build Packages / Build documentation (push) Has been cancelled
Build Packages / Unit tests (push) Has been cancelled
Build Packages / Create release (push) Has been cancelled
Build Packages / build:rpm (rocky8) (push) Has started running
Build Packages / build:rpm (ubuntu2204) (push) Has been cancelled
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Has been cancelled
Build Packages / build:rpm (rocky8_sls9) (push) Has been cancelled
Build Packages / build:rpm (rocky9) (push) Has been cancelled
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Has been cancelled
Build Packages / build:rpm (rocky8_nocuda) (push) Has been cancelled
Build Packages / build:rpm (rocky9_nocuda) (push) Has been cancelled
jfjoch_viewer: Adjustments to the code
2025-11-05 15:10:53 +01:00

38 lines
918 B
C++

// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
// SPDX-License-Identifier: GPL-3.0-only
#ifndef JFJOCH_JFJOCHVIEWERIMAGESTATISTICS_H
#define JFJOCH_JFJOCHVIEWERIMAGESTATISTICS_H
#include <QWidget>
#include <QLabel>
#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;
QLabel *spots;
QLabel *valid_values;
QLabel *indexed;
QLabel *bkg_estimate;
QLabel *res_estimate;
QLabel *masked_pixels;
QLabel *b_factor;
QLabel *profile_radius;
public:
JFJochViewerImageStatistics(QWidget *parent);
public slots:
void loadImage(std::shared_ptr<const JFJochReaderImage> image);
};
#endif //JFJOCH_JFJOCHVIEWERIMAGESTATISTICS_H