svo
Semi-Direct Visual Odometry
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Member Functions | Public Attributes | Protected Attributes | Friends
svo::initialization::KltHomographyInit Class Reference

Tracks features using Lucas-Kanade tracker and then estimates a homography. More...

#include <initialization.h>

List of all members.

Public Member Functions

 KltHomographyInit ()
 ~KltHomographyInit ()
InitResult addFirstFrame (FramePtr frame_ref)
InitResult addSecondFrame (FramePtr frame_ref)
void reset ()

Public Attributes

EIGEN_MAKE_ALIGNED_OPERATOR_NEW
FramePtr 
frame_ref_

Protected Attributes

vector< cv::Point2f > px_ref_
 keypoints to be tracked in reference frame.
vector< cv::Point2f > px_cur_
 tracked keypoints in current frame.
vector< Vector3d > f_ref_
 bearing vectors corresponding to the keypoints in the reference image.
vector< Vector3d > f_cur_
 bearing vectors corresponding to the keypoints in the current image.
vector< double > disparities_
 disparity between first and second frame.
vector< int > inliers_
 inliers after the geometric check (e.g., Homography).
vector< Vector3d > xyz_in_cur_
 3D points computed during the geometric check.
SE3 T_cur_from_ref_
 computed transformation between the first two frames.

Friends

class svo::FrameHandlerMono

Detailed Description

Tracks features using Lucas-Kanade tracker and then estimates a homography.


Constructor & Destructor Documentation


Member Function Documentation


Friends And Related Function Documentation

friend class svo::FrameHandlerMono [friend]

Member Data Documentation

disparity between first and second frame.

vector<Vector3d> svo::initialization::KltHomographyInit::f_cur_ [protected]

bearing vectors corresponding to the keypoints in the current image.

vector<Vector3d> svo::initialization::KltHomographyInit::f_ref_ [protected]

bearing vectors corresponding to the keypoints in the reference image.

inliers after the geometric check (e.g., Homography).

vector<cv::Point2f> svo::initialization::KltHomographyInit::px_cur_ [protected]

tracked keypoints in current frame.

vector<cv::Point2f> svo::initialization::KltHomographyInit::px_ref_ [protected]

keypoints to be tracked in reference frame.

computed transformation between the first two frames.

3D points computed during the geometric check.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines