摘要: import cv2 as cv import numpy as np def clamp(x): if x >255: return 255 if x <0 : return 0 return x def gussian_noise(image): h, w, c = image.shape[:3 阅读全文
posted @ 2020-02-11 19:56 地球上最后一个直男 阅读(577) 评论(0) 推荐(0)