摘要: 这是一个图片处理调整工具,这是一个没有意义的工具,这是一个胡乱增加内存的工具,这是一个图片爆炸工具,这是一个图片1变N工具,没有意义没关系,好玩就行了! 代码传送门:1. 新建一个 image_augmenta... 阅读全文
posted @ 2020-04-14 16:52 HelenLee01 阅读(240) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块——图片处理,gamma矫正暗部明部亮度调整import cv2img = cv2.imread('./imgg/1.jpeg', cv2.IMREAD_COLOR) # 打开文件... 阅读全文
posted @ 2020-04-14 16:27 HelenLee01 阅读(1264) 评论(1) 推荐(0) 编辑
摘要: opencv教程CV2模块——图片处理,HSV、色调、亮度调节代码传送门:import cv2img=cv2.imread('./imgg/1.jpeg', cv2.IMREAD_COLOR) # 打开文件... 阅读全文
posted @ 2020-04-14 16:23 HelenLee01 阅读(2386) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块——RGB矩阵import numpy as npimport cv2# 图6-1中的矩阵img = np.array([ [[255, 0, 0], [0, 255, 0], [... 阅读全文
posted @ 2020-04-14 16:21 HelenLee01 阅读(231) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块——图片处理,裁剪缩放加边框import cv2# 读取图片img = cv2.imread('./imgg/1.jpeg')# 缩放成200x200的方形图像img_200x200 =... 阅读全文
posted @ 2020-04-14 16:19 HelenLee01 阅读(842) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块——画图,来左边跟我一起画星星在右边画彩虹import numpy as npimport cv2# 定义一块宽600,高400的画布,初始化为白色canvas = np.zeros((... 阅读全文
posted @ 2020-04-14 16:15 HelenLee01 阅读(442) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块——图片处理,剪切缩放旋转import cv2import numpy as np# 读取照片img = cv2.imread('./imgg/1.jpeg')# 沿着横纵轴放大1.6倍... 阅读全文
posted @ 2020-04-14 16:10 HelenLee01 阅读(439) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块——批量视频截屏这个功能可以拓展为视频初审吧,毕竟人工审核视频如果需要全部播放完的话,太耗费时间了,看图片就快得多了。import cv2import osimport sys# 第一个... 阅读全文
posted @ 2020-04-14 16:05 HelenLee01 阅读(406) 评论(0) 推荐(0) 编辑
摘要: opencv教程CV2模块还可以调用摄像头录制视频呢,没想到吧!制作延时摄影视频或者鬼畜表情包gif也是轻而易举的事情,等你发挥啦!代码传送门:import cv2import timeinterval = 0.... 阅读全文
posted @ 2020-04-14 16:02 HelenLee01 阅读(217) 评论(0) 推荐(0) 编辑