-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshmread.hpp
64 lines (54 loc) · 1.73 KB
/
shmread.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#pragma once
#include <cuda_runtime.h>
#include <fmt/core.h>
#include <vector>
#include "h5read.h"
class SHMRead : public Reader {
private:
size_t _num_images;
std::array<size_t, 2> _image_shape;
const std::string _base_path;
std::vector<uint8_t> _mask;
std::array<image_t_type, 2> _trusted_range;
std::optional<float> _wavelength;
std::array<float, 2> _beam_center;
std::array<float, 2> _pixel_size;
float _detector_distance;
std::array<float, 2> _oscillation;
public:
SHMRead(const std::string &path);
bool is_image_available(size_t index);
std::span<uint8_t> get_raw_chunk(size_t index, std::span<uint8_t> destination);
virtual auto get_raw_chunk_compression() -> ChunkCompression {
return Reader::ChunkCompression::BITSHUFFLE_LZ4;
}
size_t get_number_of_images() const {
return _num_images;
}
std::array<size_t, 2> image_shape() const {
return _image_shape;
};
std::optional<std::span<const uint8_t>> get_mask() const {
return {{_mask.data(), _mask.size()}};
}
virtual std::array<image_t_type, 2> get_trusted_range() const {
return _trusted_range;
}
std::optional<float> get_wavelength() const {
return _wavelength;
}
virtual std::optional<std::array<float, 2>> get_pixel_size() const {
return {_pixel_size};
}
virtual std::optional<std::array<float, 2>> get_beam_center() const {
return {_beam_center};
}
virtual std::optional<float> get_detector_distance() const {
return _detector_distance;
}
virtual std::array<float, 2> get_oscillation() const {
return _oscillation;
}
};
template <>
bool is_ready_for_read<SHMRead>(const std::string &path);