|
| template<typename T> |
| PolarityType | insert (const Event_< T > &e) |
| | Insert an event, storing e.p at pixel (e.x, e.y).
|
| template<typename T> |
| PolarityType | emplace (const T x, const T y, const PolarityType p) |
| | Store polarity p at (x, y) 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.
|
Spatial map storing the polarity of the most recent event at each pixel.
Each insertion overwrites the stored polarity unconditionally; only the latest polarity per pixel is retained.