摘要:
with zipfile.ZipFile('/Users/liujianing/Downloads/a.zip') as z: for file in z.namelist(): z.extract(file, '/Users/liujianing/Downloads') 阅读全文
摘要:
1、shape 形状 2、size 个数 3、dtype 数据类型 4、ndim 数组的维度 阅读全文
摘要:
randrange([start,] stop [,step]) 随机返回满足要求的一个数 阅读全文
摘要:
用于平滑、模糊、滤波 # 均值滤波def blur(img, shape): dst = cv2.blur(img, shape) return dst# 中值滤波-适用于去除噪音点# filter的大小不再是shape,而是一个边长def median_blur(img, side_len): d 阅读全文
摘要:
clip(list, min, max) 小于min的设置成min,大于max设置成max 阅读全文
摘要:
choice(list) 随机选择list中的一个元素 阅读全文
摘要:
randint(a,b) (a,b)之间的整数 阅读全文
摘要:
(0,1)之间的浮点数 阅读全文
摘要:
在处理图像像素值时遇到的 阅读全文
摘要:
OpenCV为BGR pytorch为RGB (1)cv2.cvtColor(img, cv2.COLOR_BGR2RGB) (2)img.transpose(2, 1, 0) 阅读全文