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
16
17namespace {
18inline void workaroundContainers() {
19 (void)ev::USING_ARRAY_HPP;
20 (void)ev::USING_CIRCULAR_HPP;
21 (void)ev::USING_DEQUE_HPP;
22 (void)ev::USING_GRID_HPP;
23 (void)ev::USING_QUEUE_HPP;
24 (void)ev::USING_SLIDING_WINDOW_HPP;
25 (void)ev::USING_VECTOR_HPP;
26}
27} // namespace
28
29#endif // OPENEV_CONTAINERS_HPP
Array container for basic event structures.
Circular buffer container for basic event structures.
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.
Vector container for basic event structures.