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
2 answers

google glass- How to implement grace period when option is selected?

I have read in the GDK documentation that there are menu options which when get selected provide user with Grace period to cancel there action by swiping down. Like the delete option which you get when you tap a card in Glass timeline. I was…
Sheraz Ahmad Khilji
  • 8,300
  • 9
  • 52
  • 84
0
votes
0 answers

Face Detection Listener on Google Glass

I have been trying to launch face detection on Google Glass. It is supposed to run realtime as I want to trigger a custom method if there are faces on camera sight. Unfortunately it always detects zero faces. I want to start the detection as soon as…
Karolis Ryselis
  • 679
  • 4
  • 15
0
votes
1 answer

Detecting a user action on a custom menu to insert cards in a bundle

I have a bundle with just a cover that i have inserted in my timeline using mirror API. Now what i want is when a user clicks on the bundle, i get a custom menu clicking on which the backend is called to insert a set of cards again in the same…
Chirag
  • 335
  • 2
  • 3
  • 13
0
votes
0 answers

Is there a way to register your app to some URLs just like in normal Android?

I would like to register my app to foursquare URLs and user would see a Intent chooser between browser and my app. It doesn't seem to work, default browser is always launched. I was trying to call this code: Intent i = new…
David Vávra
  • 18,446
  • 7
  • 48
  • 56
0
votes
3 answers

Mirror API in Eclipse

I downloaded the glass-java-starter from github and followed all of the instructions on the glass developers site. I got it imported into Eclipse as a Maven existing project as instructed and I changed the oAuth file ID and Secret as specified. …
antman1p
  • 514
  • 2
  • 11
  • 25
0
votes
2 answers

Android layout for Loop Text

I would like to be able to for loop in my layout and add text to the textviews dynamically, this does not error out but I get the lost row in the display for example Tw04 One4 I would like to be able to display One1 Two1 One2 Two2 etc... …
thechrisberry
  • 177
  • 1
  • 18
0
votes
2 answers

Google Mirror API

I have downloaded the Google Mirror Java Quick Start example from here: https://github.com/googleglass/mirror-quickstart-java And I have followed the instructions here: https://developers.google.com/glass/develop/mirror/quickstart/java I have…
0
votes
1 answer

Display Address/LatLng of Building User is Looking at with Google Glass

I was just wondering if it's possible to get the coordinates or address of a building that a user is looking at with Glass. I have access to a pair so I'm trying to flesh out some ideas, and I have one that I'm really interested in, but I'm not sure…
Paul Ruiz
  • 2,396
  • 3
  • 27
  • 47
0
votes
1 answer

MyGlass app doesn't show menu

I'm trying to use MyGlass app for Android devices. I have achieved to pair my Glass with my android device (tablet). It pairs perfect but just after it pairs, the app doesn't show anything and it returns to the initial state (showing a video +…
Mark
  • 113
  • 7
0
votes
3 answers

Google glass Immersive app icon doesn't show

My app icon has disappeared, I've sourced it to the activity alias's I am using. I want them to display as sub menu voice commands so in the manifest I've added the VOICE_TRIGGER action. When I remove this the icon re-appears. Any ideas for a work…
serenskye
  • 3,467
  • 5
  • 35
  • 51
0
votes
1 answer

How to have the camera take a picture and not show you the preview?

I just want to launch the camera activity and have it return to the calling activity. Basically I don't care about seeing the preview image where you "tap to select". The reason for this is I'm trying to inject tap events, so I cannot get past this…
rodly
  • 149
  • 3
  • 14
0
votes
1 answer

How can I listen to user voice input without starting a new Activity

I have an activity, and I'd like to listen for additional user input without having to navigate to the voice activity. Basically I'm showing a card scroll list of options, and I want the user to say "navigate" to navigate to the location rather…
serenskye
  • 3,467
  • 5
  • 35
  • 51
0
votes
1 answer

Disable Google Glass's 10 Seconds Video Default Setting

Right now MediaStore.INTENT_ACTION_VIDEO_CAMERA will start recording using the Google Glass camera for 10 seconds (user must press button to extend recording length). Is there anyway to disable this? Screenshot: http://imgur.com/zLElYoa
Malluce
  • 131
  • 1
  • 1
  • 7
0
votes
1 answer

opencv Androidruntime fatal

In the Open cv Tutorial1, i just want to use some Imgproc functions to deal with the input camera images on the callback function: public Mat onCameraFrame(CvCameraViewFrame inputFrame) . I just added this sentences at onCameraFram: public Mat…
0
votes
1 answer

Camera in a CardScrollView

Does anyone have some code samples that implements a Camera in a CardScrollView/CardScrollAdapter? I'm basically looking to create an adapter of cards with placeholders then, tap on a card, take a photo, then swipe to move to next card, and take…