|
| template<typename T> |
| Tb | insert (const Event_< T > &e) |
| | Insert an event, setting the pixel at (e.x, e.y) to ON.
|
| template<typename T> |
| Tb | emplace (const T x, const T y) |
| | Set the pixel at (x, y) to ON without constructing an Event_.
|
| void | updateStats (const Event &e) |
| | Account for an event in the statistics reported by count() and duration().
|
| CounterType | count () const |
| | Number of events accounted for by updateStats() since the last resetStats().
|
| TimeType | duration () const |
| | Time elapsed between the first and the last event accounted for by updateStats().
|
|
void | resetStats () |
| | Reset statistics (count, first timestamp, last timestamp).
|
|
void | clear () |
| | Reset all pixels.
|
template<typename Tb>
class ev::Mat::Binary_< Tb >
Spatial map marking whether any event has occurred at each pixel.
Each pixel is set to ON upon insertion regardless of polarity, and reset to OFF by clear().
The following alias is defined for convenience:
Spatial map marking whether any event has occurred at each pixel.
Definition matrices.hpp:110