- 博客(6)
- 收藏
- 关注
原创 bounding box
inputif we directly bounding box, the result is like:notch defect will come from the right sidereduce to one column and one rowone row:one column:threshold and calculate rectthen we have th...
2019-09-17 11:29:37 292
原创 OpenCV中Rect的一些神奇用法
防止Rect越界Mat image;Rect rect = Rect(12,34,567,890);rect &=Rect(0,0,image.cols,image.rows);实用函数area()函数返回矩形面积,也就是像素点的个数contains(Point)能检测点是否在矩形内inside(Rect)检测矩形是否在矩形内tl()和br()返回top-left和bo...
2019-06-13 11:12:07 1290
转载 如何编写 parallel_for 循环
如何编写 parallel_for 循环本示例演示如何使用 Concurrency::parallel_for 计算两个矩阵的乘积。示例下面的示例演示 matrix_multiply 函数,该函数计算两个方形矩阵的乘积。// Computes the product of two square matrices.void matrix_multiply(double** m1, doub...
2019-04-09 15:49:06 505
原创 STL学习笔记 - 删除容器中元素的方法
要删除容器中有特定值的所有对象:如果容器是vector 、string 或deque ,则使用erase-remove 习惯用法。如果容器是list ,则使用list: :remove 。如果容器是一个标准关联容器,则使用它的erase 成员函数。要删除容器中满足特定判别式(条件)的所有对象:如果容器是vector、string 或deque ,则使用erase-remove_if 习...
2018-10-19 11:27:14 434
原创 将图像中圆环区域展开成矩形长条的方法-OPENCV_C++实现
**注: 这篇文章用的OpenCV版本是2.4.10**在机器视觉领域,经常会遇到圆环形的场景,比如**零部件**、**瓶口**等等对于这类圆环形的场景,许多传统的视觉处理算法难以应用,比如滤波器、卷积核这种见方的工具因此,用OpenCV实现了如下的圆环区域展开成矩形长条的方法Mat CircleToRectangle(const Mat & circle, const Poi...
2018-10-16 13:46:34 8796 11
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人