我想用python连接Hikvision ip camera,并使用以下代码打开cv:
import numpy as np
import cv2
cap = cv2.VideoCapture()
cap.open("rtsp://yourusername:yourpassword@172.16.30.248:555/Streaming/channels/2/")
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',ret)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()
当我运行我的代码时,我得到了这个错误:
Traceback (most recent call last):
File "C:\Users\Amin\Desktop\ip camera in py\csm.py", line 15, in <module>
cv2.imshow('frame',ret)
cv2.error: OpenCV(4.0.0) c:\projects\opencv-python\opencv\modules\imgproc\src\color.hpp:261: error: (-2:Unspecified error) in function '__cdecl cv::CvtHelper<struct cv::Set<1,-1,-1>,struct cv::Set<3,4,-1>,struct cv::Set<0,2,5>,2>::CvtHelper(const class cv::_InputArray &,const class cv::_OutputArray &,int)'
> Unsupported depth of input image:
> 'VDepth::contains(depth)'
> where
> 'depth' is 6 (CV_64F)
我用VLCPlayer测试我的相机,它工作得很好!
我认为这个问题与opencv4有关!
我怎么才能修复它?tnx很多
发布于 2019-03-04 00:28:59
错误是您在OpenCV的imshow()
函数中传递的是BOOLEAN
值,而不是Mat
值:
cv2.imshow('frame',ret)
因此,您应该传递帧:
cv2.imshow('frame',frame)
Python
中的cap.read()
返回两个值,一个是Boolean
,表示帧是否被成功读取,另一个是帧本身。因此,如果是true
,则应检查ret
,然后显示帧。
https://stackoverflow.com/questions/54970830
复制相似问题