使用java拍摄网络摄像头图片的最简单方法

发布于 2024-12-21 21:14:39 字数 96 浏览 1 评论 0原文

我正在用java编写一个程序。我希望能够从客户的网络摄像头拍照。我环顾四周,发现了一些 API,但我无法真正了解我下载的内容。有人知道用java拍照的一种非常简单的方法吗?多谢!

I'm making a program in java. I'd like to be able to take pictures from the client's webcam. I've been looking around, i found some APIs, but i can't really make heads of tails of what I downloaded. Anyone know a really simple way to take pictures in java? Thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染年凉城似染瑾 2024-12-28 21:14:39

好吧,我会选择 JMFFMJ,他们似乎是这类事情的大牌。有一个有点类似的问题这里包含更多选项,如果这两个对你来说都有点太“重”了。尝试其中一个可能是值得的。

编辑:根据 这个答案

Well, I would go with JMF or FMJ, they seem to be the big names in this sort of thing. There is a somewhat-similar question here that contains a few more options, if both of those are a little too "heavy" for you. It might be worth it to give one of them a shot.

EDIT: JMyron might be what you're looking for, according to this answer.

终止放荡 2024-12-28 21:14:39

使用 Marvin 非常简单:

MarvinVideoInterface videoAdapter = new MarvinJavaCVAdapter();
videoAdapter.connect(0);
MarvinImage image = videoAdapter.getFrame();
MarvinImageIO.saveImage(image, "./res/webcam_picture.jpg");

It's very simple to do it using Marvin:

MarvinVideoInterface videoAdapter = new MarvinJavaCVAdapter();
videoAdapter.connect(0);
MarvinImage image = videoAdapter.getFrame();
MarvinImageIO.saveImage(image, "./res/webcam_picture.jpg");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文