OpenEV
Extending OpenCV to event-based vision
Loading...
Searching...
No Matches
containers.hpp
Go to the documentation of this file.
1
6#ifndef OPENEV_CONTAINERS_HPP
7#define OPENEV_CONTAINERS_HPP
8
18
19namespace {
20inline void workaroundContainers() {
21 (void)ev::USING_ARRAY_HPP;
22 (void)ev::USING_CIRCULAR_HPP;
23 (void)ev::USING_DEQUE_HPP;
24 (void)ev::USING_GRID_HPP;
25 (void)ev::USING_QUEUE_HPP;
26 (void)ev::USING_CONCURRENT_QUEUE_HPP;
27 (void)ev::USING_SLIDING_WINDOW_HPP;
28 (void)ev::USING_STATS_CONTAINER_HPP;
29 (void)ev::USING_VECTOR_HPP;
30}
31} // namespace
32
33#endif // OPENEV_CONTAINERS_HPP
Array container for basic event structures.
Circular buffer container for basic event structures.
Queue container for basic event structures, safe between a thread that pushes and a thread that pops.
Deque container for basic event structures.
Grid of event containers for basic event structures.
Queue container for basic event structures.
Sliding time-window container for basic event structures.
Running statistics of an event stream without storing the events.
Vector container for basic event structures.