Frame Class¶
Header: #include "easyar/frame.hpp"
Inherits: RefBase
Description¶
Frame用来存储跟踪到的数据。
这个数据包括当前camera的图像,跟踪到的target和其它一些信息。
Public Functions¶
Frame()
virtual ~Frame()
double timeStamp() const
int index() const
ImageList images()
AugmentedTargetList targets() const
char* text()
Frame()¶
创建Frame实例。
virtual ~Frame()¶
销毁Frame实例。
double timeStamp() const¶
返回当前frame的时间戳。
int index() const¶
返回当前frame的索引。
ImageList images()¶
返回当前frame中包含的图像列表。
AugmentedTargetList targets()¶
返回当前frame中包含的AugmentedTarget列表。
const char* text()¶
返回当前frame中包含的文字信息。如果没有则返回空字符串。