Python-OpenCV cv2 OpenCV错误:未知函数中的断言失败(scn == 3 || scn == 4),文件..\..\..\modules\imgproc\src\color.cpp

Pra*_*ava 27 opencv numpy image-processing python-2.7

我正在尝试使用cv2学习python中的轮廓.

我尝试了教程指南中给出的以下代码:

import cv2
import numpy as np
from matplotlib import pyplot as plt

im = cv2.imread('C:\Users\Prashant\Desktop\test.jpg')
imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,127,255,0)
image, contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
img = cv2.drawContour(im, contours, -1, (0,255,0), 3)
cv2.imshow('Image1',img)
Run Code Online (Sandbox Code Playgroud)

我收到此错误:

File "C:\Python27\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 540, in runfile
OpenCV Error: Assertion failed (scn == 3 || scn == 4) in unknown function, file ..\..\..\modules\imgproc\src\color.cpp, line 3402
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
   execfile(filename, namespace)
 File "C:/Users/Prashant/.spyder2/.temp.py", line 15, in <module>
   imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
 cv2.error: ..\..\..\modules\imgproc\src\color.cpp:3402: error: (-215) scn == 3 || scn == 4
Run Code Online (Sandbox Code Playgroud)

Abi*_*n K 85

它表示在应用该功能之前,您的输入图像应该有3或4个通道cv2.cvtColor.

因此在应用函数之前检查图像形状print im.shape.如果结果是None type(大多数情况下,这是问题),您的图像未正确加载,很可能是因为您的路径不正确.

要点是您的图像应该有3个维度,行,列和深度.

  • @Abid恭喜黄金[tag:opencv]徽章. (2认同)
  • 更改图片并非如此。如果它是一个视频文件,并且您尝试捕获每个帧,并且在某些帧中找不到形状,那么您不应仅因为某些帧没有适当的shape属性而更改整个视频文件。你更好地处理它 (2认同)