How to solve this cvtColor() error? "cv2.error: C:\builds\master_PackSlaveAddon-win32-vc12-static\opencv\modules\imgproc\src\color.cpp:7456: error: (-215) scn == 3 || scn == 4 in function cv::ipp_cvtColor"
I am trying to run the following code:
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
while(True):
# capture frame-by-frame
ret, frame = cap.read()
# our operation on 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
# When everything is done release the capture
cap.release()
cv2.destroyAllWindows()
But I get this error when I run it:
Traceback (most recent call last):
C:\Python27\python.exe C:/OpenCV_Python/Python_Test.py
OpenCV Error: Assertion failed (scn == 3 || scn == 4) in cv::ipp_cvtColor, file C:\builds\master_PackSlaveAddon-win32-vc12-static\opencv\modules\imgproc\src\color.cpp, line 7456
Traceback (most recent call last):
File "C:/OpenCV_Python/Python_Test.py", line 11, in <module>
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
cv2.error: C:\builds\master_PackSlaveAddon-win32-vc12-static\opencv\modules\imgproc\src\color.cpp:7456: error: (-215) scn == 3 || scn == 4 in function cv::ipp_cvtColor
Please help. Thanks a lot in advance.
Isnt it the wrong number of channels? It is looking for 3 and there are 4? Inquiring minds want to know. :o)
Thanks a lot sir