摘要: 源码: BitwiseAnd //dst = src1 & src2 public static void BitwiseAnd(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = null); 是对二进制数据进行 阅读全文
posted @ 2021-09-17 21:04 湾仔码农 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 看项目代码时,发现了Rect的神奇用法,rect = rect + point。于是了解了一下Rect类。 1. 构造函数 public Rect(Point location, Size size); public Rect(int x, int y, int width, int height) 阅读全文
posted @ 2021-09-17 21:02 湾仔码农 阅读(779) 评论(0) 推荐(0) 编辑
摘要: 1. 查找轮廓 FindContours public static void FindContours(InputOutputArray image, //输入8-bit单通道的图片 out Mat[] contours, //一组数组,contours[i]是一条轮廓,而contours[i][ 阅读全文
posted @ 2021-09-17 20:48 湾仔码农 阅读(596) 评论(0) 推荐(0) 编辑