plt.imshow(china[:,:,2]) plt.show() from sklearn.datasets import load_sample_image china=load_sample_image('china.jpg') print(china.shape) china impor... ...
分类:
编程语言 时间:
2018-11-15 01:36:33
阅读次数:
258
使用WordCloud生成词云图片 使用scale属性,精度级别?比例?我不知道具体该怎么翻译,反正越大越清楚。以下是详细代码。 本文详细介绍参考自:https://www.jianshu.com/p/fdd0acccf1c5 wordcloud开源项目:https://github.com/amu ...
分类:
其他好文 时间:
2018-11-13 00:16:41
阅读次数:
1566
图像亮度与对比度的调整,是放在skimage包的exposure模块里面 一 gamma调整 原理:I=Ig 对原图像的像素,进行幂运算,得到新的像素值。公式中的g就是gamma值。 如果gamma>1, 新图像比原图像暗 如果gamma<1,新图像比原图像亮 函数格式为:skimage.expos ...
分类:
其他好文 时间:
2018-11-13 00:05:41
阅读次数:
232
matlab中处理图像像素点数据: img1=double(imread('lenna.bmp')); matlab中imshow图片,要先转换成uint8: subplot(1,2,1),imshow(uint8(img1)),title('original');subplot(1,2,2),im ...
分类:
其他好文 时间:
2018-11-08 22:01:20
阅读次数:
1410
一 opencv 二 matplotlib 注: (1)plt.imshow(image)中的图片的数据类型可以使np.array类型 imshow()函数格式为:matplotlib.pyplot.imshow(X, cmap=None) X: 要绘制的图像或数组。 cmap: 颜色图谱(colo ...
分类:
编程语言 时间:
2018-11-07 23:03:52
阅读次数:
303
@不要在奋斗的年纪 选择安逸 均值模糊 中值模糊 自定义模糊 意义与应用场景 模糊的基本原理: 1、基于离散卷积 2、定义好每个卷积核 3、不同卷积核得到不同的卷积效果 4、模糊是卷积的一种表象 ...
分类:
编程语言 时间:
2018-11-06 17:50:49
阅读次数:
195
在某些应用场合我们可能需要通过一个设备通过WIFI将图像传到其它的机器进行显示或者图形分析,那怎么可以低成本地实现呢?其实很简单,我们只需要一块 Raspberry Zero W 和一个RPI 摄像头就行了,两个加起来成本也只不过150左右。 这个组合不单单只是实现一个图传,最重要的是Raspber ...
分类:
Web程序 时间:
2018-11-01 21:04:46
阅读次数:
166
自定义函数: function []=edge_detect(image_name) a=imread(image_name); I=rgb2gray(a); BW1=edge(I,'Roberts',0.16); BW2=edge(I,'Sobel',0.16); BW3=edge(I,'Prew ...
分类:
其他好文 时间:
2018-10-30 17:06:21
阅读次数:
245
%matplotlibinlinefromsklearnimportdatasetsfrommatplotlibimportpyplotasplt#获取数据集digits=datasets.load_digits()#可视化foriinrange(1,11):plt.subplot(2,5,i)#划分成2行5列plt.imshow(digits.data[i-1].reshape([8,8]),c
分类:
其他好文 时间:
2018-10-08 17:15:33
阅读次数:
323
这次,让我们使用一个非常有名且十分有趣的玩意儿来完成今天的任务,没错它就是jupyter。 一、安装jupyter matplotlib入门之前,先安装好jupyter。这里只提供最为方便快捷的安装方式:pip install jupyter。 我这里已经装过了 启动jupyter也十分简单:jup ...
分类:
其他好文 时间:
2018-10-06 13:25:14
阅读次数:
268