17 lines
657 B
C++
17 lines
657 B
C++
// SPDX-FileCopyrightText: 2026 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#include "ImagePreprocessor.h"
|
|
|
|
class ImagePreprocessorCPU : public ImagePreprocessor {
|
|
|
|
std::vector<bool> mask_1bit;
|
|
|
|
template <class T> ImageStatistics Analyze(std::vector<int32_t> &processed_image, const uint8_t *input, T err_value, T sat_value);
|
|
public:
|
|
ImagePreprocessorCPU(const DiffractionExperiment &experiment, const PixelMask &mask);
|
|
ImageStatistics Analyze(std::vector<int32_t> &processed_image, const uint8_t *decompressed_image, CompressedImageMode image_mode) override;
|
|
};
|