OpenEV
Extending OpenCV to event-based vision
Loading...
Searching...
No Matches
point-cloud.hpp
Go to the documentation of this file.
1
6#ifndef OPENEV_REPRESENTATIONS_POINT_CLOUD_HPP
7#define OPENEV_REPRESENTATIONS_POINT_CLOUD_HPP
8
10#include <array>
11#include <iterator>
12#include <opencv2/core/hal/interface.h>
13#include <opencv2/core/matx.hpp>
14#include <opencv2/core/types.hpp>
15#include <opencv2/viz/viz3d.hpp>
16#include <string>
17#include <vector>
18
19namespace cv {
20class Mat;
21} // namespace cv
22
23namespace ev {
24[[maybe_unused]] constexpr bool USING_POINT_CLOUD_HPP = true;
25
27template <typename T>
28class Event_;
30
53template <typename T, const RepresentationOptions Options = RepresentationOptions::NONE, typename E = int>
54class PointCloud_ : public AbstractRepresentation_<T, Options, E> {
55public:
60 [[nodiscard]] inline bool contains(const Event_<E> &e) const {
61 return std::find(points_[e.p].begin(), points_[e.p].end(), cv::Point3f(e.x, e.y, e.t)) != points_[e.p].end();
62 }
63
71 void visualize(const int t, const double time_scale = 1.0, const double axis_size = 1.0, const double point_size = 2.0);
72
73private:
74 std::array<std::vector<cv::Point3_<typename TypeHelper<T>::FloatingPointType>>, 2> points_;
75 cv::viz::Viz3d window_{"OpenEV"};
76
77 [[nodiscard]] cv::Size frameSize_() const override {
78 return {};
79 }
80
81 void clear_() override;
82 void clear_(const cv::Mat &background) override;
83 bool insert_(const Event_<E> &e) override;
84};
100} // namespace ev
101
103#include "openev/representations/point-cloud.tpp"
105
106#endif // OPENEV_REPRESENTATIONS_POINT_CLOUD_HPP
Event abstract representation.
This is an auxiliary class. This class cannot be instanced.
Definition abstract-representation.hpp:125
This class extends cv::Point_<T> for event data. For more information, please refer here.
Definition types.hpp:86
PolarityType p
Definition types.hpp:91
TimeType t
Definition types.hpp:90
This class is used to represent events as point clouds.
Definition point-cloud.hpp:54
void visualize(const int t, const double time_scale=1.0, const double axis_size=1.0, const double point_size=2.0)
Visualize point cloud.
bool contains(const Event_< E > &e) const
Check if an event is included in the point cloud.
Definition point-cloud.hpp:60
PointCloud_< cv::Vec3s > PointCloud3s
Definition point-cloud.hpp:88
PointCloud_< float > PointCloud1f
Definition point-cloud.hpp:93
PointCloud1b PointCloud1
Definition point-cloud.hpp:97
PointCloud_< short > PointCloud1s
Definition point-cloud.hpp:87
PointCloud_< double > PointCloud1d
Definition point-cloud.hpp:95
PointCloud_< cv::Vec3b > PointCloud3b
Definition point-cloud.hpp:86
PointCloud3b PointCloud3
Definition point-cloud.hpp:98
PointCloud_< cv::Vec3f > PointCloud3f
Definition point-cloud.hpp:94
PointCloud1 PointCloud
Definition point-cloud.hpp:99
PointCloud_< cv::Vec3w > PointCloud3w
Definition point-cloud.hpp:90
PointCloud_< cv::Vec3d > PointCloud3d
Definition point-cloud.hpp:96
PointCloud_< int > PointCloud1i
Definition point-cloud.hpp:91
PointCloud_< uchar > PointCloud1b
Definition point-cloud.hpp:85
PointCloud_< cv::Vec3i > PointCloud3i
Definition point-cloud.hpp:92
PointCloud_< ushort > PointCloud1w
Definition point-cloud.hpp:89