摘要: ``` import numpy as np import sys def conv_(img, conv_filter): filter_size = conv_filter.shape[1] result = np.zeros((img.shape)) # 循环遍历图像以应用卷积运算 for r in np.uint16(np.arange(filter_s... 阅读全文
posted @ 2019-02-15 17:43 chenxiangzhen 阅读(4012) 评论(0) 推荐(2) 编辑