Add a row after the Indexing solution that flags images with more than one indexed lattice (indexing_lattice_count > 1). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
40 lines
898 B
C++
40 lines
898 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#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_label;
|
|
QLabel *rotation_angle;
|
|
QLabel *spots;
|
|
QLabel *valid_values;
|
|
QLabel *indexed;
|
|
QLabel *multiple_lattices;
|
|
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<const JFJochReaderImage> image);
|
|
};
|
|
|
|
|
|
|