4

我正在尝试对具有 3x3 十字形内核的 8x8 矩阵进行形态转换。我想用内核 B1 应用腐蚀、膨胀、打开和关闭 A1。我收到一个错误,我不知道如何解决这个问题。 这是矩阵和内核的样子

这就是我到目前为止所拥有的。

import cv2 as cv
import numpy as np

# A1 = 8x8 matrix
A1 = np.array([[0,0,0,0,0,0,0,0],
               [0,0,0,1,1,1,1,0],
               [0,0,0,1,1,1,1,0],
               [0,1,1,1,1,1,1,0],
               [0,1,1,1,1,1,1,0],
               [0,1,1,1,1,0,0,0],
               [0,1,1,1,1,0,0,0],
               [0,0,0,0,0,0,0,0]])

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

# Dilation
dilation = cv.dilate(A1,kernel,iterations = 1)
cv.imshow('dilation', dilation)

# Erosion
erosion = cv.erode(A1,kernel,iterations = 1)
cv.imshow('erosion', erosion)

# Opening
opening = cv.morphologyEx(A1, cv.MORPH_OPEN, kernel)
cv.imshow('opening', opening)

# Closing
closing = cv.morphologyEx(A1, cv.MORPH_CLOSE, kernel)
cv.imshow('closing', closing)

cv.waitKey(0)
cv.destroyAllWindows()
cv.waitKey(1)  # If I dont have this line then the window won't close for me on my mac when I enter a key

我不知道为什么我会收到这个错误?


  File "/Users/p/.spyder-py3/My_OpenCV_Files/Homework3_CSC317/Hw3-problem1.py", line 24, in <module>
    dilation = cv.dilate(A1,kernel,iterations = 1)

error: OpenCV(3.4.2) /opt/concourse/worker/volumes/live/
9523d527-1b9e-48e0-7ed0a36adde286f0/volume/opencvsuite_1535558719691/work
/modules/imgproc/src/morph.cpp:973: 
error: (-213:The function/feature is not implemented) Unsupported data type (=4) in function 'getMorphologyFilter'
4

1 回答 1

6

你的错误信息

函数“getMorphologyFilter”中不支持的数据类型 (=4)

表示cv.dilation不支持输入图像的数据类型(类型 4 是有符号的 32 位整数)。

文档说支持的类型是:CV_8U、、、和。CV_16UCV_16SCV_32FCV_64F

因此,解决方案只是创建一个以其中一种类型作为输入的数组。

于 2019-05-05T20:20:38.303 回答