supereight
Loading...
Searching...
No Matches
reader_base.hpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2014 University of Edinburgh, Imperial College London, University of Manchester
3 * SPDX-FileCopyrightText: 2016-2019 Emanuele Vespa
4 * SPDX-FileCopyrightText: 2020-2023 Smart Robotics Lab, Imperial College London, Technical University of Munich
5 * SPDX-FileCopyrightText: 2020-2022 Nils Funk
6 * SPDX-FileCopyrightText: 2020-2023 Sotiris Papatheodorou
7 * SPDX-FileCopyrightText: 2022-2024 Simon Boche
8 * SPDX-License-Identifier: MIT
9 */
10
11#ifndef __READER_BASE_HPP
12#define __READER_BASE_HPP
13
14#include <Eigen/Geometry>
15#include <chrono>
16#include <fstream>
18#include <se/image/image.hpp>
19
20namespace se {
21
22enum class ReaderType {
24 OPENNI,
26 RAW,
28 TUM,
34 LEICA,
36};
37
38ReaderType string_to_reader_type(const std::string& s);
39
41
42
45enum class ReaderStatus : int {
47 ok = 0,
51 skip,
53 eof,
57 error,
58};
59
60std::ostream& operator<<(std::ostream& os, const ReaderStatus& s);
61
62
63
79class Reader {
80 public:
81 struct Config {
85
89 std::string sequence_path;
90
93 std::string ground_truth_file;
94
100 float inverse_scale = 0.0f;
101
108 float fps = 0.0f;
109
120 bool drop_frames = false;
121
126 int verbose = 0;
127
131 Eigen::Isometry3f T_BL = Eigen::Isometry3f::Identity();
132
138
142 void readYaml(const std::string& filename);
143 };
144
145
153 Reader(const Config& c);
154
155 virtual ~Reader(){};
156
165
174 ReaderStatus nextData(Image<float>& depth_image, Eigen::Isometry3f& T_WB);
175
184 ReaderStatus nextData(Image<float>& depth_image, Image<RGB>& colour_image);
185
186
195 ReaderStatus nextData(Eigen::Vector3f& ray_measurement, Eigen::Isometry3f& T_WB);
196
206 nextData(const float batch_interval,
207 std::vector<std::pair<Eigen::Isometry3f, Eigen::Vector3f>,
208 Eigen::aligned_allocator<std::pair<Eigen::Isometry3f, Eigen::Vector3f>>>&
209 rayPoseBatch);
210
221 nextData(Image<float>& depth_image, Image<RGB>& colour_image, Eigen::Isometry3f& T_WB);
222
233 ReaderStatus getPose(Eigen::Isometry3f& T_WB, const size_t frame);
234
242 virtual void restart() = 0;
243
248 virtual std::string name() const = 0;
249
256 bool good() const;
257
265 size_t frame() const;
266
272 size_t numFrames() const;
273
278 Eigen::Vector2i depthImageRes() const;
279
284 Eigen::Vector2i colourImageRes() const;
285
290 bool isLiveReader() const;
291
293 bool hasColour() const;
294
302
303 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
304
305 protected:
306 std::string sequence_path_;
308 std::ifstream ground_truth_fs_;
309 Eigen::Vector2i depth_image_res_;
310 Eigen::Vector2i colour_image_res_;
311 float fps_;
312 double spf_;
321 size_t frame_;
324
325
340 ReaderStatus readPose(Eigen::Isometry3f& T_WB, const size_t frame, const char delimiter = ' ');
341
342
354 virtual ReaderStatus nextPose(Eigen::Isometry3f& T_WB);
355
359 virtual ReaderStatus nextColour(Image<RGB>& colour_image);
360
361
362 private:
363 size_t ground_truth_frame_;
364 char ground_truth_delimiter_;
365 std::chrono::steady_clock::time_point prev_frame_timestamp_;
366
373 void nextFrame();
374
380 virtual ReaderStatus nextRay(Eigen::Vector3f& ray_measurement);
381
388 virtual ReaderStatus nextRayBatch(
389 const float batch_interval,
390 std::vector<std::pair<Eigen::Isometry3f, Eigen::Vector3f>,
391 Eigen::aligned_allocator<std::pair<Eigen::Isometry3f, Eigen::Vector3f>>>&
392 rayPoseBatch);
398 virtual ReaderStatus nextDepth(Image<float>& depth_image) = 0;
399
401 nextDataImpl(Image<float>& depth_image, Image<RGB>* colour_image, Eigen::Isometry3f* T_WB);
402};
403
404std::ostream& operator<<(std::ostream& os, const Reader::Config& c);
405
406} // namespace se
407
412static inline std::ostream& operator<<(std::ostream& out, se::Reader* reader)
413{
414 out << se::str_utils::header_to_pretty_str("READER") << "\n";
415 out << se::str_utils::str_to_pretty_str(reader->name(), "Reader type") << "\n";
417 ((reader->numFrames() == 0) ? "Unknown" : std::to_string(reader->numFrames())),
418 "Number frames")
419 << "\n";
420 out << "\n";
421 return out;
422}
423
424
425#endif
Definition image.hpp:19
Base abstract class for dataset readers.
Definition reader_base.hpp:79
Eigen::Vector2i depthImageRes() const
The dimensions of the depth images.
int verbose_
Definition reader_base.hpp:314
std::string sequence_path_
Definition reader_base.hpp:306
std::ifstream ground_truth_fs_
Definition reader_base.hpp:308
Eigen::Vector2i colourImageRes() const
The dimensions of the colour images.
bool is_live_reader_
Definition reader_base.hpp:315
Eigen::Vector2i depth_image_res_
Definition reader_base.hpp:309
double spf_
Definition reader_base.hpp:312
static ReaderStatus mergeStatus(ReaderStatus status_1, ReaderStatus status_2)
Merge se::ReaderStatus values keeping the worst one.
size_t frame() const
The current frame number.
virtual std::string name() const =0
The name of the reader.
ReaderStatus nextData(Image< float > &depth_image, Eigen::Isometry3f &T_WB)
Read the next depth image and ground truth pose.
bool drop_frames_
Definition reader_base.hpp:313
virtual ReaderStatus nextColour(Image< RGB > &colour_image)
Read the next colour image into colour_image.
bool isLiveReader() const
Whether the reader uses a live camera as input.
bool good() const
The state of the reader.
ReaderStatus nextData(const float batch_interval, std::vector< std::pair< Eigen::Isometry3f, Eigen::Vector3f >, Eigen::aligned_allocator< std::pair< Eigen::Isometry3f, Eigen::Vector3f > > > &rayPoseBatch)
Read the next batch of rays and ground truth poses.
ReaderStatus nextData(Image< float > &depth_image)
Read the next depth image.
virtual ~Reader()
Definition reader_base.hpp:155
Reader(const Config &c)
Construct a Reader from a Config.
float fps_
Definition reader_base.hpp:311
ReaderStatus nextData(Eigen::Vector3f &ray_measurement, Eigen::Isometry3f &T_WB)
Read the next ray and ground truth pose.
ReaderStatus nextData(Image< float > &depth_image, Image< RGB > &colour_image)
Read the next depth and colour images.
virtual void restart()=0
Restart reading from the beginning.
Eigen::Vector2i colour_image_res_
Definition reader_base.hpp:310
ReaderStatus getPose(Eigen::Isometry3f &T_WB, const size_t frame)
Read the ground truth pose at the provided frame number.
virtual ReaderStatus nextPose(Eigen::Isometry3f &T_WB)
Read the next ground truth pose.
size_t num_frames_
Definition reader_base.hpp:322
bool has_colour_
Definition reader_base.hpp:323
size_t numFrames() const
The total number of frames in the current dataset.
size_t frame_
The frame_ is initialized to SIZE_MAX, so that when first incremented it becomes 0.
Definition reader_base.hpp:321
bool hasColour() const
Return whether the loaded dataset contains colour images.
ReaderStatus readPose(Eigen::Isometry3f &T_WB, const size_t frame, const char delimiter=' ')
Read the ground truth pose at the provided frame number.
std::string ground_truth_file_
Definition reader_base.hpp:307
ReaderStatus status_
Definition reader_base.hpp:316
ReaderStatus nextData(Image< float > &depth_image, Image< RGB > &colour_image, Eigen::Isometry3f &T_WB)
Read the next depth and colour images and ground truth pose.
std::string header_to_pretty_str(const std::string &header_name, const int width=default_width)
Convert header name to a standardised string output.
std::string str_to_pretty_str(const std::string &string, const std::string &string_name="", const int width=default_width)
Convert a string name and value to a standardised string output.
Helper wrapper to allocate and de-allocate octants in the octree.
Definition bounded_vector.hpp:14
std::string reader_type_to_string(ReaderType t)
ReaderType string_to_reader_type(const std::string &s)
std::ostream & operator<<(std::ostream &os, const ColourData< Colour::Off >::Config &c)
ReaderType
Definition reader_base.hpp:22
@ LEICA
Use the se::LeicaReader.
@ RAW
Use the se::RAWReader.
@ NEWERCOLLEGE
Use the se::NewerCollegeReader.
@ INTERIORNET
Use the se::InteriorNetReader.
@ TUM
Use the se::TUMReader.
@ OPENNI
Use the se::OpenNIReader.
ReaderStatus
The result of trying to read a depth/RGB image or a pose.
Definition reader_base.hpp:45
@ skip
Temporary data read error.
@ eof
End of dataset reached.
@ ok
Data read successfully.
@ error
Fatal data read error.
static std::ostream & operator<<(std::ostream &out, se::Reader *reader)
The overview of the reader configuration in configuration format.
Definition reader_base.hpp:412
Definition reader_base.hpp:81
ReaderType reader_type
The type of the dataset reader to use.
Definition reader_base.hpp:84
std::string ground_truth_file
The path to the ground truth file.
Definition reader_base.hpp:93
float fps
The rate in Hz at which dataset frames are read.
Definition reader_base.hpp:108
std::string sequence_path
The path to the dataset.
Definition reader_base.hpp:89
Eigen::Isometry3f T_BL
Provide Transformation Sensor (LiDAR) to Body (Drone) also to reader.
Definition reader_base.hpp:131
void readYaml(const std::string &filename)
Reads the struct members from the "reader" node of a YAML file.
int verbose
The verbosity level of dataset readers.
Definition reader_base.hpp:126
bool drop_frames
Whether to drop frames when they can't be processed fast enough.
Definition reader_base.hpp:120
float scan_time_interval
The time for the interval of LiDAR Measurements that are grouped together as one scan and converted t...
Definition reader_base.hpp:137
float inverse_scale
The scaling factor to convert depth values to metres.
Definition reader_base.hpp:100