OKVIS
|
This class is responsible to visualize the matching results. More...
#include <VioVisualizer.hpp>
Classes | |
struct | VisualizationData |
This struct contains the relevant data for visualizing. More... | |
Public Member Functions | |
VioVisualizer (okvis::VioParameters ¶meters) | |
Constructor. More... | |
virtual | ~VioVisualizer () |
void | init (okvis::VioParameters ¶meters) |
Initialise parameters. Called in constructor. More... | |
void | showDebugImages (VisualizationData::Ptr &data) |
Show the current frames with the current keyframe and all its matches. More... | |
cv::Mat | drawMatches (VisualizationData::Ptr &data, size_t image_number) |
Circles all keypoints in the current frame, links the matching ones to the current keyframe and returns the result. More... | |
Private Member Functions | |
cv::Mat | drawKeypoints (VisualizationData::Ptr &data, size_t cameraIndex) |
Circles all keypoints in the current frame and returns the result. More... | |
Private Attributes | |
okvis::VioParameters | parameters_ |
Parameters and settings. More... | |
This class is responsible to visualize the matching results.
okvis::VioVisualizer::VioVisualizer | ( | okvis::VioParameters & | parameters | ) |
Constructor.
parameters | Parameters and settings. |
|
virtual |
|
private |
Circles all keypoints in the current frame and returns the result.
data | Visualization data. |
cameraIndex | Index of the frame to display. |
cv::Mat okvis::VioVisualizer::drawMatches | ( | VisualizationData::Ptr & | data, |
size_t | image_number | ||
) |
Circles all keypoints in the current frame, links the matching ones to the current keyframe and returns the result.
data | Visualization data. |
image_number | Index of the frame to display. |
void okvis::VioVisualizer::init | ( | okvis::VioParameters & | parameters | ) |
Initialise parameters. Called in constructor.
parameters | Parameters and settings. |
void okvis::VioVisualizer::showDebugImages | ( | VisualizationData::Ptr & | data | ) |
Show the current frames with the current keyframe and all its matches.
data | Visualization data containing all the info. |
|
private |
Parameters and settings.