使用opencv python查找A1的腐蚀,膨胀,打开和关闭?

时间:2019-05-05 03:43:10

标签: python opencv image-processing mathematical-morphology

我想检查一下我用opencv手动完成的形态转换。问题是我不知道如何将A1(这是一个1和0的8x8矩阵)转换为图像,然后对内核B1进行形态转换。

Here is the picture of what A1 and B1 are

我认为内核应该是这样的:

# Cross-shaped kernel (structuring element)
cv.getStructuringElement(cv.MORPH_CROSS,(3,3))
cv.array([[0, 1, 0],
          [1, 1, 1],
          [0, 1, 0]], dtype = cv.uint8)

0 个答案:

没有答案