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

How to do live streaming in google glass through android code?

How to do live streaming in google glass through android code, i am using eclipse IDE to develop android apps. I have downloaded GDK and created the project using GDK. I have browsed for live video streaming, i didnt get any blogs related to that(i…
Jems
  • 33
  • 1
  • 7
0
votes
1 answer

Google Glass Voice Recognition

What I tried to do: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ArrayList voiceResults = getIntent().getExtras() .getStringArrayList(RecognizerIntent.EXTRA_RESULTS); Card ShowDataCard = new…
Vincent Taglia
  • 173
  • 1
  • 3
  • 12
0
votes
1 answer

Glass Card.toRemoteViews() returns null

Using the Google Glass GDK, I'm trying to put together a simple app that displays / updates a live card. In my Service, I have the following method: private void publishCard(Context context) { Card updatedCard = new Card(context); …
sigmabeta
  • 1,174
  • 1
  • 12
  • 28
0
votes
1 answer

Glass GDK HttpUrlConnection Service Not Available

I have this called in my Service that creates / updates live card. URL url = new URL(url1); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); I am getting Service Not Available. The URL works just fine in browser. I have the…
sivag1
  • 4,734
  • 3
  • 32
  • 35
0
votes
1 answer

Gestures on Google Glass translated to code

In the GDK, it refers to gestures as "Gesture.SWIPE_RIGHT" and "Gesture.SWIPE_LEFT". However, I am confused because you swipe forward and backward! Does anybody know what swiping forward translates to in code, and the same for swiping…
Vincent Taglia
  • 173
  • 1
  • 3
  • 12
0
votes
1 answer

Accessing microphone from a service on Glass

I would like a service to access the microphone (and do some signal processing on it a bit like what the google music is doing to recognise songs) Is there a public API for that ? can't seem to find it :/
0
votes
1 answer

Cannot retrieve Google Credentials outside of a Servlet

We are looking to push periodic or event driven Glass Timeline updates and we're running into issues with the AuthUtil provided in the Java Glass starter project. Normally, we would just need to call the following after a user has enabled our app…
Dayel Ostraco
  • 1,753
  • 1
  • 13
  • 15
0
votes
1 answer

Google Glass GDK send SMS

Is it possible to send SMS programmatically from Glass? The use case is sending an auto generated sms message using users phone. I know this is possible with android sdk, will this work automagically on Glass?
Patrick Jackson
  • 18,766
  • 22
  • 81
  • 141
0
votes
1 answer

TextView on GLSurfaceView doesn't update properly

I've been continuing to play with the glass GDK (and enjoying it) but i've got a new problem that I think (?) is specific to glass and I'm not sure what to do.... I have a immersion running with the contentView set to a framelayout that holds a…
loghound
  • 676
  • 6
  • 12
0
votes
2 answers

How to deploy the Glassware Starter Project using Google App Engine with the Go Runtime Environment

Using the guide located here: https://developers.google.com/glass/develop/mirror/quickstart/go I attempted to register and deploy an instance of the quickstart located here https://github.com/googleglass/mirror-quickstart-go I had some errors when I…
0
votes
1 answer

Message "Camera has stopped" when using Glass GDK and Android Camera API

I wondered if anyone has tried using the standard Android Camera API (http://developer.android.com/guide/topics/media/camera.html) to control the camera in an app. I was able to get my app to work using the startActivityForResult() method, but was a…
Darren
  • 1,417
  • 13
  • 23
0
votes
1 answer

How do I pin the LiveCard using GDK?

I'm using the GDK and can't find in the documentation how to pin the LiveCard to the timeline. Can somebody help pls? Thanks.
Eduard
  • 3,482
  • 2
  • 27
  • 45
0
votes
1 answer

Authorization to send text to Google Glass

I've been having a very difficult time sending a simple message to Glass and I suspect it has something to do with authorization request. Below is my code: String AUTH="ya29.1.AADtN_WhePFbTxZdrM8wDWaVyBPgpyvph5EifU-CDQ4z9nbJxBXHLQLiaY3EDBk"; …
0
votes
2 answers

Renderscript support

Does the GDK support Renderscript? I wanted to run some image processing algorithms on Glass's Camera. However, the process crashes with a SIGSEGVfault. Here is the stack trace: 11-23 23:48:39.021: VERBOSE/RenderScript(1568): rsContextCreate…
Rahul
  • 19,744
  • 1
  • 25
  • 29
0
votes
1 answer

Subscriptions not receiving timeline notification

I'm encountering the same problem described on this question - Subscriptions Not Receiving Timeline Notifications. The last time my app received a timeline notification was on 11/13. Here's what I did: Created my project using the ASP.NET Quick…
Kyle
  • 606
  • 5
  • 16
1 2 3
99
100