摘要: 1.安装环境:anaconda 用anaconda图形界面安装 失败,提示 multi error 于是切换为pip 安装,提示出错索性直接下载whl文件离线安装,中间提示要先安装3个其他包,会自动下载安装,终... 阅读全文
posted @ 2020-04-02 16:36 neo3301 阅读(49) 评论(0) 推荐(0) 编辑
摘要: import xlwings as xw smmary_wb = xw.App(visible=True, add_book=False).books.open(filepath2) ... 阅读全文
posted @ 2020-04-02 16:18 neo3301 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1.loginfo.IsDebugEnabled 是false2.检查Log4net.config属性设置,Copy to output directory项必须设置为:copy if new 或copy alw... 阅读全文
posted @ 2019-07-23 09:28 neo3301 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1.Log4Net 在程序中使用,可以通过配置文件,进行配置,也可以通过程序代码进行定义。本文主要讲解一下通过配置的方式实现,配置文件可以配置在App.config中【编译后会生成对应的[程序名].exe.con... 阅读全文
posted @ 2019-07-22 15:51 neo3301 阅读(35) 评论(0) 推荐(0) 编辑
摘要: float: 4字节,6-7位有效数字 -3.4E-38 到 3.4E38 double: 8字节,15~16位有效数字 -1.7E-308 到 1.7E308 在OpenCV里面,许多数据结构为了... 阅读全文
posted @ 2019-07-12 10:43 neo3301 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1、Hough变换找线原理不再赘述 2、Hough圆变换 直接上代码:case "霍夫圆变换": { ... 阅读全文
posted @ 2019-07-09 13:50 neo3301 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 参考文章:https://github.com/shimat/opencvsharp_samples/tree/master/SamplesCS/Samples参考opencvsharp的官方sample,在... 阅读全文
posted @ 2019-07-04 14:17 neo3301 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 一、opencvsharp 的安装有两种方法:1.直接在nugt上搜索 opencvsharp,完成安装2.方法2 参考文章 https://www.cnblogs.com/jsxyhelu/p/9669583.... 阅读全文
posted @ 2019-07-04 14:08 neo3301 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 参考文章:cmake 配置参考见以下文章https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windowshttps://blog.huihut.com/2017/1... 阅读全文
posted @ 2019-06-21 09:22 neo3301 阅读(108) 评论(0) 推荐(0) 编辑
摘要: Python中的装饰器是你进入Python大门的一道坎,不管你跨不跨过去它都在那里。为什么需要装饰器#我们假设你的程序实现了say_hello()和say_goodbye()两个函数。def say_hello... 阅读全文
posted @ 2019-06-19 09:17 neo3301 阅读(11) 评论(0) 推荐(0) 编辑