现在的位置: 首页 > 综合 > 正文

ARToolKit里的RT矩阵

2013年10月12日 ⁄ 综合 ⁄ 共 427字 ⁄ 字号 评论关闭

Coordinate Systems

Relationships: Marker & Camera

Rotation & Translation

Perspective Projection

How to get T

Camera Parameter Implementation

Camera parameter structure
 • typedef struct {
int xsize, ysize;
double mat[3][4];
double dist_factor[4];
} ARParam;

 Adjust camera parameter for the input image size
• int arParamChangeSize( ARParam *source,
int xsize, int ysize,
ARParam *newparam );

 Read camera parameters from the file
• int arParamLoad( char *filename, int num,
ARParam *param, ...);

抱歉!评论已关闭.