调用cv2.findContours()时出现“ ValueError:没有足够的值要解压”

时间:2019-06-25 12:35:25

标签: python-3.x opencv opencv3.1

运行该脚本时,我是从互联网上获得此脚本的,但我在此行中遇到了一些错误,请问有什么可以帮助的吗? 我不知道我一天在互联网上搜索到类似错误的确切错误在哪里。

import cv2
import numpy as np
def main():
   #window_name="Cam feed"
   #cv2.namedWindow(window_name)
   cap=cv2.VideoCapture("C:\\Users\\ccie\\Desktop\\768x576.avi")

   #filename = 'F:\sample.avi'
   #codec=cv2.VideoWriter_fourcc('X','V','I','D')
   #framerate=30
   #resolution = (500,500)

 #  VideoFileOutput = cv2.VideoWriter(filename,codec,framerate,resolution)


   if cap.isOpened():

      ret,frame = cap.read()

   else:
      ret =False

   ret,frame1 = cap.read()
   ret,frame2 = cap.read()

   while ret:
      ret,frame = cap.read()
      #VideoFileOutput.write(frame)

      d=cv2.absdiff(frame1,frame2)

      grey=cv2.cvtColor(d,cv2.COLOR_BGR2GRAY)

      blur =cv2.GaussianBlur(grey,(5,5),0)
      ret,th=cv2.threshold(blur,20,255,cv2.THRESH_BINARY)
      dilated=cv2.dilate(th,np.ones((3,3),np.uint8),iterations=3)
      img,c,h=cv2.findContours(dilated,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)

最后我得到了这个错误

PS C:\python3.6> .\python.exe .\Contours_Opencv.py
Traceback (most recent call last):
  File ".\Contours_Opencv.py", line 51, in <module>
    main()
  File ".\Contours_Opencv.py", line 37, in main
    img,c,h=cv2.findContours(dilated,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
ValueError: not enough values to unpack (expected 3, got 2)
PS C:\python3.6>

1 个答案:

答案 0 :(得分:0)

该错误是由于openCV的版本不同而导致的,其中findContours返回3个值,而您的版本返回2个值。

更改
img,c,h=cv2.findContours(dilated,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)


c,h=cv2.findContours(dilated,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)

它应该可以工作。

出于完整性考虑(因为您已标记openCV3.1):直到openCV 3.1版findContours返回2个值,版本3.2至3.6返回3个值,而从4.0版开始,它再次返回2个值。