java中怎么利用电脑摄像头识别二维码
java中怎么利用电脑摄像头识别二维码?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
创新互联成立10余年来,这条路我们正越走越好,积累了技术与客户资源,形成了良好的口碑。为客户提供成都做网站、成都网站建设、网站策划、网页设计、域名注册、网络营销、VI设计、网站改版、漏洞修补等服务。网站是否美观、功能强大、用户体验好、性价比高、打开快等等,这些对于网站建设都非常重要,创新互联通过对建站技术性的掌握、对创意设计的研究为客户提供一站式互联网解决方案,携手广大客户,共同发展进步。
1、从摄像头获取图像,2、根据图片解析出二维码信息。
在上一篇java摄像头截图已经实现了摄像头截图,只要再加上zxing(或其它能从图片中解析二维码的组件),就能从图像中解析出二维码,实现代码如下:
package com.pengo.capture; import javax.swing.JFrame; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.InputStream; import javax.media.MediaLocator; import javax.swing.JPanel; import javazoom.jl.player.Player; import com.google.zxing.BinaryBitmap; import com.google.zxing.LuminanceSource; import com.google.zxing.MultiFormatReader; import com.google.zxing.Result; import com.google.zxing.common.HybridBinarizer; import net.sf.fmj.ui.application.CaptureDeviceBrowser; import net.sf.fmj.ui.application.ContainerPlayer; import net.sf.fmj.ui.application.PlayerPanelPrefs; public class CameraFrame2 extends JFrame{ private static int num = 0; public CameraFrame2() throws Exception{ this.setTitle("摄像头截图应用"); this.setSize(480, 500); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final JPanel cameraPanel = new JPanel(); this.getContentPane().setLayout(new BorderLayout()); this.getContentPane().add(cameraPanel, BorderLayout.CENTER); ContainerPlayer containerPlayer = new ContainerPlayer(cameraPanel); MediaLocator locator = CaptureDeviceBrowser.run(null); //弹出摄像头设备选择 PlayerPanelPrefs prefs = new PlayerPanelPrefs(); containerPlayer.setMediaLocation(locator.toExternalForm(), prefs.autoPlay); new Thread() { public void run() { while (true) { try { Thread.sleep(1000); Dimension imageSize = cameraPanel.getSize(); BufferedImage image = new BufferedImage( imageSize.width, imageSize.height, BufferedImage.TYPE_INT_ARGB); Graphics2D g = image.createGraphics(); cameraPanel.paint(g); g.dispose(); LuminanceSource source = new BufferedImageLuminanceSource( image); BinaryBitmap bitmap = new BinaryBitmap( new HybridBinarizer(source)); Result result; result = new MultiFormatReader().decode(bitmap); System.out.println("二维码====:" + result.getText()); InputStream is = CameraFrame.class.getClassLoader().getResourceAsStream("resource/beep.mp3"); Player player = new Player(is); player.play(); } catch (Exception re) { re.printStackTrace(); } } } }.start(); } public static void main(String[] args) throws Exception{ CameraFrame2 camera = new CameraFrame2(); camera.setVisible(true); } }
关于java中怎么利用电脑摄像头识别二维码问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
当前题目:java中怎么利用电脑摄像头识别二维码
URL网址:http://scyanting.com/article/giojgd.html