摘要: 构造函数,有多种生成方式。 1 Mat(); 2 3 4 Mat(int rows, int cols, int type); 5 6 7 Mat(Size size, int type); 8 9 10 Mat(int rows, int cols, int type, const Scalar& 阅读全文
posted @ 2019-11-16 23:09 esc_coder 阅读(88) 评论(0) 推荐(0)
摘要: 函数cvtColor() 第一个参数:原图像 第二个参数:目标图像(Mat类型) 第三个参数:转换类型 COLOR_BGR2GRAY COLOR_GRAY2BGR COLOR_BGR2SHV COLOR_HSV2BGR 阅读全文
posted @ 2019-11-16 23:04 esc_coder 阅读(73) 评论(0) 推荐(0)
摘要: 主要设计两个函数 imread() imshow() 1 #include<opencv2/opencv.hpp> 2 #include<iostream> 3 using namespace cv; 4 using namespace std; 5 int main() { 6 Mat src = 阅读全文
posted @ 2019-11-16 23:00 esc_coder 阅读(58) 评论(0) 推荐(0)