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