欣慰海燕

文章
4
资源
1
加入时间
2年10月21天

数字图像处理 高通滤波

import numpy as npimport cv2def convert_2d(r): r_ext = np.zeros((r.shape[0] * 2, r.shape[1] * 2)) for i in range(r.shape[0]): for j in range(r.shape[1]): r_ext[i][j] = r...