posted @ 2023-07-21 13:45 董锡振 阅读(179) 评论(0) 推荐(0) 编辑
摘要:
iis网站localhost(127.0.0.1)可以访问,使用本机局域网IP netsh http add iplisten ipaddress=192.168.:9001 https://blog.csdn.net/weixin_44880576/article/details/12262025 阅读全文
摘要:
IIS 发布dotnet5网站 http://www.manongjc.com/detail/39-spqjoyfpkbgdkvk.html https://blog.csdn.net/MoFe1/article/details/130617466 阅读全文
posted @ 2023-07-21 13:43 董锡振 阅读(5) 评论(0) 推荐(0) 编辑
摘要:
https://www.cnblogs.com/webapi/p/16709924.html 阅读全文
posted @ 2023-07-21 09:25 董锡振 阅读(200) 评论(0) 推荐(0) 编辑
摘要:
1、GPL ( GNU General Public License ) 商业软件不能使用GPL协议的代码。 2、LGPL ( GNU Library or “Lesser” General Public License ) 商业软件可以使用,但不能修改LGPL协议的代码。 3、Apache Lic 阅读全文
posted @ 2023-07-19 09:08 董锡振 阅读(2704) 评论(0) 推荐(0) 编辑
摘要:
1、设置窗体的最大尺寸MaxinumSize属性:this.MaxinumSize = new System.Drawing.Size(System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width, System.Windows.Forms. 阅读全文
posted @ 2023-06-15 20:44 董锡振 阅读(335) 评论(0) 推荐(0) 编辑
摘要:
##RGB与BGR 人只有三种感色细胞 比如感知黄=红+绿#HSV:或叫HSB 色彩空间 也是OpenCV用的最多的 # H Hue 色相比如红色、蓝色,用角度度量 取值范围0度到360度 红0度 绿120度 蓝240度 绕圈 #Saturation 饱和度 也理解为纯度 从圆心到边 从内到外 #v 阅读全文
posted @ 2023-05-12 11:13 董锡振 阅读(21) 评论(0) 推荐(0) 编辑
摘要:
python3中的pass语句是一个空语句,什么都不做,执行它时什么也没有发生,是一个空操作。 在函数、类、循环、判断等语句中 # 1. empty function def func(): pass # remember to implement this func() # 2. empty cl 阅读全文
posted @ 2023-05-12 10:54 董锡振 阅读(12) 评论(0) 推荐(0) 编辑