卷积是为了提取特征
import numpy as np
image = np.array([
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[1, 1, 1, 1, 1],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0]
])
filter_vertical = np.array([
[-1, 0, 1],
[-1, 0, 1],
[-1, 0, 1],
])
filter_horizontal = np.array([
[0, 1, 0],
[0, 1, 0],[......]继续阅读
Python