0
我是OpenCV和Python的初學者,正在執行我的第一步... 我想運行使用OpenCv編寫的Python測試代碼。我收到一個錯誤說:Python openCV - 顯示攝像頭圖像的錯誤
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 "C:\cam.py", line 11, in <module>
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
cv2.error: ..\..\..\modules\imgproc\src\color.cpp:3402: error: (-215) scn == 3 || scn == 4
它將在空轉(Python的GUI),但是,我想與Python的插件VS2010運行它 - 這是我得到的錯誤。 任何意見如何處理這個錯誤高度讚賞。
CODE:
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
while(True):
# Capture frame-by-frame
ret, frame = cap.read()
# Our operations on the frame come here
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Display the resulting frame
cv2.imshow('frame',gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
如果從IDLE運行良好,可能是vs2010的一個bug。 – M4rtini
不是因爲我試圖從cmd運行它併發生同樣的錯誤... – Saint