HandGesture Detection

后端 未结 2 725
深忆病人
深忆病人 2021-01-28 08:54

When I run this:

contours,_,hierarchy = cv2.findContours(thresh.copy(),cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE)

I get this error:

         


        
2条回答
  •  时光说笑
    2021-01-28 09:08

    cv2.findContours() return two values and cannot be unpacked to contours, hierarchy and _

    It should be like this:

    contours, hierarchy = cv2.findContours(thresh.copy(),cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE)

    or more:

    a, b, *others = [1, 2, 3, 4]

提交回复
热议问题