MCPcopy Create free account
hub / github.com/MIT-SPARK/Kimera-VIO / DataProviderModule

Method DataProviderModule

src/dataprovider/DataProviderModule.cpp:20–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18namespace VIO {
19
20DataProviderModule::DataProviderModule(
21 OutputQueue* output_queue,
22 const std::string& name_id,
23 const bool& parallel_run,
24 const StereoMatchingParams& stereo_matching_params)
25 : MISOPipelineModule<StereoImuSyncPacket, StereoImuSyncPacket>(
26 output_queue,
27 name_id,
28 parallel_run),
29 imu_data_(),
30 left_frame_queue_("data_provider_left_frame_queue"),
31 right_frame_queue_("data_provider_right_frame_queue"),
32 stereo_matching_params_(stereo_matching_params) {}
33
34DataProviderModule::InputUniquePtr DataProviderModule::getInputPacket() {
35 // Look for a left frame inside the queue.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected