09 2016 档案

摘要:********************************模板匹配 ********************create_shape_model创建模板,这个函数有许多参数,其中金字塔的级数由Numlevels指定,值越大则找到物体的时间越少,AngleStart和AngleExtent决定可 阅读全文
posted @ 2016-09-19 11:13 TMD睡觉 阅读(15808) 评论(0) 推荐(1)
摘要:find_shape_model(Image : : //搜索图像 ModelID, //模板句柄 AngleStart, // 搜索时的起始角度 AngleExtent, //搜索时的角度范围,必须与创建模板时的有交集 MinScore, //最小匹配值,输出的匹配的得分Score 大于该值 Nu 阅读全文
posted @ 2016-09-19 11:11 TMD睡觉 阅读(16618) 评论(0) 推荐(1)
摘要:create_shape_model(Template : : //reduce_domain后的模板图像 NumLevels,//金字塔的层数,可设为“auto”或0—10的整数 AngleStart,//模板旋转的起始角度 AngleExtent,//模板旋转角度范围, >=0 AngleSte 阅读全文
posted @ 2016-09-19 11:10 TMD睡觉 阅读(7371) 评论(1) 推荐(0)
摘要://只获取网页源码开始到标题位目的进行测试 //第一种方式经过测试,稍微快点 string url = "http://www.ip.cn"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); req.Method = "GET"; req.Conte... 阅读全文
posted @ 2016-09-07 14:58 TMD睡觉