会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
kuaqi
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
31
下一页
2019年11月25日
Anaconda管理python模块
摘要: Anaconda 可以创建多个Evironment,针对不同的python版本;然后安装各个模块时,需要提前设置python版本,然后在其版本下安装对应的模块 1、创建新的Python环境:参考链接 1)命令 conda config --set auto_activate_base false /
阅读全文
posted @ 2019-11-25 10:36 kuaqi
阅读(1138)
评论(0)
推荐(0)
2019年10月29日
Canny
摘要: 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
阅读(281)
评论(0)
推荐(0)
梯度处理
摘要: normalize(src,dst,0,255,CV_MINMAX) //归一化到0~255 convertScaleAbs(src,dst) //转换成8bit图像显示;用imshow显示时,也会自动转化成8bit显示
阅读全文
posted @ 2019-10-29 22:21 kuaqi
阅读(359)
评论(0)
推荐(0)
Sobel
摘要: 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
阅读(296)
评论(0)
推荐(0)
imshow & 图像深度
摘要: https://blog.csdn.net/qq_39642978/article/details/95926315 https://www.cnblogs.com/Xiaoyan-Li/p/5674792.html 图像深度对应值: #define CV_8U 0#define CV_8S 1#d
阅读全文
posted @ 2019-10-29 10:35 kuaqi
阅读(219)
评论(0)
推荐(0)
2019年10月28日
多通道:split、merge
摘要: 多通道拆分:split(img,imgRGB); //Mat imgRGB[3] 多通道合并:merge(imgRGB,3,img);
阅读全文
posted @ 2019-10-28 21:28 kuaqi
阅读(192)
评论(0)
推荐(0)
2019年10月17日
指针与引用的
摘要: 1、区别 1)引用一旦被初始化,就不能改变引用关系(指针可以随时改变所指向的对象):也就是引用初始化后,此引用不能与别的存储单元关联,也就不能指向别的存储单元,当然也不能改变别的存储单元内容,改变的 2)引用被创建的同时必须被初始化(指针可以在任何时候被初始化) 3)不能有NULL引用,引用必须与合
阅读全文
posted @ 2019-10-17 20:33 kuaqi
阅读(112)
评论(0)
推荐(0)
2019年9月24日
对比度增强
该文被密码保护。
阅读全文
posted @ 2019-09-24 17:53 kuaqi
阅读(3)
评论(0)
推荐(0)
2019年9月19日
绘制矩形在图片上
摘要: rectangle(src, boundRect[i], Scalar(0, 255, 0));
阅读全文
posted @ 2019-09-19 18:27 kuaqi
阅读(215)
评论(0)
推荐(0)
2019年9月18日
数据流
该文被密码保护。
阅读全文
posted @ 2019-09-18 23:28 kuaqi
阅读(2)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
31
下一页
公告