11#ifndef __READER_BASE_HPP
12#define __READER_BASE_HPP
14#include <Eigen/Geometry>
131 Eigen::Isometry3f
T_BL = Eigen::Isometry3f::Identity();
207 std::vector<std::pair<Eigen::Isometry3f, Eigen::Vector3f>,
208 Eigen::aligned_allocator<std::pair<Eigen::Isometry3f, Eigen::Vector3f>>>&
248 virtual std::string
name()
const = 0;
303 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
363 size_t ground_truth_frame_;
364 char ground_truth_delimiter_;
365 std::chrono::steady_clock::time_point prev_frame_timestamp_;
380 virtual ReaderStatus nextRay(Eigen::Vector3f& ray_measurement);
389 const float batch_interval,
390 std::vector<std::pair<Eigen::Isometry3f, Eigen::Vector3f>,
391 Eigen::aligned_allocator<std::pair<Eigen::Isometry3f, Eigen::Vector3f>>>&
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