20 lines
550 B
C
20 lines
550 B
C
// Copyright (2019-2024) Paul Scherrer Institute
|
|
|
|
#ifndef JUNGFRAUJOCH_CPUSPOTFINDER_H
|
|
#define JUNGFRAUJOCH_CPUSPOTFINDER_H
|
|
|
|
#include "../common/DiffractionExperiment.h"
|
|
#include "SpotFindingSettings.h"
|
|
#include "StrongPixelSet.h"
|
|
|
|
void FindSpots(DeviceOutput &output,
|
|
const SpotFindingSettings& settings,
|
|
const float *d_array,
|
|
float *arr_mean,
|
|
float *arr_stddev,
|
|
uint32_t *arr_valid_count,
|
|
uint32_t *arr_strong_pixel);
|
|
|
|
|
|
#endif //JUNGFRAUJOCH_CPUSPOTFINDER_H
|