Hello, Prophesee Team!
Let say we have a simple pipeline:
- auto& cam_stage = p.add_stage(std::make_unique<Metavision::CameraStage>(std::move(cam), event_buffer_duration_ms));
- auto& algo_stage = p.add_stage(std::make_unique<AlgoStage>(), cam_stage);
- auto& logger_stage = p.add_stage(std::make_unique<LoggerStage>(), popcorn_stage);
And let say AlgoStage is performance heavy, that lead to lag of the output, and RAM overflow.
How to dynamically skip some events for maintenance some maximum gap (for example 3,5 or 10 seconds)?
What other options we have to fix the performance for any system, where the application could work?