OpenCV  3.0.0
Open Source Computer Vision
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Types | Public Member Functions | Public Attributes | List of all members
cv::rgbd::OdometryFrame Struct Reference

#include "rgbd.hpp"

Inheritance diagram for cv::rgbd::OdometryFrame:
cv::rgbd::RgbdFrame

Public Types

enum  {
  CACHE_SRC = 1,
  CACHE_DST = 2,
  CACHE_ALL = CACHE_SRC + CACHE_DST
}
 

Public Member Functions

 OdometryFrame ()
 
 OdometryFrame (const Mat &image, const Mat &depth, const Mat &mask=Mat(), const Mat &normals=Mat(), int ID=-1)
 
virtual void release ()
 
void releasePyramids ()
 
- Public Member Functions inherited from cv::rgbd::RgbdFrame
 RgbdFrame ()
 
 RgbdFrame (const Mat &image, const Mat &depth, const Mat &mask=Mat(), const Mat &normals=Mat(), int ID=-1)
 
virtual ~RgbdFrame ()
 

Public Attributes

std::vector< Matpyramid_dI_dx
 
std::vector< Matpyramid_dI_dy
 
std::vector< MatpyramidCloud
 
std::vector< MatpyramidDepth
 
std::vector< MatpyramidImage
 
std::vector< MatpyramidMask
 
std::vector< MatpyramidNormals
 
std::vector< MatpyramidNormalsMask
 
std::vector< MatpyramidTexturedMask
 
- Public Attributes inherited from cv::rgbd::RgbdFrame
Mat depth
 
int ID
 
Mat image
 
Mat mask
 
Mat normals
 

Detailed Description

Object that contains a frame data that is possibly needed for the Odometry. It's used for the efficiency (to pass precomputed/cached data of the frame that participates in the Odometry processing several times).

Member Enumeration Documentation

anonymous enum

These constants are used to set a type of cache which has to be prepared depending on the frame role: srcFrame or dstFrame (see compute method of the Odometry class). For the srcFrame and dstFrame different cache data may be required, some part of a cache may be common for both frame roles.

Parameters
CACHE_SRCThe cache data for the srcFrame will be prepared.
CACHE_DSTThe cache data for the dstFrame will be prepared.
CACHE_ALLThe cache data for both srcFrame and dstFrame roles will be computed.
Enumerator
CACHE_SRC 
CACHE_DST 
CACHE_ALL 

Constructor & Destructor Documentation

cv::rgbd::OdometryFrame::OdometryFrame ( )
cv::rgbd::OdometryFrame::OdometryFrame ( const Mat image,
const Mat depth,
const Mat mask = Mat(),
const Mat normals = Mat(),
int  ID = -1 
)

Member Function Documentation

virtual void cv::rgbd::OdometryFrame::release ( )
virtual

Reimplemented from cv::rgbd::RgbdFrame.

void cv::rgbd::OdometryFrame::releasePyramids ( )

Member Data Documentation

std::vector<Mat> cv::rgbd::OdometryFrame::pyramid_dI_dx
std::vector<Mat> cv::rgbd::OdometryFrame::pyramid_dI_dy
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidCloud
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidDepth
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidImage
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidMask
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidNormals
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidNormalsMask
std::vector<Mat> cv::rgbd::OdometryFrame::pyramidTexturedMask

The documentation for this struct was generated from the following file: