繁体   English   中英

无法在 macOS 上使用 opencv 进行视频捕获

[英]Cannot Video Capture With opencv on macOS

在 python 上,当我尝试使用 open cv2 进行视频捕获时,我得到:

2021-11-18 11:07:36.572 Python[5863:20765] =>> Checked Property: [cfen] 1667655022
2021-11-18 11:07:36.572 Python[5863:20765] =>> Checked Property: [cfen] 1667655022
2021-11-18 11:07:36.572 Python[5863:20765] =>> Checked Property: [cfen] 1667655022
2021-11-18 11:07:36.572 Python[5863:20765] =>> Checked Property: [cfac] 1667653987
2021-11-18 11:07:36.621 Python[5863:20765] =>> Checked Property: [cfen] 1667655022
2021-11-18 11:07:36.622 Python[5863:20765] =>> Checked Property: [cfen] 1667655022
2021-11-18 11:07:36.722 Python[5863:20765] =>> Checked Property: [cfen] 1667655022
2021-11-18 11:07:36.722 Python[5863:20765] =>> Checked Property: [cfen] 1667655022

我也是这个 windows 开口:

window

这是我的代码:


    
    import cv2


    trained_face_data = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
 
  
    webcam = cv2.VideoCapture(0)
    
    
    ret, frame = webcam.read()
   
   
    grayscaled_img = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    
    cv2.imshow('image face detector', grayscaled_img)
    
    cv2.waitKey(1)

解决只需将参数cv2.VideoCapture(0)更改为cv2.VideoCapture(2)

希望对其他 Mac 用户有所帮助

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM