OpenEV
Extending OpenCV to event-based vision
 
Loading...
Searching...
No Matches
voting.hpp
1
6#ifndef OPENEV_EVPROC_VOTING_HPP
7#define OPENEV_EVPROC_VOTING_HPP
8
10#include <array>
11
12namespace ev {
13
14template <typename T>
15static inline std::array<T, 4> bilinearVoting(Event_<T> event);
16
17template <typename T>
18static inline std::array<AugmentedEvent_<T>, 4> bilinearVoting(AugmentedEvent_<T> event);
19} // namespace ev
20
21#endif // OPENEV_EVPROC_VOTING_HPP
This class extends Event to include: weigth, depth, and stereo.
Definition types.hpp:224
This class extends cv::Point_<T> for event data. For more information, please refer here.
Definition types.hpp:56
Basic event-based vision structures based on OpenCV components.