OpenEV
Extending OpenCV to event-based vision
Toggle main menu visibility
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
9
#include "
openev/containers/array.hpp
"
10
#include "
openev/containers/circular.hpp
"
11
#include "
openev/containers/deque.hpp
"
12
#include "
openev/containers/grid.hpp
"
13
#include "
openev/containers/queue.hpp
"
14
#include "
openev/containers/concurrent_queue.hpp
"
15
#include "
openev/containers/sliding_window.hpp
"
16
#include "
openev/containers/stats_container.hpp
"
17
#include "
openev/containers/vector.hpp
"
18
19
namespace
{
20
inline
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.hpp
Array container for basic event structures.
circular.hpp
Circular buffer container for basic event structures.
concurrent_queue.hpp
Queue container for basic event structures, safe between a thread that pushes and a thread that pops.
deque.hpp
Deque container for basic event structures.
grid.hpp
Grid of event containers for basic event structures.
queue.hpp
Queue container for basic event structures.
sliding_window.hpp
Sliding time-window container for basic event structures.
stats_container.hpp
Running statistics of an event stream without storing the events.
vector.hpp
Vector container for basic event structures.
modules
containers
include
openev
containers.hpp
Generated by
1.17.0