3

在 OpenCV 中,某些函数具有“重载成员”对应项(例如,Canny 边缘检测)。

我的问题是:如何在我的代码中调用这个重载函数?如果我调用 cv2.Canny(),无论参数如何,它都会调用“标准 Canny ”。

我在 Ubuntu 14 上使用 Python 2.7(与 C++ 相比,这可能是这个问题的一个问题?)和 OpenCV 3.1。

这是一个 MWE:

import cv2
import numpy as np

#getting gradient of image in x and y directions
def imgradient(img, sobel):
    sobelx = cv2.Sobel(img, cv2.CV_64F, 1, 0, ksize=sobel)
    sobely = cv2.Sobel(img, cv2.CV_64F, 0, 1, ksize=sobel)
    return (sobelx,sobely)

#open image
IMG=cv2.imread("path_to_my_image") #replace with actual path
h = IMG.shape[0]; w = IMG.shape[1]

#Canny parameters : thresholds and kernel size
upper=5; lower=5; SIZE_KERNEL=3

#computing gradients (needed as arguments for overloaded Canny)
sobels=imgradient(IMG,3)
sobelx=sobels[0]
sobely=sobels[1];

output=np.zeros((h,w))

#trying to call overloaded Canny
cv2.Canny(sobelx,sobely,output,lower,upper);
#get error "only length-1 arrays can be converted to Python scalars"
#because the code is actually calling the standard Canny (second link)
edges = cv2.Canny(IMG, lower, upper, apertureSize=SIZE_KERNEL)
#works fine, but this is not the Canny I'm looking for (read this line in Obi-Wan's voice)

谢谢

4

1 回答 1

1

您尝试调用的重载 Canny 函数可从 OpenCV 3.2 获得。您可以在OpenCV 3.1的文档中看到该功能不存在。

由于您使用的是 OpenCV 3.1,因此您没有该功能。

您可以从github下载 OpenCV 3.2 (尚未发布)并进行编译。主站点

于 2016-12-20T10:57:09.113 回答