TypeError:找不到必需的参数“ ranges”(位置2)

时间:2019-01-27 10:08:05

标签: python opencv cv2

我是python的新手,我尝试使用filter2D函数,但出现此错误。

img_out = cv2.filter2D(img_in,-1,cv2.UMat(gb)); TypeError:找不到必需的参数“范围”(位置2)...这是什么意思?

      import numpy as np
      import cv2


      def gabor_fn(sigma, theta, Lambda, psi, gamma):
      sigma_x = sigma
      sigma_y = float(sigma) / gamma

      # Bounding box
      nstds = 3  # Number of standard deviation sigma
      xmax = max(abs(nstds * sigma_x * np.cos(theta)), abs(nstds * sigma_y * np.sin(theta)))
      xmax = np.ceil(max(1, xmax))
      ymax = max(abs(nstds * sigma_x * np.sin(theta)), abs(nstds * sigma_y * np.cos(theta)))
      ymax = np.ceil(max(1, ymax))
      xmin = -xmax
      ymin = -ymax
      (y, x) = np.meshgrid(np.arange(ymin, ymax + 1), np.arange(xmin, xmax + 1))

      x_theta = x * np.cos(theta) + y * np.sin(theta)
      y_theta = -x * np.sin(theta) + y * np.cos(theta)

      gb = np.exp(-0.5 * (np.power(x_theta, 2) / np.add(np.power(sigma_x, 2) , np.power(y_theta, 2)) / np.power(sigma_y, 2)* np.cos(2 * np.pi / Lambda * x_theta + psi[0])));

      return gb;


   Lambda = 8;
   theta = 0;
   psi = [0, np.pi / 2];
   gamma = 0.5;
   sigma = 1.0;
   N = 8;
   img_in = cv2.imread('1.jpg');
   img_in = cv2.cvtColor(img_in, cv2.COLOR_BGR2GRAY);

   for n in range(N):
     gb = np.add(gabor_fn(sigma, theta, Lambda, psi, gamma) , 1j * 
     gabor_fn(sigma, theta, Lambda, psi, gamma));
     img_out = cv2.filter2D(img_in,-1,cv2.UMat(gb));
     theta = theta + (2 * np.pi) / N

   img_out_disp = np.power(sum(np.power(abs(img_out), 2), 3), 0.5);
   img_out_disp = np.divide(img_out_disp, max(img_out_disp));

2 个答案:

答案 0 :(得分:2)

您无法使用OpenCV的filter2D()处理复杂的内核。 docs for filter2D指定内核必须是“单通道浮点矩阵”。

要使用OpenCV的功能,您必须分别对内核的实部和虚部进行卷积,并按需要组合结果。

如果您使用的是Python,Scipy是另一个选择,它确实支持复杂的卷积。 docs for scipy.signal.convolve2d()显示了一个带有复杂Scharr过滤器的示例。

供以后参考,使用OpenCV,您可以直接通过函数getGaborFilter()获取Gabor内核,而不必自己计算,尽管请注意,它仅返回实部。

答案 1 :(得分:1)

这意味着您要使用的函数在第二个位置需要一个名为“范围”的参数。

但是,我不确定这是filter2D错误,因为这是函数的declaration

Python: cv2.filter2D(src, ddepth, kernel[, dst[, anchor[, delta[, borderType]]]]) → dst¶

并且您可以看到-此处不需要“范围” ... 可能还有另一个函数确实需要未提供的“范围”参数。