飞龙绣球的颜色追踪与最小外边框选择
这是209.11.23的博客 今天心脏很难受 明天请假去查查 下面进入正题 Opencv的内容 各位都是大佬 HSV的颜色表和计算方法就不用说了吧 #include <opencv2/opencv.hpp> #include<iostream> #include<string> using namespace cv; using namespace std; //输入图像 Mat img; //灰度值归一化 Mat bgr; //HSV图像 Mat hsv; //色相 string windowName = "src"; //输出图像的显示窗口 string dstName = "dst"; //输出图像 Mat dst; Mat mask; //回调函数 Mat picture; int main(int argc, char** argv) { system("color 02"); cout << "寻找黄色飞龙绣球得到最小外边框" << endl; VideoCapture capture(0); while (1) { //帧转变为图像 capture >> picture;//imread("D:\\4.jpg"); //方框滤波处理 boxFilter(picture, img, -1, Size(5, 2)); if (!img.data || img