既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上C C++开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
下面贴出代码,开发环境opencv2.4.9+vs2013
[cpp]
view plain
copy
- #include “opencv2/core/core.hpp”
- #include “opencv2/imgproc/imgproc.hpp”
- #include “opencv2/calib3d/calib3d.hpp”
- #include “opencv2/highgui/highgui.hpp”
- #include
- #include
- using namespace std;
- using namespace cv;
- const int imageWidth = 1600; //摄像头的分辨率
- const int imageHeight = 1200;
- const int boardWidth = 39; //横向的角点数目
- const int boardHeight = 39; //纵向的角点数据
- const int boardCorner = boardWidth * boardHeight; //总的角点数据
- const int frameNumber =7; //相机标定时需要采用的图像帧数
- const int squareSize = 10; //标定板黑白格子的大小 单位mm
- const Size boardSize = Size(boardWidth, boardHeight); //
- Mat intrin