Skip to main content

Google's Project Glass

What is Google's Project Glass?
Google's Project Glass is Google's attempt to make wearable computing mainstream, and it's effectively a smart pair of glasses with an integrated heads-up display and a battery hidden inside the frame. 

What's the difference between Google Glasses and Google Goggles?
Google Goggles is software, an app that can search the web-based on photos and scans. Google Glass is hardware.  

How does Project Glass work? 
According to well-informed Google blogger Seth Weintraub, Google's Project Glass glasses will probably use a transparent LCD or AMOLED display to put information in front of your eyeballs. It's location-aware thanks to a camera and GPS, and you can scroll and click on information by tilting your head, something that is apparently quite easy to master. Google Glasses will also use voice input and output.  

What are the Google Glass specifications?
The New York Times says that the glasses will run Android, will include a small screen in front of your eye, and will have motion sensors, GPS, and either 3G or 4G data connections.Weintraub says that the device is designed to be a stand-alone device rather than an Android phone peripheral: while Project Glass can connect to a smartphone via Wi-Fi or Bluetooth 4.0, "it communicates directly with the cloud". There is also a front-facing camera and a flash, although it's not a multi-megapixel monster, and the most recent prototype's screen isn't transparent.  

When will Google Glass be released?
Google Glass's release date hasn't been announced yet, although the New York Times reports that "the glasses will go on sale to the public by the end of the year. 

Indeed, in May 2012 Google co-founder Sergey Brin said he was hopeful that a Project Glass product would go on sale at some point in 2013.

Expect to see Project Glass go big in 2014.  

What is the Project Glass price? 
Sources say the glasses will be priced similar to a smartphone and may cost anywhere from $150 to $600, by incorporating sources say better $250 for a pair. 
  


Comments

Popular Posts

How to install draw.io Desktop Application on Kali Linux?

draw.io is an online diagramming open source web application which can be used as flowchart maker, network diagram software, ER diagram tool, UML diagramand more. It can be freely accessible website of draw.io or official Docker image or Desktop version for macOS, Linux & Windows. This guide includes detailed instructions about Desktop version installation on Kali Linux. Download the .deb build for draw.io sudo apt update sudo apt -y install wget curl curl -s https://api.github.com/repos/jgraph/drawio-desktop/releases/latest | grep browser_download_url | grep '\.deb' | cut -d '"' -f 4 | wget -i - Install with dpkg command sudo apt -f install ./drawio-amd64-*.de When application is installed, launch the application with following command. drawio Now application is ready to use. Click on " Create New Diagram"  to create new project or click on " Open Existing Diagram " to edit. ...

What is Honeypot?

A  honeypot is a security mechanism that creates a virtual trap to lure attackers. Simply we can say that this is a  decoy box residing inside your network demilitarized zone  (DMZ), set up by a security professional to trap or aid in locating hackers, or to draw them  away from the real target system. Since this a  decoy system , a malicious attacker might try to attack; software on  the system can log information about the attacker such as the IP address. This information  can be used to try to locate the attacker either during or after the attack. Honeypots vary based on design and deployment models, but they are all decoys intended to look like legitimate, vulnerable systems to attract cyber criminals. Type of Honeypot Production Honeypot : Used by companies and corporations for the purpose of researching the motives hackers as well ass diverting and mitigating the risk of attacks on the overall network. Research Honeypot : Used by nonprofit organi...

How to install Oracle Virtualbox in Ubuntu?

Introduction VirtualBox is a powerful free tool offered by Oracle for running an operating system on your computer virtually. In this tutorial lets learn how to install VirtualBox on Ubuntu. Installation 1. Open a terminal or press Ctrl + Alt +T 2. Enter the following command to all the packages or dependencies.      sudo apt-get update ( make sure to give the root password) 3. Run the following command to download and install Virtualbox     sudo apt-get install vrtualbox virtualbox-ext-pack That's all! VirtualBox has been successfully installed on your Ubuntu machine, and you can start using it.