The idea:
Get the secrets of innovating for your users. This article (video) gives you the approach, the design concept to innovate User Experience on your app. We share with you how we created an cool Ux on the Intel Ultrabook. To find out a novel way to interact with your PC, see the videos in this article.

Find out what happens when this idea gets into reality. Get the preview in the video below.
Video : Your Creative Idea + Ultrabook = ?.
Click below to watch 30 second video
Liked it?, How to create such UX innovation?
Liked the above demo?, we give you the secrets so that you too can develop such cool stuff.

By dynamically translating the left position of the image relative to the ultrabook's screen, we create a illusion of turning your camera angle. When the user rotates the device from Earths North Pole, event is fired.
Your code below gets invoked when the compass reading is changed. This args parameter has the current reading of sensor.
<csharp>
async void mymovementsensor_ReadingChanged(Compass sender, CompassReadingChangedEventArgs args)
{
CompassReading reading = args.Reading;
angleinDegress = reading.HeadingMagneticNorth;
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, updateYourUI);
}
</csharp>
Optimize for Fast & Fluid Experience:
To create fast and fluid experience, you can take advantage of a multicore CPU without(it is true!) writing complex multi-threaded code. Async programming model makes it easy to write code. Note the use of await and async C# keywords.

Design thinking and Ultrabook User Innovation:
The potential to innovate is left upto your imagniation. Start skecting your creative ideas on back of a paper, You can model your UI with design tools event before thinking of code. To find out how, watch the video walkthrough below.
The design below shows how the XAML Image UI Element's start position is shifted. The screen displays a section of image that spans across a larger width.

Video: How to develop your innovation?
Find out in 5 minutes. Watch a video tutorial on how we designed & created a Win 8 Panaroma app.
Summary:
This article and video helped you to develop your innovation on the Intel Technology Platforms. Why wait?, start innovating!


Comments
what about using a round panoramic camera, one with lets say 12 lenses that looks from right to left with out you moving the laptop or tablet, it will be a camera that will stick out a little so all 12 lenses have clear view and they record frames but not all at the same time,
or it can all record a the same time but diferent shots and a software can do the editing
Nice post, Rajagopal!