编程所遇问题
hahaha_2017
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
内存泄露问题解决办法
参照https://blog.youkuaiyun.com/mfcing/article/details/42673393原创 2019-01-10 19:58:40 · 776 阅读 · 0 评论 -
读取txt文件数据保存到vector,并转换为Mat
Mat Vec2Mat(vector<vector<float>> vec) //二维Vector转Mat{ int row = vec.size(); int col = vec[0].size(); Mat img(row ,col, CV_32F); float *ptmp = NULL; for (int i = 0; i ...原创 2019-01-15 16:01:31 · 2275 阅读 · 1 评论
分享