Base abstract class for dataset readers.
More...
#include <reader_base.hpp>
|
| Reader (const Config &c) |
| Construct a Reader from a Config.
|
|
virtual | ~Reader () |
|
ReaderStatus | nextData (Image< float > &depth_image) |
| Read the next depth image.
|
|
ReaderStatus | nextData (Image< float > &depth_image, Eigen::Isometry3f &T_WB) |
| Read the next depth image and ground truth pose.
|
|
ReaderStatus | nextData (Image< float > &depth_image, Image< RGB > &colour_image) |
| Read the next depth and colour images.
|
|
ReaderStatus | nextData (Eigen::Vector3f &ray_measurement, Eigen::Isometry3f &T_WB) |
| Read the next ray and ground truth pose.
|
|
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, Image< RGB > &colour_image, Eigen::Isometry3f &T_WB) |
| Read the next depth and colour images and ground truth pose.
|
|
ReaderStatus | getPose (Eigen::Isometry3f &T_WB, const size_t frame) |
| Read the ground truth pose at the provided frame number.
|
|
virtual void | restart ()=0 |
| Restart reading from the beginning.
|
|
virtual std::string | name () const =0 |
| The name of the reader.
|
|
bool | good () const |
| The state of the reader.
|
|
size_t | frame () const |
| The current frame number.
|
|
size_t | numFrames () const |
| The total number of frames in the current dataset.
|
|
Eigen::Vector2i | depthImageRes () const |
| The dimensions of the depth images.
|
|
Eigen::Vector2i | colourImageRes () const |
| The dimensions of the colour images.
|
|
bool | isLiveReader () const |
| Whether the reader uses a live camera as input.
|
|
bool | hasColour () const |
| Return whether the loaded dataset contains colour images.
|
|
Base abstract class for dataset readers.
The overloaded nextData() functions all increment the frame counter, so only one of them should be called within a single pipeline iteration.
- Note
- Derived classes should adhere to the following rules:
◆ Reader()
Construct a Reader from a Config.
- Note
- This constructor should be called in all derived class constructors.
- Parameters
-
[in] | c | The configuration struct to use. |
◆ ~Reader()
◆ nextData() [1/6]
Read the next depth image.
- Note
- The frame number is incremented when calling this function.
- Parameters
-
[out] | depth_image | The next depth image. |
- Returns
- An appropriate status code.
◆ nextData() [2/6]
Read the next depth image and ground truth pose.
- Note
- The frame number is incremented when calling this function.
- Parameters
-
[out] | depth_image | The next depth image. |
[out] | T_WB | The next ground truth pose. |
- Returns
- An appropriate status code.
◆ nextData() [3/6]
Read the next depth and colour images.
- Note
- The frame number is incremented when calling this function.
- Parameters
-
[out] | depth_image | The next depth image. |
[out] | colour_image | The next colour image. |
- Returns
- An appropriate status code.
◆ nextData() [4/6]
ReaderStatus se::Reader::nextData |
( |
Eigen::Vector3f & |
ray_measurement, |
|
|
Eigen::Isometry3f & |
T_WB |
|
) |
| |
Read the next ray and ground truth pose.
- Note
- The frame number is incremented when calling this function.
- Parameters
-
[out] | ray_measurement | The next ray (LiDAR) measurement. |
[out] | T_WB | The next ground truth pose. |
- Returns
- An appropriate status code.
◆ nextData() [5/6]
ReaderStatus se::Reader::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.
- Note
- The frame number is incremented when calling this function.
- Parameters
-
[in] | batch_interval | Time interval over which measurements are aggregated |
[out] | rayPoseBatch | The next batch of ray (LiDAR) measurements and corresponding poses. |
- Returns
- An appropriate status code.
◆ nextData() [6/6]
Read the next depth and colour images and ground truth pose.
- Note
- The frame number is incremented when calling this function.
- Parameters
-
[out] | depth_image | The next depth image. |
[out] | colour_image | The next colour image. |
[out] | T_WB | The next ground truth pose. |
- Returns
- An appropriate status code.
◆ getPose()
Read the ground truth pose at the provided frame number.
Each line in the ground truth file should correspond to a single depth/colour image pair and have a format
... tx ty tz qx qy qz qw
,
that is the pose is encoded in the last 7 columns of the line.
- Parameters
-
[in] | frame | The frame number of the requested ground truth pose. |
[out] | T_WB | The ground truth pose. |
- Returns
- An appropriate status code.
◆ restart()
◆ name()
virtual std::string se::Reader::name |
( |
| ) |
const |
|
pure virtual |
◆ good()
bool se::Reader::good |
( |
| ) |
const |
The state of the reader.
If good() returns false, there is no need to keep reading frames.
- Returns
- True if the last call to one of the Reader::next*() functions completed successfully.
◆ frame()
size_t se::Reader::frame |
( |
| ) |
const |
The current frame number.
Frame numbering starts from 0, so the number of frames read so far is frame() + 1
.
- Returns
- The number of frames read. Returns SIZE_MAX if no frames have been read yet.
◆ numFrames()
size_t se::Reader::numFrames |
( |
| ) |
const |
The total number of frames in the current dataset.
- Returns
- The total number of frames. Returns 0 if the number of frames is unknown (e.g. for camera input).
◆ depthImageRes()
Eigen::Vector2i se::Reader::depthImageRes |
( |
| ) |
const |
The dimensions of the depth images.
- Returns
- A 2D vector containing the width and height of the images.
◆ colourImageRes()
Eigen::Vector2i se::Reader::colourImageRes |
( |
| ) |
const |
The dimensions of the colour images.
- Returns
- A 2D vector containing the width and height of the images.
◆ isLiveReader()
bool se::Reader::isLiveReader |
( |
| ) |
const |
Whether the reader uses a live camera as input.
- Returns
- True if the input is from a live camera, false otherwise.
◆ hasColour()
bool se::Reader::hasColour |
( |
| ) |
const |
Return whether the loaded dataset contains colour images.
◆ mergeStatus()
Merge se::ReaderStatus values keeping the worst one.
- Parameters
-
- Returns
- The worst of the 2 statuses.
◆ readPose()
Read the ground truth pose at the provided frame number.
Each line in the ground truth file should correspond to a single depth/colour image pair and have a format
... tx ty tz qx qy qz qw
,
that is the pose is encoded in the last 7 columns of the line.
- Note
- Use getPose(...) to request a pose. It keeps track of the ground_truth_frame_ and ifstream state.
- Parameters
-
[out] | T_WB | The ground truth pose. |
[in] | frame | The frame number of the requested ground truth pose. |
[in] | delimiter | The character delimiting columns in the file. Defaults to space. |
- Returns
- An appropriate status code.
◆ nextPose()
Read the next ground truth pose.
Each line in the ground truth file should correspond to a single depth/colour image pair and have a format
... tx ty tz qx qy qz qw
,
that is the pose is encoded in the last 7 columns of the line.
- Note
- The frame number is NOT incremented inside this function.
- Parameters
-
[out] | T_WB | The next ground truth pose. |
- Returns
- An appropriate status code.
Reimplemented in se::TUMReader.
◆ nextColour()
Read the next colour image into colour_image
.
Sets colour_image
to opaque black if no colour data is available.
◆ sequence_path_
std::string se::Reader::sequence_path_ |
|
protected |
◆ ground_truth_file_
std::string se::Reader::ground_truth_file_ |
|
protected |
◆ ground_truth_fs_
std::ifstream se::Reader::ground_truth_fs_ |
|
protected |
◆ depth_image_res_
Eigen::Vector2i se::Reader::depth_image_res_ |
|
protected |
◆ colour_image_res_
Eigen::Vector2i se::Reader::colour_image_res_ |
|
protected |
◆ fps_
◆ spf_
◆ drop_frames_
bool se::Reader::drop_frames_ |
|
protected |
◆ verbose_
◆ is_live_reader_
bool se::Reader::is_live_reader_ |
|
protected |
◆ status_
◆ frame_
The frame_ is initialized to SIZE_MAX, so that when first incremented it becomes 0.
Unsigned integer overflow is defined behaviour in C/C++ so this is safe to do.
◆ num_frames_
size_t se::Reader::num_frames_ |
|
protected |
◆ has_colour_
bool se::Reader::has_colour_ |
|
protected |
The documentation for this class was generated from the following file: