cc3eb8352c
Build Packages / Unit tests (push) Skipped
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 9m28s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 10m9s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 9m47s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 10m58s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 11m39s
Build Packages / build:rpm (rocky8) (push) Successful in 11m43s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 12m59s
Build Packages / Generate python client (push) Successful in 35s
Build Packages / Build documentation (push) Successful in 59s
Build Packages / Create release (push) Skipped
Build Packages / build:rpm (ubuntu2204) (push) Successful in 11m48s
Build Packages / build:rpm (rocky9) (push) Successful in 12m32s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 10m24s
Build Packages / XDS test (durin plugin) (push) Successful in 7m35s
Build Packages / XDS test (neggia plugin) (push) Successful in 6m50s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 7m40s
Build Packages / DIALS test (push) Successful in 11m19s
This is an UNSTABLE release. The release has significant modifications for data processing - in case of troubles go back to 1.0.0-rc.144. * jfjoch_broker: Improve azimuthal integration (add <I^2> calculation) * jfjoch_broker: Fixes around indexing, aiming to handle multi-lattice crystals (work in progress, it is not fully integrated) * jfjoch_writer: Save mean(I), stddev(I), and count(I) for each azimuthal bin Reviewed-on: #58
76 lines
2.8 KiB
C++
76 lines
2.8 KiB
C++
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <mutex>
|
|
|
|
#include "../common/SpotToSave.h"
|
|
#include "../common/DiffractionExperiment.h"
|
|
#include "../common/PixelMask.h"
|
|
#include "PreviewCounter.h"
|
|
#include "../common/ColorScale.h"
|
|
|
|
enum class PreviewImageFormat {JPEG, TIFF};
|
|
|
|
struct PreviewImageSettings {
|
|
std::optional<float> saturation_value = 10;
|
|
std::optional<float> background_value = 0;
|
|
int64_t jpeg_quality = 70;
|
|
bool show_beam_center = true;
|
|
bool show_spots = true;
|
|
bool show_roi = false;
|
|
bool show_user_mask = true;
|
|
bool show_res_est = false;
|
|
std::optional<float> resolution_ring;
|
|
ColorScaleEnum scale = ColorScaleEnum::Indigo;
|
|
PreviewImageFormat format = PreviewImageFormat::JPEG;
|
|
};
|
|
|
|
class PreviewImage {
|
|
mutable std::mutex m;
|
|
DiffractionExperiment experiment;
|
|
|
|
std::vector<uint8_t> mask;
|
|
|
|
std::vector<SpotToSave> spots;
|
|
size_t xpixel = 0;
|
|
size_t ypixel = 0;
|
|
size_t pixel_depth_bytes = 2;
|
|
bool pixel_is_signed = false;
|
|
float beam_x = 0;
|
|
float beam_y = 0;
|
|
|
|
constexpr static uint8_t MaskGap = 1;
|
|
constexpr static uint8_t MaskUsr = 2;
|
|
constexpr static uint8_t MaskDet = 3;
|
|
|
|
constexpr static float auto_foreground_range = 0.001f;
|
|
|
|
template<class T>
|
|
std::vector<rgb> GenerateRGB(const uint8_t* value,
|
|
int64_t special_value,
|
|
int64_t sat_value,
|
|
const ColorScale &scale,
|
|
const PreviewImageSettings& settings) const;
|
|
std::vector<rgb> GenerateRGB(const PreviewImageSettings& settings, const DataMessage &msg) const;
|
|
|
|
void AddResolutionRing(std::vector<rgb> &rgb_image, float d) const;
|
|
void AddBeamCenter(std::vector<rgb> &rgb_image) const;
|
|
void AddSpots(std::vector<rgb> &rgb_image, const std::vector<SpotToSave>& spots) const;
|
|
void AddROI(std::vector<rgb> &rgb_image) const;
|
|
|
|
void color_pixel(std::vector<rgb>& ret, int64_t xpixel, int64_t ypixel, const rgb &color) const;
|
|
void spot(std::vector<rgb>& ret, int64_t xpixel, int64_t ypixel, const rgb &color) const;
|
|
void roi(std::vector<rgb>& ret, int64_t xpixel, int64_t ypixel, int64_t roi_number) const;
|
|
std::string GenerateImage(const PreviewImageSettings& settings, const DataMessage &msg) const;
|
|
|
|
void ConfigurePixel(const std::vector<uint32_t> &mask, size_t pixel_begin, size_t pixel_end);
|
|
public:
|
|
void Configure(const DiffractionExperiment& experiment, const PixelMask& mask, size_t nthreads = 0);
|
|
|
|
[[nodiscard]] std::string GenerateImage(const PreviewImageSettings& settings, const std::vector<uint8_t>& cbor_format);
|
|
[[nodiscard]] static std::string GenerateTIFF(const std::vector<uint8_t>& cbor_format) ;
|
|
};
|