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

时间:2018-12-09 00:04:54

标签: python python-3.x opencv cv2

我在cv2中有以下代码。该代码是从https://github.com/dipakkr/3d-cnn-action-recognition下载的。我想使用cv2.imshow可视化它得到的视频帧。但是我收到以下错误。问题是什么? 我怀疑此代码是否真的能够读取视频,因为输出是零数组,因此返回的内容。

def video3d(self, filename, color=False, skip=True):

        cap = cv2.VideoCapture(filename)
        #ret, frame=cap.read()
        #cv2.imshow('frame', frame)
        nframe = cap.get(cv2.CAP_PROP_FRAME_COUNT) #Returns the specified VideoCapture property  ,,Number of frames in the video file

        print (nframe, "nframe")

        if skip:
            frames = [x * nframe / self.depth for x in range(self.depth)]
            print (frames, "frameeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeees")

        else:
            frames = [x for x in range(self.depth)]
            print (frames, "frameseeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2")

        framearray = []

        for i in range(self.depth):
            cap.set(cv2.CAP_PROP_POS_FRAMES, frames[i])  #Sets a property in the VideoCapture. ,,0-based index of the frame to be decoded/captured next.
            ret, frame = cap.read()
            cv2.imshow(frame)
            print(ret, "reeeeeeeeeeeeeeeeettttttttt")
            print(frame ,"frame issssssssssss:")
            frame = cv2.resize(frame, (self.height, self.width))
            print(frame, "frame222 isssssssssssssss")
            #cv2.imshow(frame)
            if color:
                framearray.append(frame)
            else:
                framearray.append(cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY))

        cap.release()
        return np.array(framearray)


X.append(vid3d.video3d(v_file_path, color=color, skip=skip))

错误:

    main()
  File "3dcnn.py", line 151, in main
    args.output, args.color, args.skip)
  File "3dcnn.py", line 103, in loaddata
    X.append(vid3d.video3d(v_file_path, color=color, skip=skip))
  File "/home/gxa131/Documents/final_project_computationalintelligence/3d-cnn-action-recognition/videoto3d.py", line 34, in video3d
    cv2.imshow(frame)
TypeError: Required argument 'mat' (pos 2) not found

4 个答案:

答案 0 :(得分:2)

cv2.imshow的第一个参数是窗口名称,因此它认为第二个输入mat(图像)丢失。如果您不想命名窗口,则只需输入一个空字符串作为第一个输入参数即可。

cv2.imshow('', frame) 

答案 1 :(得分:2)

cv2找不到“ mat” (矩阵),因为您将图像作为第一个参数传递,但是第一个参数应该是窗口名称。

cv2.imshow(winname, mat)

在大多数情况下,您不需要关心窗口名称,因此请使用以下命令:

cv2.imshow('', frame)
cv2.waitKey(0)

这是更改窗口名称时的结果:

import numpy as np
import cv2

image = np.full((300, 300, 3), 255).astype(np.uint8)

cv2.putText(image, 'some picture', (20, 60),
            cv2.FONT_HERSHEY_SIMPLEX, 1, [0, 0, 0])

cv2.imshow('custom window name', image)
cv2.waitKey(0)

enter image description here

您可能想要更改窗口名称的原因之一是在不同的窗口中一次绘制许多图片。

答案 2 :(得分:0)

我知道这个问题已经回答了,但是想在上面添加一个通用的答案!

当我们错过为调用的函数提供第二个参数时,基本上可以通过此错误进行python处理。

当出现这样的错误时,只需转到输出部分错误所指向的行号,并检查您已调用的函数,是否已传递所有参数。

答案 3 :(得分:0)

我遇到了同样的问题,通过将图像的完整路径提供给 imread()

解决了