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

继续前行

时间:2016-09-07 01:35:36      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

①之前修改SIFT内部函数时发现如下的size_t

技术分享

size_t是无符号的,并且是平台无关的,表示0-MAXINT的范围,具体参考

 ② 关于resize中area和InputArray的使用

技术分享

详见:

http://monkeycoding.com/?tag=point2f

http://blog.csdn.net/yang_xian521/article/details/7755101  觉得里面的仿射变换程序错啦  没有计算y坐标啊

③openmp的功能就那么少?

http://www.cnblogs.com/yangyangcv/archive/2012/03/23/2413335.html

暂时就那么些吧

④特征点的读写

http://blog.csdn.net/wd1603926823/article/details/48969039  实现了特征点的坐标与描述符矩阵的写

 //This will store your keypoints in a file named keypoints.yml and the node containing the data is named "aNameYouLike". 
vector<Keypoint> mykpts;
 FileStorage fs("keypoints.yml", FileStorage::WRITE);
 write( fs , "aNameYouLike", mykpts );
 fs.release();
//This will be used to read back the keypoints from the file
 vector<Keypoint> mykpts2;
  FileStorage fs2("keypoints.yml", FileStorage::READ);
  FileNode kptFileNode = fs2["aNameYouLike"];
  read( kptFileNode, mykpts2 );
  fs2.release();

参考   或看opencv读写xml、yml的规范

⑤qt入门

http://www.qter.org/?page_id=161

 

继续前行

标签:

原文地址:http://www.cnblogs.com/alston2016/p/5847578.html

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