摘要:
opencv中提供了很多绘制图形的函数,可以方便的进行图形绘制 直线绘制:line() 函数原型: void line(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, int thickness = 1, int li 阅读全文
摘要:
1.auto关键字 使用auto可以自动推导出变量类型,如 auto x=5; //x是int类型 static auto y=0.0 //y是double类型 auto pi=new auto(1) //pi被推到为int* 2.auto的推导规则 再来看一组例子 int x=0; auto * 阅读全文