摘要: 无空头 #include"stdio.h" #include"stdlib.h" #include"windows.h" /*链表的基本使用,不用改,直接用欢迎交流 QQ2473183730*/ struct Node { int a; struct Node* pNEXT; }; //链表头尾指针 阅读全文
posted @ 2020-04-03 23:23 Loving-Q 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 这是有空头的链表 #include"stdio.h" #include"stdlib.h" #include"windows.h" struct Node { int a; struct Node* pNEXT; }; //链表头尾指针定义 struct Node* g_pHead = NULL; 阅读全文
posted @ 2020-04-03 23:22 Loving-Q 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 简化了识别的过程,但是基本的原理没有改变,加入了轨迹条,更加方便的调节参数 Mat img; //灰度值归一化 Mat bgr; //HSV图像 Mat hsv; //输出图像 Mat mask; Mat picture; int Hm = 0, Sm = 43, Vm = 46; int Hx = 阅读全文
posted @ 2020-04-03 23:19 Loving-Q 阅读(167) 评论(0) 推荐(0) 编辑