Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Glass preview image scrambled with new XE10 release

Tags:

This occurs using a few apks that make use of the camera (e.g., zxing, opencv). It displays a glitched image in the preview but it is still a function of what the camera sees so it appears to be an encoding mismatch. The native camera preview works fine, so the internal apps do not exhibit this problem.

like image 208
Brandyn White Avatar asked Oct 07 '13 21:10

Brandyn White


People also ask

Is Google Glass finished with its ambitions?

However, Google isn't entirely finished with its Glass ambitions. In May 2019, the company released the second version of its Enterprise Edition model.

Is Google Glass the future of smart home technology?

Google Glass arrived and left in a very short space of time. While not all of Google's products and services are destined to be instant hits commercially, Glass would have been another smart product that could have easily made its way into smart home networks.

Do Google Glasses still exist?

These spectacles also come with AR and VR capabilities, USB-C charging, and an improved processor and camera. As a result, while it's no longer commercially available as a retail product, Google Glass still does exist. The original Google Glass stumbled so other smart glasses could run.

What happened to the futuristic smart glasses?

Google Glass: What Happened To The Futuristic Smart Glasses? Google Glass smart glasses were once slated as the next big thing in tech. While they no longer exist, the technology lives on in future products. Google Glass arrived and left in a very short space of time.


1 Answers

For now, please try adding the following workaround after you acquire the Camera but before you setup and start the preview:

Camera.Parameters params = camera.getParameters(); params.setPreviewFpsRange(30000, 30000); camera.setParameters(params); 

(Or just add the setPreviewFpsRange call to your existing parameters if you're setting others as well.)

like image 144
Tony Allevato Avatar answered Nov 08 '22 20:11

Tony Allevato