gpt4 book ai didi

java - 网络摄像头捕获仅有时有效

转载 作者:行者123 更新时间:2023-12-01 15:00:29 28 4
gpt4 key购买 nike

我在 Windows 中有一个简单的网络摄像头程序,它“偶尔”工作,但大多数时候它在尝试查找默认驱动程序时挂起。

public class JavaApplication54 {

/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException {
Webcam webcam = Webcam.getWebcams().get(0);

webcam.open();
BufferedImage image = webcam.getImage();
ImageIO.write(image, "PNG", new File("test.png"));
image = null;
webcam.close();
}

}我得到的输出是

13:22:08.910 [main] INFO  c.g.sarxos.webcam.WebcamDriverUtils -
Searching driver com.github.sarxos.webcam.ds.openimaj.OpenImajDriver
13:22:08.915 [main] DEBUG c.g.sarxos.webcam.WebcamDriverUtils -
Driver com.github.sarxos.webcam.ds.openimaj.OpenImajDriver not found
13:22:08.915 [main] INFO c.g.sarxos.webcam.WebcamDriverUtils -
Searching driver com.github.sarxos.webcam.ds.civil.LtiCivilDriver
13:22:08.915 [main] DEBUG c.g.sarxos.webcam.WebcamDriverUtils -
Driver com.github.sarxos.webcam.ds.civil.LtiCivilDriver not found
13:22:08.915 [main] INFO c.g.sarxos.webcam.WebcamDriverUtils -
Searching driver com.github.sarxos.webcam.ds.jmf.JmfDriver
13:22:08.916 [main] DEBUG c.g.sarxos.webcam.WebcamDriverUtils -
Driver com.github.sarxos.webcam.ds.jmf.JmfDriver not found
13:22:08.916 [main] INFO com.github.sarxos.webcam.Webcam - Webcam
driver has not been found, default one will be used! 13:22:08.925
[main] DEBUG c.g.s.w.d.b.WebcamDefaultDriver - Searching devices

最佳答案

如果我没猜错的话,这是网络摄像头捕获 API 代码中发现的死锁问题之一。欲了解详情,您可以在 Webcam Capture Github project 上查看这些门票。页面:#128 , #30

我认为您的解决方案是使用最新版本,即(在我撰写此答案时)0.3.10-RC6 。无论使用 IDE(或 CLI)进行开发,它都应该可以工作。

关于java - 网络摄像头捕获仅有时有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13724372/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com