Real-Time Re-Textured Geometry Modeling Using Microsoft Hololens

Total Page:16

File Type:pdf, Size:1020Kb

Real-Time Re-Textured Geometry Modeling Using Microsoft Hololens Real-Time Re-Textured Geometry Modeling Using Microsoft HoloLens Samuel Dong* Tobias Hollerer¨ † University of California, Santa Barbara ABSTRACT information to build a custom experience based on the structure of We implemented live-textured geometry model creation with im- the surrounding environment, such as rendering decals or choosing mediate coverage feedback visualizations in AR on the Microsoft where units spawn. HoloLens. A user walking and looking around a physical space can While the HoloLens does scan the geometry of the environment, create a textured model of the space, ready for remote exploration it does not automatically apply color detail at all. The mesh only and AR collaboration. Out of the box, a HoloLens builds a triangle contains positions and normals. This prevents the out-of-the-box mesh of the environment while scanning and being tracked in a new HoloLens from being used for 3D scanning and other applications environment. The mesh contains vertices, triangles, and normals, but that use mesh color and/or texture for exporting or rendering. Exam- not color. We take the video stream from the color camera and use it ples of potential uses of color include scanning an object with surface to color a UV texture to be mapped to the mesh. Due to the limited texture and rendering virtual objects with real-world reflections and graphics memory of the HoloLens, we use a fixed-size texture. Since ambient color. the mesh generation dynamically changes in real time, we use an In this paper, we propose a real-time solution using the adaptive mapping scheme that evenly distributes every triangle of HoloLens’s built-in camera. Because the HoloLens is a device the dynamic mesh onto the fixed-size texture and adapts to new with limited memory, we did not want to have a memory require- geometry without compromising existing color data. Occlusion is ment that scales with the size of the environment, so we utilize a also considered. The user can walk around their environment and fixed-size texture. This texture operates as a standard UV texture continuously fill in the texture while growing the mesh in real-time. map, making exporting and integrating into existing applications We describe our texture generation algorithm and illustrate bene- very straightforward. We show the results of modeling both a small fits and limitations of our system with example modeling sessions. and large environment to show the effects of the adaptive texture Having first-person immediate AR feedback on the quality of mod- and consider the time required to capture these environments and eled physical infrastructure, both in terms of mesh resolution and the quality of the outcome. texture quality, helps the creation of high-quality colored meshes with this standalone wireless device and a fixed memory footprint in 2RELATED WORK real-time. Interactively rendering realistic image-based models of the real en- vironment has been a research topic for a while. Early research Index Terms: Computing methodologies—Computer graphics— focused on using image-based techniques to extract the geometric Graphics systems and interfaces—Mixed / augmented reality; Com- data and provide a virtual model. With the advent of depth cameras puting methodologies—Computer graphics—Image manipulation— and laser scanning, and the popularity of structure-from-motion tech- Texturing niques [5], acquiring geometric data is extremely practical. Color data can be acquired by taking pictures of the geometry from var- 1INTRODUCTION ious angles, and the camera position and orientation is sometimes Microsoft released the HoloLens, a standalone augmented reality available as well. headset with a stereoscopic 3D display, in early 2016. Equipped Newcombe et al.’s KinectFusion [12] shows building a dense with an infrared depth sensor and an inertial measurement unit, the geometric model of interior environments in real-time using an HoloLens continuously builds up a model of the environment it inexpensive depth sensor. This has been improved upon in Whelan is in, allowing objects that were positioned to remain fixed in the et al.’s Kintinuous paper [16], allowing for growing environments location no matter how far or where the user moves to. Due to its and conversion to a triangular mesh. standalone nature, it is meant to be worn as the user walks around Once a model has been built, image-based rendering still needs their environment, expanding the stored model as they go. It splits its to be done to make them look realistic. Debevec et al. [4] improved processing into three units: the CPU, GPU, and HPU, or holographic upon their previous view-dependent image-based rendering tech- processing unit. This allows the HoloLens to dedicate hardware to nique by introducing a real-time method for rendering geometric continuously track and model the environment while also supporting data from a set of images and poses. In their paper, the best im- intensive 3D graphical applications. ages were chosen by the current view angle and projected onto the The environment is scanned using the infrared laser and sensor, geometry. Because projective texturing colors geometry no matter generating an internal point cloud. The HoloLens automatically its visibility, the occlusion was dealt with by clipping the geometry processes the point cloud and converts it into a triangular mesh. This with occluding volumes. Buehler et al. [2] introduced unstructured mesh is used in a variety of manners, ranging from showing a 3D lumigraph rendering, a combination of view-dependent image-based cursor to providing anchor points for 3D objects. The mesh is also rendering with light field techniques to support arbitrary view lo- commonly used to provide occlusion for virtual objects, making cations and directions. It factors in the resolution of each view them feel truly positioned in the real space. Games can also use this and creates a blend of the best views based on their quality. Chen et al. [3] uses KinectFusion to acquire a high-quality mesh from *e-mail: samuel [email protected] the scene along with image frames. After some offline processing, †e-mail: [email protected] view-dependent texture projection is used to render the scene while factoring in occlusion. Care is taken to balance smooth transitions by 2018 IEEE Conference on Virtual Reality and 3D User Interfaces blending many frames and preserving view-dependent features, such 18-22 March, Reutlingen, Germany as specular highlights and reflections, by selecting fewer frames. 978-1-5386-3365-6/18/$31.00 ©2018 IEEE These methods render the model in real-time with highly accurate 231 Authorized licensed use limited to: Univ of Calif Santa Barbara. Downloaded on March 09,2021 at 05:23:03 UTC from IEEE Xplore. Restrictions apply. results, but they rely on a provided model and a dense set of images. If the real-time constraint is lifted, further optimizations for tex- 0 2 4 6 ture quality can be performed. Bernardini et al. [1] used both the 1 3 5 7 depth and color information when blending together multiple views based on a weight calculated on the confidence of individual pixels. Views were also aligned by utilizing features detected in the color 8 10 12 14 information to prevent ghosting. Similarly, Zhou and Koltun [17] reduced artifacts by optimizing the camera location and orientation 9 11 13 15 and image distortion based on photometric consistency. This allows for better texturing when geometric errors or lens distortion cause 16 18 20 misalignment. Maier et al. [11], on the other hand, improve vi- sual quality by merging multiple lower resolution color frames into 17 19 21 higher resolution ones with some filtering. This allows the texture to have higher resolution data for an object than what is provided by the original RGB camera frame. Using RGB-D (color and depth) information, Fechteler et al. [7] were able to texture a provided articulated model with the Kinect. The articulated mesh provides UV coordinates for a texture file. The images come from a continuous stream of RGB data. Because not Figure 1: Example layout with 22 triangles. The numbers show where all triangles are visible in any one frame, a set of frames are kept the triangles with specific global indices would be mapped to. The based on their angle and resolution. Each triangle references only size is 4, which holds a maximum of 32 triangles. one frame, and frames that do not provide much data are discarded to save memory. The Kinect has also been used to generate both color and geome- texture the set of meshes, UV coordinates must be provided for each try data. By using RANSAC and feature extraction to align views, vertex in every mesh. While there are many automated methods of Henry et al. [8] use frame to frame RGB-D data to construct a sparse unwrapping a 3D mesh onto a UV map, we chose a simple, efficient surface patch array. It also detects loops and closes them. Their method to cope with regular changes in geometry as the HoloLens method runs in real time and provides a compact representation of is building up the environment. indoor environments, but must store a set of keyframes for loop detection. Instead of using image features, Kerl et al. [9] use pho- 3.1 Mapping Triangles to a Fixed-Size Texture tometric error between all pixels in subsequent frames to provide Our method first assigns each triangle in the set of meshes a global higher quality pose estimation. By selecting keyframes and closing index. We iterate over the dictionary in order by GUID, which loops, accumulated drift between frames is minimized. Steinbrucker¨ ensures a consistent ordering of the meshes. Each mesh has an et al. [15] extend on that paper to use the tracking data to merge internal ordering of triangles.
Recommended publications
  • Samsung Announces New Windows-Based Virtual-Reality Headset at Microsoft Event 4 October 2017, by Matt Day, the Seattle Times
    Samsung announces new Windows-based virtual-reality headset at Microsoft event 4 October 2017, by Matt Day, The Seattle Times Samsung is joining Microsoft's virtual reality push, Microsoft also said that it had acquired AltspaceVR, announcing an immersive headset that pairs with a California virtual reality software startup that was Windows computers. building social and communications tools until it ran into funding problems earlier this year. The Korean electronics giant unveiled its Samsung HMD Odyssey at a Microsoft event in San ©2017 The Seattle Times Francisco recently. It will sell for $499. Distributed by Tribune Content Agency, LLC. The device joins Windows-based immersive headsets built by Lenovo, HP, Acer and Dell, and aimed for release later this year. Microsoft is among the companies seeking a slice of the emerging market for modern head-mounted devices. High-end headsets, like Facebook-owned Oculus's Rift and the HTC Vive, require powerful Windows PCs to run. Others, including the Samsung Gear VR and Google's Daydream, are aimed at the wider audience of people who use smartphones. Microsoft's vision, for now, is tied to the PC, and specifically new features in the Windows operating system designed to make it easier to build and display immersive environments. The company also has its own hardware, but that hasn't been on display recently. Microsoft's HoloLens was a trailblazer when it was unveiled in 2015. The headset, whose visor shows computer-generated images projected onto objects in the wearer's environment without obscuring the view of the real world completely, was subsequently offered for sale to developers and businesses.
    [Show full text]
  • Holographic Computer
    MECHANICAL ENGINEERING | DECEMBER 2018 | P.33 bioengineering WEARABLE Holographic Computer Microsoft’s HoloLens mixed reality headset is a breakthrough in human-computer interaction. STORY BY AGAM SHAH • ILLUSTRATION BY ZINA SAUNDERS he Kinect camera, which headset, Thyssenkrupp is equipping Microsoft released in 2010, elevator service technicians with brought unprecedented HoloLens to visualize and identify T levels of gesture and voice problems ahead of a job, and have interaction to video games. “When remote, hands-free access to technical we created Kinect for Xbox 360, and expert information when onsite. we aimed to build a device capable The company says that has helped of recognizing and understanding improve service times. Ford is also people so that computers could using HoloLens, enabling their design operate in ways that are more and engineering teams to visualize human,” said Alex Kipman, technical that projects the graphics onto a full-scale models in 3-D. They’ve fellow at Microsoft, who helped lens. As a user walks around a room converted processes that used to invent the camera. or turns his head, the position or take weeks down to days, and more Microsoft wanted to build on orientation of the graphical image is easily and securely share ideas across the success of the Kinect’s sensor altered so that it appears to the user the company and consider more technology by parlaying it into a as occupying a consistent location concepts than before. And NASA has radically new device—a mixed reality in space. provided HoloLens to astronauts on headset that would project computer- HoloLens has emerged as the go- the International Space Station as a generated images seemingly into real to device for engineers to integrate holographic instruction manual and a space.
    [Show full text]
  • New Realities Risks in the Virtual World 2
    Emerging Risk Report 2018 Technology New realities Risks in the virtual world 2 Lloyd’s disclaimer About the author This report has been co-produced by Lloyd's and Amelia Kallman is a leading London futurist, speaker, Amelia Kallman for general information purposes only. and author. As an innovation and technology While care has been taken in gathering the data and communicator, Amelia regularly writes, consults, and preparing the report Lloyd's does not make any speaks on the impact of new technologies on the future representations or warranties as to its accuracy or of business and our lives. She is an expert on the completeness and expressly excludes to the maximum emerging risks of The New Realities (VR-AR-MR), and extent permitted by law all those that might otherwise also specialises in the future of retail. be implied. Coming from a theatrical background, Amelia started Lloyd's accepts no responsibility or liability for any loss her tech career by chance in 2013 at a creative or damage of any nature occasioned to any person as a technology agency where she worked her way up to result of acting or refraining from acting as a result of, or become their Global Head of Innovation. She opened, in reliance on, any statement, fact, figure or expression operated and curated innovation lounges in both of opinion or belief contained in this report. This report London and Dubai, working with start-ups and corporate does not constitute advice of any kind. clients to develop connections and future-proof strategies. Today she continues to discover and bring © Lloyd’s 2018 attention to cutting-edge start-ups, regularly curating All rights reserved events for WIRED UK.
    [Show full text]
  • Microsoft Aims at Apple with High-End Pcs, 3D Software 26 October 2016
    Microsoft aims at Apple with high-end PCs, 3D software 26 October 2016 unlocking a more natural and immersive way to create on the thinnest display ever built," said Microsoft vice president Terry Myerson, The new PC has an ultra-HD 4.5K display, offering more pixels than most new high-definition televisions. It will be available in "limited quantities" for the upcoming holiday season, with more units available in 2017. The new device drew a mixed response from analysts. "Yes, this is very cool. But what's the market for a $3,000 computer you can draw on? How many people have that job?" asked Benedict Evans of the Microsoft chief executive officer Satya Nadella talks at a venture firm Andreessen Horowitz in a tweet. Microsoft news conference October 26, 2016 in New York But Avi Greengart at the research firm Current Analysis said the new Microsoft products "are Microsoft launched a new consumer offensive aimed at setting the high mark for the Windows Wednesday, unveiling a high-end computer that ecosystem." challenges the Apple iMac along with an updated Windows operating system that showcases three- dimensional content and "mixed reality." The US tech giant announced its first desktop computer, called Surface Studio, a $3,000 high- end "all-in-one" device that aims at creative professionals, a segment dominated by Apple. "We're creating a new category that transforms your desk into a creative studio," Microsoft chief executive Satya Nadella said at the unveiling in New York. With a large, 28-inch (71-centimeter) hinged touchscreen display touted as "the thinnest desktop monitor ever created," Surface Studio Microsoft Corporate VP of Devices, Panos Panay adds to the Microsoft lineup of tablet and laptop introduces Microsoft Surface Studio on October 26, 2016 devices for the premium segment.
    [Show full text]
  • Evaluating the Microsoft Hololens Through an Augmented Reality Assembly Application" (2017)
    Mechanical Engineering Conference Presentations, Mechanical Engineering Papers, and Proceedings 5-5-2017 Evaluating the Microsoft oloLeH ns through an augmented reality assembly application Gabriel Evans Iowa State University, [email protected] Jack Miller Iowa State University, [email protected] Mariangely Iglesias Pena Iowa State University, [email protected] Anastacia MacAllister Iowa State University, [email protected] Eliot H. Winer Iowa State University, [email protected] Follow this and additional works at: https://lib.dr.iastate.edu/me_conf Part of the Applied Mechanics Commons, and the Manufacturing Commons Recommended Citation Evans, Gabriel; Miller, Jack; Pena, Mariangely Iglesias; MacAllister, Anastacia; and Winer, Eliot H., "Evaluating the Microsoft HoloLens through an augmented reality assembly application" (2017). Mechanical Engineering Conference Presentations, Papers, and Proceedings. 179. https://lib.dr.iastate.edu/me_conf/179 This Article is brought to you for free and open access by the Mechanical Engineering at Iowa State University Digital Repository. It has been accepted for inclusion in Mechanical Engineering Conference Presentations, Papers, and Proceedings by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. Evaluating the Microsoft oloLeH ns through an augmented reality assembly application Abstract Industry and academia have repeatedly demonstrated the transformative potential of Augmented Reality (AR) guided assembly instructions. In the past, however, computational and hardware limitations often dictated that these systems were deployed on tablets or other cumbersome devices. Often, tablets impede worker progress by diverting a user's hands and attention, forcing them to alternate between the instructions and the assembly process. Head Mounted Displays (HMDs) overcome those diversions by allowing users to view the instructions in a hands-free manner while simultaneously performing an assembly operation.
    [Show full text]
  • Virtual & Augmented Reality
    EXCERPTED FROM THE ORIGINAL: See inside cover for details. FINANCIAL BACKING GLOBAL INTEREST SHIPPING OUT SELLING OUT INTEREST IN THE PAST READY TO BUILD A WAVE OF CONTENT ON THE WAY RETAIL VALUE HOME REDESIGN, REIMAGINED EASIER TO IMAGINE YOURSELF AT HOME Video • Jaunt The Ecosystem • NextVR Virtual Reality / Augmented Reality • VRSE • Oculus Story Studio • GoPro • IG Port Processors Games • TI Applications • Sony • Qualcomm • Ubisoft 3D Audio • STMicro Graphics • CCP Games • Nvidia • TI • Realtek • Oculus Story Studio • AMD • Wolfson • Himax • Tammeka Games • Qualcomm • Realtek • MediaTek • Pixel Titans • Intel • Capcom Augmented Reality Virtual Reality Engineering • Microsoft HoloLens • Facebook Oculus Head–mounted devices • Autodesk • Google Glass • Samsung Gear VR • Dassault Systèmes • Magic Leap • Google Cardboard • IrisVR • Atheer • HTC Vive • Visidraft • Osterhout Design • Sony PSVR • MakeVR Memory Group • Vuzix iWear (DRAM/SSD) • VR Union Claire • Micron Healthcare • Samsung • Psious • SK Hynix • zSpace • Toshiba • Conquer Mobile • 3D Systems Social • Altspace VR • High Fidelity • Podrift Commerce • Sixense {shopping} • Matterport {real estate} Display • Samsung • JDI Cameras • Himax • 360Heros • Crystal • GoPro Odyssey 3D Lenses • Nokia OZO • Wearality • Jaunt NEO • Zeiss • Matterport Pro 3D Components • Canon • Nikon Haptics • Largan • Alps Position/ Room Tracker • AAC • Hon Hai • Nidec • Pegatron • Flex • Jabil • HTC Motion Sensors • Leap Motion • InvenSense • TI • STMicro • Honeywell The Ecosystem Virtual Reality / Augmented
    [Show full text]
  • Mixed Reality
    Mixed Reality Matt Fedorovich Authorized Reseller Lead, Immersive Technology Agenda Part One 01 Remote Assist Overview Part Two 02 Device and Infrastructure Readiness Part Three 03 End User Readiness Part Four 04 Recent Stories Remote Work for the Future Remote Assistance Remote Collaboration • “See what I see” • Everyone in virtual space – AR, VR or MR • Leverage physical world for interaction • Leverage digital world for interaction • Cross-Platform • Cross-Platform • Integration into existing systems is key • Integration into existing systems is key • Solution : D365 Remote Assist • Solutions : Spatial.io & AltSpace VR Remote Assist Overview Work together from anywhere. Microsoft Dynamics 365 Dynamics 365 Remote Assist Empower technicians to collaborate more efficiently by working together from different locations with Dynamics 365 Remote Assist on HoloLens, Android, or iOS devices. Enabled by Microsoft Teams, OneDrive and Dynamics 365. Dynamics 365 Guides Operators learn during the flow of work by providing holographic instructions when and where they are needed. These instruction cards are visually tethered to the place where the work must be done, and can include images, videos, and 3D holographic models How It Works iOS & Android Device Microsoft HoloLens 2 Front Line Technician Remote Expert Technician needs help. Login to Remote Assist Receives call on their Teams Mobile or PC Application and calls expert Device Requires Device Requires Remote Assist App Remote Assist Microsoft Teams Teams License On iOS / Android License On PC or Mobile (w/ Video) Per user Remote Assist App OR On Microsoft HoloLens 2 Per Device Key Journey Points Envisioning & Planning Readiness & Support Innovation & Integration Accelerate Infrastructure Readiness Identify key components that are needed before you think about devices and end users.
    [Show full text]
  • Mixed Reality & Microsoft Hololens
    Mixed Reality & Microsoft HoloLens Laboratorio di Realtà Virtuale Manuel Pezzera – [email protected] Mixed Reality • “Mixed reality (MR) is a spectrum of immersive experiences, connecting and blending physical and digital worlds together in augmented-reality and virtual-reality applications” [cit. Microsoft] Mixed Reality Augmented and Virtual Reality • Virtual Reality: it tricks your eyes into thinking that you are somewhere else. • Augmented reality: it is an extra dimension over VR since it can show the real world around wearer with graphic overlayed. • AR can also totally immerse user just like VR by simply showing pixels everywhere with no transparency to the real world. • In virtual world, users are best advised to stay seated to avoid collision with physical objects which they cannot see in the real world. What is a hologram? • A hologram is an object like any other object in the real world, with only one difference: instead of being made of physical matter, a hologram is made entirely of light. • Holographic objects can be viewed from different angles and distances, just like physical objects. They can also interact with the environment (e.g., bouncing ball on a table) • Hologram do not offer any physical resistance when touched or pushed because they don’t have a mass. Mixed reality vs Augmented Reality • MR can be mentioned as an enhanced form of Augmented Reality (AR). In AR the visible natural environment is overlaid with a layer of digital content. • But the case is slightly different with MR, as virtual objects are integrated into and responsive to the real world. For instance, a virtual ball under your desk would be blocked from a user’s view unless he bends.
    [Show full text]
  • Neural Networks on Microsoft Hololens 2
    Institute of Parallel and Distributed Systems University of Stuttgart Universitätsstraße 38 D–70569 Stuttgart Bachelor Thesis Neural Networks on Microsoft HoloLens 2 Léon Lazar Course of Study: Informatik (Computer Science) Examiner: Prof. Dr. rer. nat. Dr. h. c. Kurt Rothermel Supervisor: Johannes Kässinger, M.Sc. Commenced: November 5, 2020 Completed: May 5, 2021 Abstract The goal of the present Bachelor thesis is to enable comparing different approaches of integrating Neural Networks in HoloLens 2 applications in a quantitative and qualitative manner by defining highly diagnostic criteria. Moreover, multiple different approaches to accomplish the integration are proposed, implemented and evaluated using the aforementioned criteria. Finally, the work gives an expressive overview of all working approaches. The basic requirements are that Neural Networks trained by TensorFlow/Keras can be used and executed directly on the HoloLens 2 without requiring an internet connection. Furthermore, the Neural Networks have to be integrable in Mixed/Augmented Reality applications. In total four approaches are proposed: TensorFlow.js, Unity Barracuda, TensorFlow.NET, and Windows Machine Learning which is an already existing approach. For each working approach a benchmarking application is developed which runs a common reference model on a test datatset to measure inference time and accuracy. Moreover, a small proof of concept application is developed in order to show that the approach also works with real Augmented Reality applications. The application uses a MobileNetV2 model to classify image frames coming from the webcam and displays the results to the user. All the feasible approaches are evaluated using the aforementioned evaluation criteria which include ease of implementation, performance, accuracy, compatibility with Machine Learning frameworks and pre-trained models, and integrability with 3D frameworks.
    [Show full text]
  • Validity of Hololens Augmented Reality Head Mounted Display for Measuring Gait Parameters in Healthy Adults and Children with Cerebral Palsy
    sensors Article Validity of Hololens Augmented Reality Head Mounted Display for Measuring Gait Parameters in Healthy Adults and Children with Cerebral Palsy Anne-Laure Guinet 1,2,* , Guillaume Bouyer 2 , Samir Otmane 2 and Eric Desailly 1 1 Pôle Recherche & Innovation, Fondation Ellen Poidatz, 77310 Saint-Fargeau-Ponthierry, France; [email protected] 2 IBISC Lab, University Paris-Saclay, University Evry, 91020 Evry, France; [email protected] (G.B.); [email protected] (S.O.) * Correspondence: [email protected] Abstract: Serious games are a promising approach to improve gait rehabilitation for people with gait disorders. Combined with wearable augmented reality headset, serious games for gait rehabilitation in a clinical setting can be envisaged, allowing to evolve in a real environment and provide fun and feedback to enhance patient’s motivation. This requires a method to obtain accurate information on the spatiotemporal gait parameters of the playing patient. To this end, we propose a new algorithm called HoloStep that computes spatiotemporal gait parameters using only the head pose provided by an augmented reality headset (Hololens). It is based on the detection of peaks associated to initial contact event, and uses a combination of locking distance, locking time, peak amplitude detection with custom thresholds for children with CP. The performance of HoloStep was compared during a walking session at comfortable speed to Zeni’s reference algorithm, which is based on kinematics Citation: Guinet, A.-L.; Bouyer, G.; and a full 3D motion capture system. Our study included 62 children with cerebral palsy (CP), Otmane, S.; Desailly, E.
    [Show full text]
  • Memory Task Performance Across Augmented and Virtual Reality
    Memory Task Performance across Augmented and Virtual Reality Pete Willemsen∗ William Jaros Charles McGregor Edward Downs† Maranda Berndt Alexander Passofaro Department of Computer Science Department of Communication University of Minnesota Duluth University of Minnesota Duluth Figure 1: Images showing the card matching memory task in the four technological conditions compared in this experiment: Immersive Virtual Reality with the HTC Vive, Table-top Touch Screen, Real and Augmented Reality with the Microsoft Hololens. ABSTRACT they contain can be thought to exist on a reality continuum [2]. The As commodity virtual reality and augmented reality hardware be- continuum spans the full range of realities that can be experienced comes more accessible, the opportunity to use these systems for and is anchored on one side with real environments and on the learning and training will increase. This study provides an ex- other side with virtual environments. A real, or analog, environment ploratory look at performance differences for a simple memory can be defined as an environment which is experienced without matching task across four different technologies that could easily the aid of a technological device. We chose a memory task where be used for learning and training. We compare time and number of participants flip playing cards as an example of a real, analog task attempts to successfully complete a memory matching game across and compared participants’ performance across three additional virtual reality, augmented reality, a large touchscreen table-top dis- environments to span the range of this reality continuum: table- play and a real environment. The results indicate that participants top touch screen, augmented reality (AR), and virtual reality (VR) took more time to complete the task in both the augmented reality environments.
    [Show full text]
  • Review of Microsoft Hololens Applications Over the Past Five Years
    applied sciences Review Review of Microsoft HoloLens Applications over the Past Five Years Sebeom Park , Shokhrukh Bokijonov and Yosoon Choi * Department of Energy Resources Engineering, Pukyong National University, Busan 48513, Korea; [email protected] (S.P.); [email protected] (S.B.) * Correspondence: [email protected]; Tel.: +82-51-629-6562; Fax: +82-51-629-6553 Abstract: Since Microsoft HoloLens first appeared in 2016, HoloLens has been used in various industries, over the past five years. This study aims to review academic papers on the applications of HoloLens in several industries. A review was performed to summarize the results of 44 papers (dated between January 2016 and December 2020) and to outline the research trends of applying HoloLens to different industries. This study determined that HoloLens is employed in medical and surgical aids and systems, medical education and simulation, industrial engineering, architecture, civil engineering and other engineering fields. The findings of this study contribute towards classifying the current uses of HoloLens in various industries and identifying the types of visualization techniques and functions. Keywords: head-mount display; HoloLens; augmented reality; mixed reality; virtual reality; visualization 1. Introduction Virtual reality (VR), augmented reality (AR) and mixed reality (MR) have been emerg- Citation: Park, S.; Bokijonov, S.; Choi, ing technologies for several years, but they are now able to generate realistic images, sounds Y. Review of Microsoft HoloLens and other sensations that allow users to experience a spectacular imaginary world [1]. It can Applications over the Past Five Years. be difficult to understand the difference between VR, AR and MR, at a glance.
    [Show full text]