Disclaimer: huge openCV noob
Traceback (most recent call last):
File "lanes2.py", line 22, in
canny = canny(lane_image)File "lanes2.py", line 5, in canny
gray = cv2.cvtColor(imgUMat, cv2.COLOR_RGB2GRAY)TypeError: Expected cv::UMat for argument 'src'
What exactly is 'src' referring to?
srcrefers to the input matrix/image that you pass to the function. - Quang Hoang