mars_lib 0.1.0.2abe2576fe7f
Modular and Robust Sensor-Fusion
Loading...
Searching...
No Matches
read_vision_data.h
Go to the documentation of this file.
1// Copyright (C) 2022 Christian Brommer, Control of Networked Systems, University of Klagenfurt, Austria.
2//
3// All rights reserved.
4//
5// This software is licensed under the terms of the BSD-2-Clause-License with
6// no commercial use allowed, the full terms of which are made available
7// in the LICENSE file. No license in patents is granted.
8//
9// You can contact the author at <christian.brommer@ieee.org>
10
11#ifndef READ_VISION_DATA_H
12#define READ_VISION_DATA_H
13
16#include <mars/time.h>
19#include <Eigen/Dense>
20#include <vector>
21
22namespace mars
23{
25{
26public:
27 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
28
29 ReadVisionData(std::vector<BufferEntryType>* data_out, std::shared_ptr<SensorAbsClass> sensor,
30 const std::string& file_path, const double& time_offset = 0)
31 {
32 std::vector<std::string> expect_entry = { "t", "p_x", "p_y", "p_z", "q_w", "q_x", "q_y", "q_z" };
33
34 CsvDataType csv_data;
35 ReadCsv(&csv_data, file_path);
36
37 unsigned long number_of_datapoints = csv_data["t"].size();
38 data_out->resize(number_of_datapoints);
39
40 for (size_t k = 0; k < number_of_datapoints; k++)
41 {
42 Time time = csv_data["t"][k] + time_offset;
43
44 Eigen::Vector3d position(csv_data["p_x"][k], csv_data["p_y"][k], csv_data["p_z"][k]);
45 Eigen::Quaterniond orientation(csv_data["q_w"][k], csv_data["q_x"][k], csv_data["q_y"][k], csv_data["q_z"][k]);
46 orientation = Utils::NormalizeQuaternion(orientation, "vision csv reader");
47
48 BufferDataType data;
49 data.set_measurement(std::make_shared<VisionMeasurementType>(position, orientation));
50
51 BufferEntryType current_entry(time, data, sensor);
52 data_out->at(k) = current_entry;
53 }
54 }
55};
56} // namespace mars
57
58#endif // READ_VISION_DATA_H
The BufferDataType binds the core and sensor state in form of a shared void pointer.
Definition buffer_data_type.h:36
void set_measurement(std::shared_ptr< void > meas)
Definition buffer_data_type.h:75
Definition buffer_entry_type.h:41
Definition read_csv.h:30
Definition read_vision_data.h:25
EIGEN_MAKE_ALIGNED_OPERATOR_NEW ReadVisionData(std::vector< BufferEntryType > *data_out, std::shared_ptr< SensorAbsClass > sensor, const std::string &file_path, const double &time_offset=0)
Definition read_vision_data.h:29
Definition time.h:20
static Eigen::Quaterniond NormalizeQuaternion(const Eigen::Quaterniond &quat, std::string note="")
Definition buffer.h:27
std::map< std::string, std::vector< double > > CsvDataType
Definition read_csv.h:26