Skip to main content

How to create AR Glasses

In this blog, I will talk about how to create AR Glasses using the current technologies available.

This is about creating a practical pair of glasses one can wear daily.

I have three versions.

- Basic AR Glasses
- Sports AR Glasses
- Ultimate AR Glasses


Basic AR Glasses

What is:
- A practical pair of glasses one can wear daily.
- Wirelessly connected to a computing platform.
- This computing platform can be a standalone platform.

Computing Platform
- If we create our AR Glasses to use iPhone or Android phone, we don't have to ask our users to carry a separate computing platform.
- But we will be dependent on Apple, Google or Samsung eco system.
- This can be a stand alone platform.
- If it is a stand alone platform, it should be able to charge AR Glasses directly from it, wired or wirelessly.
- If it is a standalone platform, it should be a smart phone customized for AR Glasses.
- If we plan to make a non-smartphone platform to replace a smartphone, sorry to say we don't have the technology advancements in the next 15 years to make this happen.
- So, as a Trojan hours, its beginning should be dependent upon the user's existing smartphone.
- Or. replace the user's smartphone with a new type of a smartphone that beats the current smartphone Apple or Google.


Sports AR Glasses

What is:
- A practical pair of glasses one can wear in sports activity.
- eg) Hiking, Running, Swimming, Skiing, Surfing, etc.
- Water-Proof
- Dirt-Proof
- Battery should last an hour or two.

Ultimate AR Glasses

What is:
- A practical pair of glasses one can wear in all activities
- May meet the military standards and requirements
- Only this pair will deliver the content not possible in all types of AR Glasses above.
- Hint:
-- This will use the advancements in AI, Computer Vision, Physics and Optics.
-- No, I'm not taking about WaveGuides Display.  That's 1980's military technology.
-- There are some advancements in these technologies which will be better than what others can create in the next 20 years.


Pricing
- Basic AR Glasses: under $250
- Sports AR Glasses: under $350
- Ultimate AR Glasses: under $550

Content
- I know what type of the contents to have to make these AR Glasses successful products. 
- I won't disclose them here, but you can contact me for more info.
- No, I'm not taking about displaying the navigation, weather, health info, etc.
- That doesn't make our customers wants to buy our AR Glasses.





Comments

Anonymous said…
This comment has been removed by a blog administrator.

Popular posts from this blog

Calculating camera extrincs

Before we talk about the projection matrix of the depth correspondces, we need to know two things: - Camera extrinsics - Camera intrinsics Camera extrinsics maps the world coorinates to the camera coordinates. For the simplicity of the camera, it is a pinhole camera without lenses.  I'll talk about the lenses, the focal length, the lense aberation, the pixel sensor dimension, etc in Camera intrincs. So, locating an object in two images and projecting in the camera space is not that straight. But, it will be a straight process with the application of Machine Learning. I'll talk about the next part of the series in applying the deep neural network to optimizing the homographic projection and have it robust in low texture settings including low light. Deep Neural Network - Estimating Homography to address: - low texture environment - outside light conditions ( gamma > 2kLs) - robust as or better than SfM or other SLAM techniquese First, we need to locate the ...

How to improve the traditional ASR using Connectionist Temporal Classification

The traditional Automatic Speech Recognition (ASR) performs at about 85% accuracy rate.  At this rate, ASR users are often frustrated with the experience with using such a system. The tradition ASR is often fragile: 1) requires extensive modification of parameters, just to make it work. 2) requires extensive understanding of a language model and a acoustic model. 3) doesn't scale well to multiple languages. 4) hyper-sensitive to speaker variants. Deep Learning on the acoustic model has been introduced, but not much of gain in the accuracy. What if, we can do a DL from end to end? Connectionist Temporal Classification (2006) introduces an idea of using FFT on the frequency of a recording of a voice command and constructs a spectrogram at 8kHz.  At each spectrogram interval, a DL neural network can be assigned, individually. The basic idea is to have RNN output neurons to encode distribution over "symbols". The traditional ASR uses a phone...

How to train a neural network to retrieve 3D maps from videos

This blog is about how to train a neural network to extract depth maps from videos of moving people captured with a monocular camera. Note: With a monocular camera, extracting the depth map of moving people is difficult.  Difficulty is due to the motion blur and the rolling shutter of an image.  However, we can overcome these limitations by predicting the depth maps by the model trained with a generated dataset using SfM and MVS from the normalized videos. This normalized dataset can be the basis of the training set for the neural network to automatically extract the accurate depth maps from a typical video footage, without any further assistance from a MVS. To start this project with a SfM and a MVS, we will use TUM Dataset. So, the basic idea is to use SfM and Multiview Stereo to estimate depth, while serves as supervision during training. The RGB-D SLAM reference implementation from these papers are used: - RGB-D Slam (Robotics OS) - Real-time 3D Visual SLAM ...