上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 24 下一页
摘要: std::vector> fillContour(const std::vector> & _contours) { // sort as x descent y descent. std::vector> contours(_contours); for(size_t i = 0; i sub(contours[i]); std::sort(sub.begin(), sub.end(... 阅读全文
posted @ 2018-07-27 14:15 路边的十元钱硬币 阅读(3463) 评论(0) 推荐(1) 编辑
摘要: cv::Mat left_image; right_image.push_back(cv::Mat((cv::Mat_(1, 3) << ori.x, ori.y, ori.z))); 阅读全文
posted @ 2018-07-25 14:37 路边的十元钱硬币 阅读(1652) 评论(0) 推荐(0) 编辑
摘要: #define _WINSOCK_DEPRECATED_NO_WARNINGS #include #include #include #include #include #include using namespace std; #pragma comment(lib, "ws2_32.lib") int main() { WORD sockVersion = MAKEWORD(... 阅读全文
posted @ 2018-07-05 12:27 路边的十元钱硬币 阅读(152) 评论(0) 推荐(0) 编辑
摘要: xml code 阅读全文
posted @ 2018-07-03 11:15 路边的十元钱硬币 阅读(396) 评论(0) 推荐(0) 编辑
摘要: cv::normalize(src, dst, 0.0, 255.0, cv::NORM_MINMAX); 阅读全文
posted @ 2018-07-03 11:01 路边的十元钱硬币 阅读(214) 评论(0) 推荐(0) 编辑
摘要: #include using namespace cv; struct mouse_para { cv::Mat org; cv::Mat img; std::string winName = ""; // todo: you can add your own members here. }; void on_mouse(int event, int x, int y, i... 阅读全文
posted @ 2018-06-27 10:01 路边的十元钱硬币 阅读(164) 评论(0) 推荐(0) 编辑
摘要: mypath=%~dp0 阅读全文
posted @ 2018-06-26 14:46 路边的十元钱硬币 阅读(122) 评论(0) 推荐(0) 编辑
摘要: @echo off echo add current path into environmet... set regpath=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment set evname=BAT_HOME set batpath=c:\bat reg add "%regpath... 阅读全文
posted @ 2018-06-26 14:38 路边的十元钱硬币 阅读(119) 评论(0) 推荐(0) 编辑
摘要: @echo off echo delete current path into environmet... set regpath=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment set evname=BAT_HOME reg delete "%regpath%" /v "%evnam... 阅读全文
posted @ 2018-06-26 14:38 路边的十元钱硬币 阅读(492) 评论(0) 推荐(0) 编辑
摘要: // 使用window api 获得系统时间 // 生成 #include "stdafx.h" #include #include #include int main() { SYSTEMTIME sys; GetLocalTime(&sys); printf("%4d/%02d/%02d %02d:... 阅读全文
posted @ 2018-06-20 16:40 路边的十元钱硬币 阅读(491) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 24 下一页