Separate class for Azimuthal Integration

This commit is contained in:
2026-04-22 13:59:32 +02:00
parent b63d7eb6cb
commit 6f361afae3
9 changed files with 77 additions and 58 deletions
@@ -5,42 +5,41 @@
#include "ImagePreprocessor.h"
ImagePreprocessor::ImagePreprocessor(const DiffractionExperiment &experiment,
const PixelMask &mask,
std::vector<int32_t> &processed_image)
const PixelMask &mask)
: npixels(experiment.GetPixelsNum()),
experiment(experiment),
processed_image(processed_image),
mask_1bit(npixels, false),
saturation_limit(experiment.GetSaturationLimit()) {
if (processed_image.size() != npixels)
throw JFJochException(JFJochExceptionCategory::InputParameterInvalid, "Processed image size mismatch");
for (int i = 0; i < npixels; i++)
mask_1bit[i] = (mask.GetMask().at(i) != 0);
}
ImageStatistics ImagePreprocessor::Analyze(const uint8_t *image_ptr, CompressedImageMode image_mode) {
ImageStatistics ImagePreprocessor::Analyze(std::vector<int32_t> &processed_image, const uint8_t *image_ptr, CompressedImageMode image_mode) {
switch (image_mode) {
case CompressedImageMode::Int8:
return Analyze<int8_t>(image_ptr, INT8_MIN, INT8_MAX);
return Analyze<int8_t>(processed_image, image_ptr, INT8_MIN, INT8_MAX);
case CompressedImageMode::Int16:
return Analyze<int16_t>(image_ptr, INT16_MIN, INT16_MAX);
return Analyze<int16_t>(processed_image, image_ptr, INT16_MIN, INT16_MAX);
case CompressedImageMode::Int32:
return Analyze<int32_t>(image_ptr, INT32_MIN, INT32_MAX);
return Analyze<int32_t>(processed_image, image_ptr, INT32_MIN, INT32_MAX);
case CompressedImageMode::Uint8:
return Analyze<uint8_t>(image_ptr, UINT8_MAX, UINT8_MAX);
return Analyze<uint8_t>(processed_image, image_ptr, UINT8_MAX, UINT8_MAX);
case CompressedImageMode::Uint16:
return Analyze<uint16_t>(image_ptr, UINT16_MAX, UINT16_MAX);
return Analyze<uint16_t>(processed_image, image_ptr, UINT16_MAX, UINT16_MAX);
case CompressedImageMode::Uint32:
return Analyze<uint32_t>(image_ptr, UINT32_MAX, UINT32_MAX);
return Analyze<uint32_t>(processed_image, image_ptr, UINT32_MAX, UINT32_MAX);
default:
throw JFJochException(JFJochExceptionCategory::InputParameterInvalid, "RGB/float mode not supported");
}
}
template<class T>
ImageStatistics ImagePreprocessor::Analyze(const uint8_t *input, T err_pixel_val, T sat_pixel_val) {
ImageStatistics ImagePreprocessor::Analyze(std::vector<int32_t> &processed_image, const uint8_t *input, T err_pixel_val, T sat_pixel_val) {
if (processed_image.size() != npixels)
throw JFJochException(JFJochExceptionCategory::InputParameterInvalid, "Processed image size mismatch");
auto image = reinterpret_cast<const T *>(input);
ImageStatistics ret{};