上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 30 下一页
摘要: https://blog.csdn.net/letianok/article/details/7257117 1、GetType()方法继承自Object,所以C#中任何对象都具有GetType()方法,x.GetType(),其中x为变量名; 2、typeof(x)中的x,必须是具体的类名、类型名 阅读全文
posted @ 2020-05-27 10:36 kuaqi 阅读(172) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/woaixiaozhi/p/5116137.html 值类型: (1)其实例都分配在线程栈中,不受垃圾回收的控制; (2)内置值类型、枚举Enum类型、struct 引用类型: (1)其实例都分配在托管堆上; (2)数组、object、字符串、类、指针 阅读全文
posted @ 2020-05-08 10:50 kuaqi 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1、声明委托 public delegate void DelegHandler (string status); 2、声明事件 public event DelegHandler EventHandler;//EventHandler仅能类内部调用,不能从外部调用 3、关联方法:void func 阅读全文
posted @ 2020-05-07 21:21 kuaqi 阅读(86) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-04-28 15:16 kuaqi 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_35007834/article/details/88569821 阅读全文
posted @ 2019-12-15 15:56 kuaqi 阅读(2090) 评论(0) 推荐(0) 编辑
摘要: sudo passwd 输入安装密码。 输入新密码。 输入 su 即获得root权限。 输入:sudo rm /var/cache/apt/archives/lock,按回车键; 再次输入:sudo rm /var/lib/dpkg/lock,按回车键就搞定了,现在再继续上面的cd或者安装软件,已经 阅读全文
posted @ 2019-12-04 09:38 kuaqi 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Anaconda 可以创建多个Evironment,针对不同的python版本;然后安装各个模块时,需要提前设置python版本,然后在其版本下安装对应的模块 1、创建新的Python环境:参考链接 1)命令 conda config --set auto_activate_base false / 阅读全文
posted @ 2019-11-25 10:36 kuaqi 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: void cv::Canny ( InputArray image, (输入图像:8-bit)OutputArray edges, (输出边缘图像:单通道,8-bit,size与输入图像一致)double threshold1, (阈值1)double threshold2, (阈值2)int ap 阅读全文
posted @ 2019-10-29 23:17 kuaqi 阅读(268) 评论(0) 推荐(0) 编辑
摘要: normalize(src,dst,0,255,CV_MINMAX) //归一化到0~255 convertScaleAbs(src,dst) //转换成8bit图像显示;用imshow显示时,也会自动转化成8bit显示 阅读全文
posted @ 2019-10-29 22:21 kuaqi 阅读(349) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_37124237/article/details/82183177 void cv::Sobel( InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, int ksize, d 阅读全文
posted @ 2019-10-29 20:28 kuaqi 阅读(284) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 30 下一页