Questions tagged [google-glass]

Google Glass is a project to create a commercially-viable, next-generation wearable smart device in the form of a pair of glasses featuring a head-mounted display. The product allows users to interact with the device via voice and allows other smartphone-like functionality. Google Glass runs on Android with additional APIs for developers.

Google Glass is a research and development program by Google to develop an augmented reality head-mounted display (HMD). Google Glass runs and displays information in smartphone-like format hands-free and interacts with the Internet via natural language voice commands. The prototype's functionality and minimalist appearance (aluminium strip with 2 nose pads) has been compared to Steve Mann's EyeTap. (from wikipedia)

1569 questions
0
votes
1 answer

Google Glass Broadcastreceiver across activities

I have an activity where I create a BroadcastReceiver and create a connection with Bluetooth to some other device. My main activity has a set of cards in a CardScrollView. The cards in this array are devices that my app finds that are able to…
gkapellmann
  • 313
  • 3
  • 19
0
votes
0 answers

Image corrupted when sent via bluetooth

I am developing a client app in the google glass that takes a picture and sends the byte array via bluetooth to an android phone that has a server app installed in it. After sending all data to the phone, I tried to create a bitmap from the byte…
John Ng
  • 869
  • 3
  • 15
  • 28
0
votes
1 answer

How to show alert dialogs at any time on a high-frequency live card?

I'm working on Glassware that needs to be able to display alert dialogs at any time during the lifespan of the Glassware. As can be seen on Google's GDK development guide, this requires a valid Context object. However, I'm using the high-frequency…
tnorth
  • 32
  • 6
0
votes
2 answers

How can I add image recognition to a Google Glass application?

I am trying to find a free way to do image recognition / computer vision in my Google Glass application. I am looking for something that can recognize real-world objects like money, book covers, and text. Ideally, it would work like Google Goggles…
Ben Sandler
  • 2,223
  • 5
  • 26
  • 36
0
votes
1 answer

Google Glass Card Constructor Undefined

I am trying to display my altitude on Glass' screen using mAltText. When I call the card class, it gives me the error: "The constructor Card(new LocationHelper.LocationResult(){}) is undefined" because I have "this" as a parameter. What should I use…
Autex
  • 307
  • 2
  • 12
0
votes
1 answer

Google Glass Voice Recognition breaks in XE 21.3

I own a Google glass device with version XE 21.3. Two days back it got updated from 19.3 to 21.3. In my previous 19.3 version, I was able to detect any word from within my application using this library that provided the GlassVoice.jar…
Parth Doshi
  • 4,200
  • 15
  • 79
  • 129
0
votes
1 answer

Wi-Fi + Proxy Configuration from Glassware

I need to connect my Glasses to a network with Wi-Fi (protected by PEAP) and accessing internet through a proxy. I built, thanks to jzplusplus, a glassware to set up the Wi-Fi with PEAP security. Now I'm trying to route the whole system to the…
Remy San
  • 525
  • 1
  • 4
  • 24
0
votes
0 answers

Refer to Google Glass drive via batch file

When I connect the google glass to my PC, it opens up a new drive named "Glass". How can I refer to this drive in a batch file/script from any computer that I connect my glass to (independently), suppose no one would deliberately rename the…
Roi Bueno
  • 99
  • 10
0
votes
1 answer

Issue while creating live card on google glass. Card not getting displayed

How to display live card on google glass??What can be the issues that need to take care of specially while developing live card.I have created one but its not working.Here is my code for service public int onStartCommand(Intent intent, int…
Kratika Singh
  • 23
  • 1
  • 6
0
votes
1 answer

Bat file based pop up window autoplay when USB is connected

What is the best way to do the following: When I connect my device (let it be specific device - say Google Glass) to the USB port, I'd like that some agent will immediately pop-up (like windows autoplay), show me the list of files I currently have …
Roi Bueno
  • 99
  • 10
0
votes
1 answer

Google glass returning NoClassDefFoundError for glass.widget.CardBuilder

I'm very new to Glass development yet have run into a frustrating problem which has pretty well halted my progress entirely. Upon building and running any Glass project, I am greeted with the error: java.lang.NoClassDefFoundError:…
0
votes
1 answer

How to put image dynamically in a Card?

I am querying the images using REST Service where I receive it in a Base64 encoded format. How do I convert it to Bitmap, and then put it on the Card? I am using CardScroller
ipradhansk
  • 352
  • 1
  • 10
  • 36
0
votes
1 answer

How to close the card by itself after executed a HTTP request?

I have an app with contextual commands. After triggered a contextual command, it will make a HTTP request with a link and post the result on the card, something like, "Completed!". I want this card to be closed by itself after one second so that the…
0
votes
2 answers

Create a CardBuilder with a custom layout

Instead of creating a new CardBuilder with en Enum like CardBuilder.Layout.COLUMNS_FIXED, I'd like to create them with custom layouts. Is this possible? What other alternative is there?
RichardJohnn
  • 654
  • 9
  • 24
0
votes
1 answer

Communication between Google Glass and smartphone (SHARE JSON DATA)

I need process some information in my device (sensorial information) and share some of this information to the glass. The glass only have to display information. what is the best way to do this?? I have read about sharing data through bluetooth,…