码迷,mamicode.com
首页 > 其他好文 > 详细

摄像头标定

时间:2014-05-26 13:47:24      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:c   a   int   width   问题   for   

今天在调试摄像头标定的时候发现了几个问题:

fs.open("result.xml", FileStorage::WRITE);
fs<<"cameraMatrix"<<cameraMatrix;
fs<<"distortCoeffs"<<distCoeffs;
fs.release();

字符串中间不能空格

 

初始化必须加(1)

vector< vector<Point3f> > objectPoints(1);

否则

objectPoints[0].clear();
for( int i = 0; i < boardheight; ++i )
for( int j = 0; j < boardwidth; ++j )
objectPoints[0].push_back(Point3f(float( j*squareSize ), float( i*squareSize ), 0));

这里会push不了

 

用了两组图像来标定,结果有很大差异

从两组图像本身来说,格点数量不一样,图像分辨率也不一样

希望能分析出一些结论

 

稍后会来详细讨论一下

摄像头标定,布布扣,bubuko.com

摄像头标定

标签:c   a   int   width   问题   for   

原文地址:http://www.cnblogs.com/marcworld/p/3746542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!