OpenNI 2.0
Public 成员函数 | 友元 | 所有成员列表
openni::VideoFrameRef类 参考

#include <OpenNI.h>

Public 成员函数

 VideoFrameRef ()
 
 VideoFrameRef (const VideoFrameRef &other)
 
 ~VideoFrameRef ()
 
int getCropOriginX () const
 
int getCropOriginY () const
 
bool getCroppingEnabled () const
 
const void * getData () const
 
int getDataSize () const
 
int getFrameIndex () const
 
int getHeight () const
 
SensorType getSensorType () const
 
int getStrideInBytes () const
 
uint64_t getTimestamp () const
 
const VideoModegetVideoMode () const
 
int getWidth () const
 
bool isValid () const
 
VideoFrameRefoperator= (const VideoFrameRef &other)
 
void release ()
 

友元

class VideoStream
 

详细描述

The VideoFrameRef class encapsulates a single video frame - the output of a VideoStream at a specific time. The data contained will be a single frame of color, IR, or depth video, along with associated meta data.

An object of type VideoFrameRef does not actually hold the data of the frame, but only a reference to it. The reference can be released by destroying the VideoFrameRef object, or by calling the release() method. The actual data of the frame is freed when the last reference to it is released.

The usual way to obtain VideoFrameRef objects is by a call to VideoStream.:readFrame().

All data references by a VideoFrameRef is stored as a primitive array of pixels. Each pixel will be of a type according to the configured pixel format (see VideoMode).

构造及析构函数说明

◆ VideoFrameRef() [1/2]

openni::VideoFrameRef::VideoFrameRef ( )
inline

Default constructor. Creates a new empty VideoFrameRef object. This object will be invalid until initialized by a call to VideoStream::readFrame().

◆ ~VideoFrameRef()

openni::VideoFrameRef::~VideoFrameRef ( )
inline

Destroy this object and release the reference to the frame.

◆ VideoFrameRef() [2/2]

openni::VideoFrameRef::VideoFrameRef ( const VideoFrameRef other)
inline

Copy constructor. Creates a new VideoFrameRef object. The newly created object will reference the same frame current object references.

参数
[in]otherAnother VideoFrameRef object.

成员函数说明

◆ getCropOriginX()

int openni::VideoFrameRef::getCropOriginX ( ) const
inline

Indicates the X coordinate of the upper left corner of the crop window.

返回
Distance of crop origin from left side of image, in pixels.

◆ getCropOriginY()

int openni::VideoFrameRef::getCropOriginY ( ) const
inline

Indicates the Y coordinate of the upper left corner of the crop window.

返回
Distance of crop origin from top of image, in pixels.

◆ getCroppingEnabled()

bool openni::VideoFrameRef::getCroppingEnabled ( ) const
inline

Indicates whether cropping was enabled when the frame was produced.

返回
true if cropping is enabled, false otherwise

◆ getData()

const void* openni::VideoFrameRef::getData ( ) const
inline

Getter function for the array of data pointed to by this object.

返回
Pointer to the actual frame data array. Type of data pointed to can be determined according to the pixel format (can be obtained by calling getVideoMode()).

◆ getDataSize()

int openni::VideoFrameRef::getDataSize ( ) const
inline

Getter function for the size of the data contained by this object. Useful primarily when allocating buffers.

返回
Current size of data pointed to by this object, measured in bytes.

◆ getFrameIndex()

int openni::VideoFrameRef::getFrameIndex ( ) const
inline

Frames are provided sequential frame ID numbers by the sensor that produced them. If frame synchronization has been enabled for a device via Device::setDepthColorSyncEnabled(), then frame numbers for corresponding frames of depth and color are guaranteed to match.

If frame synchronization is not enabled, then there is no guarantee of matching frame indexes between VideoStreams. In the latter case, applications should use timestamps instead of frame indexes to align frames in time.

返回
Index number for this frame.

◆ getHeight()

int openni::VideoFrameRef::getHeight ( ) const
inline

Gives the current height of this frame, measured in pixels. If cropping is enabled, this will be the length of the cropping window. If cropping is not enabled, then this will simply be equal to the Y resolution of the VideoMode used to produce this frame.

◆ getSensorType()

SensorType openni::VideoFrameRef::getSensorType ( ) const
inline

Getter function for the sensor type used to produce this frame. Used to determine whether this is an IR, Color or Depth frame. See the SensorType enumeration for all possible return values from this function.

返回
The type of sensor used to produce this frame.

◆ getStrideInBytes()

int openni::VideoFrameRef::getStrideInBytes ( ) const
inline

Gives the length of one row of pixels, measured in bytes. Primarily useful for indexing the array which contains the data.

返回
Stride of the array which contains the image for this frame, in bytes

◆ getTimestamp()

uint64_t openni::VideoFrameRef::getTimestamp ( ) const
inline

Provides a timestamp for the frame. The 'zero' point for this stamp is implementation specific, but all streams from the same device are guaranteed to use the same zero. This value can therefore be used to compute time deltas between frames from the same device, regardless of whether they are from the same stream.

返回
Timestamp of frame, measured in microseconds from an arbitrary zero

◆ getVideoMode()

const VideoMode& openni::VideoFrameRef::getVideoMode ( ) const
inline

Returns a reference to the VideoMode object assigned to this frame. This object describes the video mode the sensor was configured to when the frame was produced and can be used to determine the pixel format and resolution of the data. It will also provide the frame rate that the sensor was running at when it recorded this frame.

返回
Reference to the VideoMode assigned to this frame.

◆ getWidth()

int openni::VideoFrameRef::getWidth ( ) const
inline

Gives the current width of this frame, measured in pixels. If cropping is enabled, this will be the width of the cropping window. If cropping is not enabled, then this will simply be equal to the X resolution of the VideoMode used to produce this frame.

返回
Width of this frame in pixels.

◆ isValid()

bool openni::VideoFrameRef::isValid ( ) const
inline

Check if this object references an actual frame.

◆ operator=()

VideoFrameRef& openni::VideoFrameRef::operator= ( const VideoFrameRef other)
inline

Make this VideoFrameRef object reference the same frame that the other frame references. If this object referenced another frame before calling this method, the previous frame will be released.

参数
[in]otherAnother VideoFrameRef object.

◆ release()

void openni::VideoFrameRef::release ( )
inline

Release the reference to the frame. Once this method is called, the object becomes invalid, and no method should be called other than the assignment operator, or passing this object to a VideoStream::readFrame() call.

友元及相关函数文档

◆ VideoStream

friend class VideoStream
friend

该类的文档由以下文件生成: