摘要: new对象一般用法 int *pi = new int; int *pi=new int(1024); string *ps=new string(10,'9'); vector<int> *pv=new vector<int>{0,1,2,3,4,5,6,7,8,9}; // 列表初始化 区别: 阅读全文
posted @ 2018-12-05 11:01 kuaqi 阅读(242) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/CRuntimeClass/1439795?fr=aladdin https://blog.csdn.net/tgdzsjh/article/details/30255733 https://www.cnblogs.com/weiqubo/a 阅读全文
posted @ 2018-11-29 19:02 kuaqi 阅读(190) 评论(0) 推荐(0) 编辑
摘要: getRotationMatrix2D()+warpAffine(); fitLine()拟合曲线:sobel最大X\Y梯度+筛选最大位置+拟合; 阅读全文
posted @ 2018-11-24 17:36 kuaqi 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1.insert; vector<vector<Point>> contour1; vector<vector<Point>> contour2; contour1.insert(contour1.end() ,contour2.begin() ,contour2.end() ); 阅读全文
posted @ 2018-11-24 16:58 kuaqi 阅读(117) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/thanklife/article/details/70208841 USES_CONVERSION的使用和注意 1. 使用ATL的W2A和A2W宏必须使用USES_CONVERSION2. USES_CONVERSION是用来转换类型的,比如我们很常见的 阅读全文
posted @ 2018-11-24 00:15 kuaqi 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 字符串string转换为其它数据类型 int atoi(const char *nptr); string str="123456"; temp=str.c_str(); 1)短整型(int)i = atoi(temp);2)长整型(long)l = atol(temp);3)浮点(double)d 阅读全文
posted @ 2018-11-22 19:30 kuaqi 阅读(830) 评论(0) 推荐(0) 编辑
摘要: // Cast a dynamically allocated string to 'void*'. void *vp = static_cast<void*>(new std::string("it's easy to break stuff like this!")); // Then, in 阅读全文
posted @ 2018-11-22 19:13 kuaqi 阅读(202) 评论(0) 推荐(0) 编辑
摘要: string、char[]、char*、const char*; 输出都一样 printf只能输出c语言中的内置数据,string不是c语言内置数据; cout可以输出string字符串,是因为string中重载了“<<”操作符; printf_s("%s\n", arrc); \\char[]pr 阅读全文
posted @ 2018-11-22 19:09 kuaqi 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 在处理LPTSTR或LPCTSTR的时候,应该使用_tcslen来替代strlen函数。否则,在Unicode编码方式下,strlen不能处理wchar_t*的字符串。 阅读全文
posted @ 2018-11-22 18:55 kuaqi 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 格式: CString cstr.AppendFormat(_T(" %.4f "), ); 输出: (1) https://blog.csdn.net/overlord_bingo/article/details/60140224 不含中文的情况下: CString s("hello world" 阅读全文
posted @ 2018-11-22 18:25 kuaqi 阅读(244) 评论(0) 推荐(0) 编辑