OpenEV
Extending OpenCV to event-based vision
 
Loading...
Searching...
No Matches
matrices.hpp
Go to the documentation of this file.
1
6#ifndef OPENEV_CORE_MATRICES_HPP
7#define OPENEV_CORE_MATRICES_HPP
8
10
11namespace ev {
12template <typename Tm = std::uint8_t>
13class BinaryMat : public cv::Mat_<Tm> {
14public:
15 using cv::Mat_<Tm>::Mat_;
16
17 template <typename T>
18 inline Tm insert(const Event_<T>& e) {
19 return set(e.x, e.y);
20 }
21
22 template <typename T>
23 inline Tm emplace(const T x, const T y) {
24 return set(x, y);
25 }
26
27 inline void clear() {
28 cv::Mat_<Tm>::setTo(0);
29 }
30
31private:
32 static constexpr Tm value_ = std::numeric_limits<Tm>::max();
33
34 template <typename T>
35 inline Tm set(const T x, const T y) {
36 if constexpr (std::is_floating_point_v<T>) {
37 return *(this->template ptr<Tm>(std::lround(y)) + std::lround(x)) = value_;
38 } else {
39 return *(this->template ptr<Tm>(y) + x) = value_;
40 }
41 }
42};
43
44class TimeMat : public cv::Mat_<double> {
45public:
46 using cv::Mat_<double>::Mat_;
47
48 template <typename T>
49 inline double insert(const Event_<T>& e) {
50 return set(e.x, e.y, e.t);
51 }
52
53 template <typename T>
54 inline double emplace(const T x, const T y, const double t) {
55 return set(x, y, t);
56 }
57
58 inline void clear() {
59 cv::Mat_<double>::setTo(0);
60 }
61
62private:
63 template <typename T>
64 inline double set(const T x, const T y, const double t) {
65 if constexpr (std::is_floating_point_v<T>) {
66 return *(this->ptr<double>(std::lround(y)) + std::lround(x)) = t;
67 } else {
68 return *(this->ptr<double>(y) + x) = t;
69 }
70 }
71};
72
73class PolarityMat : public cv::Mat_<bool> {
74public:
75 using cv::Mat_<bool>::Mat_;
76
77 template <typename T>
78 inline bool insert(const Event_<T>& e) {
79 return set(e.x, e.y, e.p);
80 }
81
82 template <typename T>
83 inline bool emplace(const T x, const T y, const bool p) {
84 return set(x, y, p);
85 }
86
87 inline void clear() {
88 cv::Mat_<bool>::setTo(false);
89 }
90
91private:
92 template <typename T>
93 inline bool set(const T x, const T y, const bool p) {
94 if constexpr (std::is_floating_point_v<T>) {
95 return *(this->ptr<bool>(std::lround(y)) + std::lround(x)) = p;
96 } else {
97 return *(this->ptr<bool>(y) + x) = p;
98 }
99 }
100};
101
102class CounterMat : public cv::Mat_<int> {
103public:
104 using cv::Mat_<int>::Mat_;
105
106 template <typename T>
107 inline int insert(const Event_<T>& e) {
108 return set(e.x, e.y, e.p);
109 }
110
111 template <typename T>
112 inline int emplace(const T x, const T y, const bool p) {
113 return set(x, y, p);
114 }
115
116 inline void clear() {
117 cv::Mat_<int>::setTo(0);
118 }
119
120private:
121 template <typename T>
122 inline int set(const T x, const T y, const bool p) {
123 if constexpr (std::is_floating_point_v<T>) {
124 return *(this->ptr<int>(std::lround(y)) + std::lround(x)) += (p ? +1 : -1);
125 } else {
126 return *(this->ptr<int>(y) + x) += (p ? +1 : -1);
127 }
128 }
129};
130
131} // namespace ev
132
133#endif
Definition matrices.hpp:13
Definition matrices.hpp:102
This class extends cv::Point_<T> for event data. For more information, please refer here.
Definition types.hpp:60
bool p
Definition types.hpp:63
double t
Definition types.hpp:62
Definition matrices.hpp:73
Definition matrices.hpp:44
Basic event-based vision structures based on OpenCV components.