摘要: #双边滤波,代码实现 import numpy as np import math import cv2 def getClosenessHeight(sigma_g,H,W): r,c = np.mgrid[0:H:1,0:W:1] r-=(H-1)/2 c-=(W-1)/2 closeWeigh 阅读全文
posted @ 2024-04-07 15:54 txwtech 阅读(211) 评论(0) 推荐(0)