随笔分类 -  OpenCV

相关OpenCV知识分享
摘要:Mat img1 = imread("1.png"); Mat img2 = imread("2.png"); int height = img1.rows; int width1 = img1.cols; int width2 = img2.cols; // 将高图像等比缩放与低图像高度一致 if (img1.rows > img2.row... 阅读全文
posted @ 2019-04-04 21:10 平凡_h 阅读(6533) 评论(0) 推荐(0)
摘要:#include #include #include #include #include using namespace cv; using namespace std; // 计时函数 void PrintMs(const char *text = "") { static long long last = 0; long long cur = getTickCou... 阅读全文
posted @ 2019-04-04 20:24 平凡_h 阅读(1009) 评论(0) 推荐(0)
摘要:#include #include #include #include using namespace cv; using namespace std; // 记录时间信息 void PrintMs(const char *text = "") { static long long last = 0; long long cur = getTickCount(); ... 阅读全文
posted @ 2019-04-04 20:14 平凡_h 阅读(2033) 评论(0) 推荐(0)
摘要:【OpenCV3】threshold()函数详解 阅读全文
posted @ 2019-03-08 16:38 平凡_h 阅读(2553) 评论(0) 推荐(0)
摘要:【OpenCV3】cvRound()、cvFloor()、cvCeil()函数详解 阅读全文
posted @ 2019-03-06 10:18 平凡_h 阅读(7418) 评论(2) 推荐(0)
摘要:OpenCV直线拟合--FitLine()函数详解 阅读全文
posted @ 2019-03-05 19:22 平凡_h 阅读(19616) 评论(0) 推荐(1)