OpenCV 2.4.4 Java - Grab Webcam picture/stream (OSX)

后端 未结 3 1609
我寻月下人不归
我寻月下人不归 2021-01-06 02:03

I\'m new in the world of Stackoverflow and in OpenCV programming. I\'ve made some projects with OpenCV Bindings for Java (the opencv.org officials, not JavaCV), like object

3条回答
  •  攒了一身酷
    2021-01-06 02:20

    The problem was simply that camera need time to initialize. I've added

    Thread.sleep(1000);
    

    after

    VideoCapture camera = new VideoCapture(0);
    

提交回复
热议问题