谁能指导我在黑莓上使用二维码进行开发?

发布于 2024-11-03 09:51:30 字数 301 浏览 2 评论 0原文

我正在开发我的相机应用程序,可以实时解码相机上的二维码。

当我打开相机时,我将计时器设置为大约每 3 秒一次,以使用 Display.screenshot(); 捕获屏幕上的图片。方法,然后在相机打开时使用 zxing 库对其进行解码。有时,它可以捕获二维码并成功解码,但否则很难解码图片。我认为问题出在相机上。我无法使用相机自动对焦,因此拍摄的照片很暗淡。我想知道如何使用相机的自动对焦。

  • 我的应用程序在操作系统版本 5.0 及更高版本上实现。

有人可以帮助我或对新解决方案提出建议吗?

太感谢了

I am developing my camera application that can decoded the qrcode in real time of camera on.

When I open the camera, I set the timer about every 3 seconds interval to capture picture on the screen with Display.screenshot(); method and then decoded it with zxing library while camera is on. Sometimes, it can capture the qrcode and successful decoded, but otherwise it hard to decoded the picture. I think the problem is about camera. I can not use auto focus with the camera, so the capture picture is gloomy. I want to know how to use auto focus with the camera.

  • My application implement on OS version 5.0 and upper version.

Could anyone help me or suggestion about new solution ?

Thank you so much

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

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

发布评论

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

评论(2

烟若柳尘 2024-11-10 09:51:30

尝试在此处下载 BBBarcodeLib:http: //aliirawan-wen.blogspot.com/2011/05/barcode-scanner-for-blackberry-os-50.html

请注意,对于 OS6 设备,您可以使用内置的 BlackBerry 条形码扫描库(基于 Google ZXing 构建)。

Try BBBarcodeLib available for download here: http://aliirawan-wen.blogspot.com/2011/05/barcode-scanner-for-blackberry-os-50.html.

Note that for OS6 devices you can use the built in BlackBerry barcode scanning library (built on Google ZXing).

踏雪无痕 2024-11-10 09:51:30

主要问题可能是 3 秒的停顿。您应该尽可能快地解码帧,每秒应该解码多次。这将使您更快地成功扫描。

如果可以的话,您可以而且应该集成最新的 zxing 库,而不是使用 RIM 操作系统内置的库,因为它有一些小的改进,很有帮助。

The main problem is likely that 3 second pause. You should be decoding frames as fast as you can, which should be many times per second. This will get you a successful scan much faster.

You can and should integrate the latest zxing library instead of using that built into RIM's OS if you can, as it has small improvements that will be helpful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文