6#ifndef OPENEV_CORE_MATRICES_HPP
7#define OPENEV_CORE_MATRICES_HPP
12template <
typename Tm = std::u
int8_t>
15 using cv::Mat_<Tm>::Mat_;
23 inline Tm emplace(
const T x,
const T y) {
28 cv::Mat_<Tm>::setTo(0);
32 static constexpr Tm value_ = std::numeric_limits<Tm>::max();
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_;
39 return *(this->
template ptr<Tm>(y) + x) = value_;
46 using cv::Mat_<
double>::Mat_;
49 inline double insert(
const Event_<T>& e) {
50 return set(e.x, e.y, e.
t);
54 inline double emplace(
const T x,
const T y,
const double t) {
59 cv::Mat_<double>::setTo(0);
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;
68 return *(this->ptr<double>(y) + x) = t;
75 using cv::Mat_<
bool>::Mat_;
79 return set(e.x, e.y, e.
p);
83 inline bool emplace(
const T x,
const T y,
const bool p) {
88 cv::Mat_<bool>::setTo(
false);
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;
97 return *(this->ptr<bool>(y) + x) = p;
104 using cv::Mat_<
int>::Mat_;
106 template <
typename T>
108 return set(e.x, e.y, e.
p);
111 template <
typename T>
112 inline int emplace(
const T x,
const T y,
const bool p) {
116 inline void clear() {
117 cv::Mat_<int>::setTo(0);
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);
126 return *(this->ptr<int>(y) + x) += (p ? +1 : -1);
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.