A Multitouchless Interface Expanding User Interaction

Total Page:16

File Type:pdf, Size:1020Kb

A Multitouchless Interface Expanding User Interaction Interacting beyond the Screen A Multitouchless Interface Expanding User Interaction Philip Krejov, Andrew Gilbert, and Richard Bowden ■ University of Surrey ultitouch technology is now com- In contrast, our approach detects only fingertips monplace across modern devices and but does so without machine learning and a large provides direct interaction with an ap- amount of training data. Its real-time methodol- Mplication’s GUI. However, interaction is limited ogy uses geodesic maxima on the hand’s surface to the 2D plane of the display. The detection and instead of its visual appearance, which is efficient tracking of fingertips in 3D, independent of the to compute and robust to both the pose and en- display, opens up multitouch to new application vironment. With this methodology, we created a areas, ranging from medical analysis in sterile en- “multitouchless” interface that allows direct in- vironments to home entertainment and gaming. teraction with data through finger tracking and Furthermore, the additional dimension of interac- gesture recognition.3 tion provides new avenues for UI design. Extending interaction beyond surfaces within Unfortunately, using gloves, the operator’s physical reach (see Figure 1) pro- specialized hardware, or multi- vides greater scope for interaction. We can eas- This interface tracks users’ camera stereo rigs to accurately ily extend the user’s working space to walls or the hands and fingers in 3D, using track the hands limits the tech- entire environment. Our approach also achieves a Microsoft Kinect sensor. The nology’s applications. Alterna- real-time tracking of up to four hands on a stan- system tracks up to four hands tively, detecting and tracking dard desktop computer. This opens up possibilities simultaneously on a standard fingertips in real-time video is for collaboration, especially because the workspace desktop computer. From this difficult due to the variability of isn’t limited by the display’s size. tracking, the system identifies the environment, the fast motion Our primary use of multitouchless interac- gestures and uses them for of the hands, and the high degree tion has been in the Making Sense project (www. interaction. of freedom of finger movement. making-sense.org), which employs data-mining The Leap Motion, an infrared and machine-learning tools to allow the discovery stereo sensor tailored for hand of patterns that relate images, video, and text. It interaction, accurately tracks fingertips, enabling combines multitouchless interaction and visual- interaction with existing multitouch applications. ization to let analysts quickly However, it has a limited workspace allowing only 1 the hands to be tracked. Alternatively, using a ge- ■ visualize data, neric depth sensor allows both the body and hands ■ summarize the data or subsets of the data, to be tracked for interaction. Cem Keskin and his ■ discriminatively mine rules that separate one colleagues created a means of full hand pose es- dataset from another, 2 timation that can also classify hand shapes. This ■ find commonality between data, approach, however, requires significant quantities ■ project data into a visualization space that of synthetic data. (For more on previous research shows the semantic similarity of the different on hand pose estimation and interactive displays, items, and see the related sidebars.) ■ group and categorize disparate data types. 50 May/June 2014 Published by the IEEE Computer Society 0272-1716/14/$31.00 © 2014 IEEE Related Work in Hand Pose Tracking and Estimation xtensive research has focused on analyzing hands for and his colleagues applied geodesic distances to locate Euse in computer interaction. This includes systems that the body skeleton.7 We also employ geodesic extrema, identify fingertip locations, because hand tracking is often but for finger detection, and we use Dijkstra’s algorithm to the first stage in finding the fingertips. efficiently identify the candidate regions. Model-based tracking is a popular way to infer finger- tip locations1 and account for large-scale occlusion.2 Such approaches can achieve 15 fps for a single hand, but this References is still too slow for smooth interaction. Our approach (see 1. N. Oikonomidis, I. Kyriazis, and A. Antonis, “Efficient Model- the main article) can achieve 30 fps for four hands. Based 3D Tracking of Hand Articulations Using Kinect,” Proc. Many researchers optimized model fitting with the British Machine Vision Conf., 2011, pp. 101.1–101.11. assistance of devices attached to the user. Motion capture 2. H. Hamer et al., “Tracking a Hand Manipulating an Object,” is a common example of this; it uses markers at key loca- Proc. 2009 IEEE Int’l Conf. Computer Vision (ICCV 09), 2009, pp. tions on the hand, sometimes including the wrist. Andreas 1475–1482. Aristidou and Joan Lasenby employed markers to reduce 3. A. Aristidou and J. Lasenby, “Motion Capture with Constrained the complexity of mapping a model to the full structure of Inverse Kinematics for Real-Time Hand Tracking,” Proc. 2010 the hand.3 Int’l Symp. Communications, Control and Signal Processing After obtaining depth information from a structured- (ISCCSP 10), 2010, pp. 1–5. light camera, Jagdish Raheja and his colleagues removed 4. J.L. Raheja, A. Chaudhary, and K. Singal, “Tracking of the background.4 Then, they used a large circular filter Fingertips and Centers of Palm Using Kinect,” Proc. 2011 to remove the palm and obtain the fingers’ masks. They Int’l Conf. Computational Intelligence, Modeling and Simulation located each fingertip by finding the point closest to the (CIMSiM 11), 2011, pp. 248–252. camera under each finger mask. To find fingers, Georg 5. G. Hackenberg, R. McCall, and W. Broll, “Lightweight Palm Hackenberg and his colleagues exploited the understand- and Finger Tracking for Real-Time 3D Gesture Control,” Proc. ing that fingers comprise tips and pipes.5 Employing 2011 IEEE Virtual Reality Conf. (VR 11), 2011, pp. 19–26. features previously applied to body pose estimation, Cem 6. C. Keskin et al., “Real Time Hand Pose Estimation Using Depth Keskin and his colleagues trained a random forest using a Sensors,” Proc. 2011 IEEE Computer Vision Workshops, 2011, pp. labeled model.6 This forest classified the regions of a cap- 1228–1234. tured hand on a per-pixel basis. They then used a support 7. C. Plagemann et al., “Real-Time Identification and Localization vector machine to estimate the pose. of Body Parts from Depth Images,” Proc. 2010 IEEE Int’l Conf. Using a time-of-flight camera, Christian Plagemann Robotics and Automation (ICRA 10), 2010, pp. 3108–3113. Visualization provides an intuitive understanding of large, complex datasets, while interaction pro- vides an intuitive interface to complex machine- learning algorithms. Figure 1 shows the system in use. Tracking Fingertips A Microsoft Kinect serves as the sensor. First, we capture the depth image and calibrate the point cloud. We locate and separate hand blobs with re- spect to the image domain. Processing each hand in parallel, we build a weighted graph from the real-world point information for each hand’s sur- face. An efficient shortest-path algorithm traverses Figure 1. Multitouchless interaction with Making Sense’s main screen. the graph to find candidate fingertips. We then -fil The user is employing the selection gesture to choose the data subset to ter these candidates on the basis of their location mine. relative to the center of the hand and the wrist, and use them in a temporally smoothed model of the user’s face using a standard face detector. This the fingertip locations. provides the subject’s location for each frame. Using the point cloud derived from the calibrated depth Hand and Forearm Segmentation information (the distance from the Kinect), we find For each color frame from the Kinect, we locate the bounding box of the closest face, which we as- IEEE Computer Graphics and Applications 51 Interacting beyond the Screen Related Work in Interactive Displays ohn Underkoffler at MIT designed the gesture-based Jcomputer interface featured in the 2002 film Minority Report. An interface based on that concept is available from Oblong Industries (www.oblong.com), but its reliance on specialized hardware limits it to custom installations. However, the Microsoft Kinect has brought new levels of interaction to consumers. In an early example of apply- ing the Minority Report interaction paradigm to the Kinect, Garratt Gallagher, from the MIT Computer Science and Artificial Intelligence Laboratory, used the Point Cloud Library (http://pointclouds.org) to track hands (see Figure A1 and www.csail.mit.edu/taxonomy/term/158). The HoloDesk used head and hand tracking to let users inter- act with 3D virtual objects through the screen.1 The Space Top extended this by developing a desktop interface (see Figure A2).2 6D Hands used two webcams to perform pose estimation and tracking, enabling a design-and- assembly application with virtual object manipulation.3 OmniTouch was a shoulder-mounted interface that displayed graphics on users’ hands, held objects, walls, and tables.6 It captured user interaction through a depth sensor and used a pico projector to project a multitouch overlay on the target surface. It also tracked the surface’s (1) plane, letting users adjust the projected image to maintain the overlay. Because the collaboration of users is important, ap- proaches that let multiple people use a system in real time are desirable. In research by Alexander Kulik and his col- leagues, six people are able to interact with the same projec- tive warping screen.4 The T(ether) application used infrared markers to track multiple hands interacting with a virtual environment.5 Users viewed this environment on a tablet computer, which was also tracked through infrared markers. Projectors are the typical means of presenting infor- mation to multiple users and allow collaborative work. (2) Andrew Wilson and his colleagues developed a steerable projector that presents information on any surface in a Figure A.
Recommended publications
  • Inverse Kinematic Infrared Optical Finger Tracking
    Inverse Kinematic Infrared Optical Finger Tracking Gerrit Hillebrand1, Martin Bauer2, Kurt Achatz1, Gudrun Klinker2 1Advanced Realtime Tracking GmbH ∗ Am Oferl¨ 3 Weilheim, Germany 2Technische Universit¨atM¨unchen Institut f¨urInformatik Boltzmannstr. 3, 85748 Garching b. M¨unchen, Germany e·mail: gerrit.hillebrand@ar-tracking.de Abstract the fingertips are tracked. All further parameters, such as the angles between the phalanx bones, are Human hand and finger tracking is an important calculated from that. This approach is inverse input modality for both virtual and augmented compared to the current glove technology and re- reality. We present a novel device that overcomes sults in much better accuracy. Additionally, the the disadvantages of current glove-based or vision- device is lightweight and comfortable to use. based solutions by using inverse-kinematic models of the human hand. The fingertips are tracked by an optical infrared tracking system and the pose of the phalanxes is calculated from the known anatomy of the hand. The new device is lightweight and accurate and allows almost arbitrary hand movement. Exami- nations of the flexibility of the hand have shown that this new approach is practical because ambi- guities in the relationship between finger tip posi- tions and joint positions, which are theoretically possible, occur only scarcely in practical use. Figure 1: The inverse kinematic infrared optical finger tracker Keywords: Optical Tracking, Finger Tracking, Motion Capture 1 Introduction 1.1 Related Work While even a standard keyboard can be seen For many people, the most important and natural as an input device based on human finger mo- way to interact with the environment is by using tion, we consider only input methods that allow their hands.
    [Show full text]
  • Airpen: a Touchless Fingertip Based Gestural Interface for Smartphones and Head-Mounted Devices
    AirPen: A Touchless Fingertip Based Gestural Interface for Smartphones and Head-Mounted Devices Varun Jain Ramya Hebbalaguppe varun.in@tcs.com ramya.hebbalaguppe@tcs.com TCS Research TCS Research New Delhi, India New Delhi, India ABSTRACT Hand gestures are an intuitive, socially acceptable, and a non-intrusive interaction modality in Mixed Reality (MR) and smartphone based applications. Unlike speech interfaces, they tend to perform well even in shared and public spaces. Hand gestures can also be used to interact with smartphones in situations where the user’s ability to physically touch the device is impaired. However, accurate gesture recognition can be achieved through state-of-the-art deep learning models or with the use of expensive sensors. Despite the robustness of these deep learning models, they are computationally heavy and memory hungry, and obtaining real-time performance on-device without additional hardware is still a challenge. To address this, we propose AirPen: an analogue to pen on paper, but in air, for in-air writing and gestural commands that works seamlessly in First and Second Person View. The models are trained on a GPU machine and ported on an Android smartphone. AirPen comprises of three deep learning models that work in tandem: MobileNetV2 for hand localisation, our custom fingertip regression architecture followed by a Bi-LSTM model for gesture classification. The overall framework works in real-time on mobile devices and achieves a classification accuracy of 80% with an average latency of only 0:12 s. Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page.
    [Show full text]
  • Auraring: Precise Electromagnetic Finger Tracking
    AuraRing: Precise Electromagnetic Finger Tracking FARSHID SALEMI PARIZI∗, ERIC WHITMIRE∗, and SHWETAK PATEL, University of Washington Fig. 1. AuraRing is 5-DoF electromagnetic tracker that enables precise, accurate, and fine-grained finger tracking for AR, VR and wearable applications. Left: A user writes the word "hello" in the air. Right: Using AuraRing to play a songinamusic application on a smart glass. Wearable computing platforms, such as smartwatches and head-mounted mixed reality displays, demand new input devices for high-fidelity interaction. We present AuraRing, a wearable magnetic tracking system designed for tracking fine-grained finger movement. The hardware consists of a ring with an embedded electromagnetic transmitter coil and a wristband with multiple sensor coils. By measuring the magnetic fields at different points around the wrist, AuraRing estimates thefive degree-of-freedom pose of the ring. We develop two different approaches to pose reconstruction—a first-principles iterative approach and a closed-form neural network approach. Notably, AuraRing requires no runtime supervised training, ensuring user and session independence. AuraRing has a resolution of 0:1 mm and a dynamic accuracy of 4:4 mm, as measured through a user evaluation with optical ground truth. The ring is completely self-contained and consumes just 2:3 mW of power. CCS Concepts: • Human-centered computing → Interaction devices; Ubiquitous and mobile computing. Additional Key Words and Phrases: Electromagnetic tracking, mixed reality, wearable, input, finger tracking ACM Reference Format: Farshid Salemi Parizi, Eric Whitmire, and Shwetak Patel. 2019. AuraRing: Precise Electromagnetic Finger Tracking. Proc. ACM Interact. Mob. Wearable Ubiquitous Technol. 3, 4, Article 150 (December 2019), 28 pages.
    [Show full text]
  • Lightweight Palm and Finger Tracking for Real-Time 3D Gesture Control
    Lightweight Palm and Finger Tracking for Real-Time 3D Gesture Control Georg Hackenberg* Rod McCall‡ Wolfgang BrollD Fraunhofer FIT Fraunhofer FIT Fraunhofer FIT Freehand multi-touch has been explored within various ABSTRACT approaches, e.g. Oblong’s g-speak1, after initially having been We present a novel technique implementing barehanded introduced in the popular Hollywood movie “Minority Report”. interaction with virtual 3D content by employing a time-of-flight They usually depended heavily on hand-worn gloves, markers, camera. The system improves on existing 3D multi-touch systems wrists, or other input devices, and typically did not achieve the by working regardless of lighting conditions and supplying a intuitiveness, simplicity and efficiency of surface (2D) based working volume large enough for multiple users. Previous multi-touch techniques2. In contrast to those approaches, the goal systems were limited either by environmental requirements, of our approach was to use barehanded interaction as a working volume, or computational resources necessary for real- replacement for surface based interaction. time operation. By employing a time-of-flight camera, the system Only a vision-based approach will allow for freehand and is capable of reliably recognizing gestures at the finger level in barehanded 3D multi-touch interaction. The system must also real-time at more than 50 fps with commodity computer hardware provide sufficient solutions for the following four steps: detection using our newly developed precision hand and finger-tracking of hand position without prior knowledge of existence; for each algorithm. Building on this algorithm, the system performs appearance determine pose from image cues; track appearances gesture recognition with simple constraint modeling over over time; recognize gestures based on their trajectory and pose statistical aggregations of the hand appearances in a working information.
    [Show full text]
  • Perception-Action Loop in the Experience of Virtual Environments
    Perception-Action Loop in the Experience of Virtual Environments by Seung Wook Kim A dissertation submitted in partial satisfaction of the requirements for the degree of Doctor of Philosophy in Architecture and the Designated Emphasis in New Media in the Graduate Division of the University of California, Berkeley Committee in charge: Professor Yehuda E. Kalay, Chair Professor Galen Cranz Professor John F. Canny Fall 2009 Abstract Perception-Action Loop in the Experience of Virtual Environments by Seung Wook Kim Doctor of Philosophy in Architecture and the Designated Emphasis in New Media University of California, Berkeley Professor Yehuda Kalay, Chair The goal of this work is to develop an approach to the design of natural and immersive interaction methods for three-dimensional virtual environments. My thesis is that habitation and presence in any environment are based on a continuous process of perception and action between a person and his/her surroundings. The current practice of virtual environments, however, disconnects this intrinsic loop, separating perception and action into two different ‘worlds’—a physical one (for perception) and a virtual one (for action). This research is aimed at bridging the gap between those two worlds. Being drawn from perceptual philosophy and psychology, the theoretical study in this dissertation identifies three embodiments of natural perception-action loop: direct perceptual acts, proprioceptive locomotion, and motor intentionality. These concepts form the basis for the interaction methods proposed in this work, and I demonstrate these methods by implementing pertinent prototype systems. First, I suggest a view-dependent, non-planar display space that supports natural perceptual actions, thereby enhancing our field of view as well as depth perception.
    [Show full text]
  • Finger Tracking for Interaction in Augmented Environments
    Finger tracking for interaction in augmented environments ;+ + Klaus Dorfmuller-Ulhaas¨ ∗ , Dieter Schmalstieg ∗Imagination Computer Services, Austria +Vienna University of Technology, Austria klaus, dieter @ims.tuwien.ac.at f g Abstract 1 Introduction In order to convey a sense of immersion, a virtual envi- Optical tracking systems allow three-dimensional input ronment (VE) system must not only present a convincing for virtual environment applications with high precision and visual rendering of the simulated objects, but also allow to without annoying cables. Spontaneous and intuitive inter- manipulate them in a fast, precise, and natural way. Rather action is possible through gestures. In this paper, we present than relying on mouse or keyboard, direct manipulation of a finger tracker that allows gestural interaction and is sim- virtual objects is enabled by employing tracking with six de- ple, cheap, fast, robust against occlusion and accurate. It grees of freedom (6DOF). Frequently, this is done via hand- is based on a marked glove, a stereoscopic tracking system held props (such as flying mouse or wand) that are fitted and a kinematic 3-d model of the human finger. Within our with magnetic trackers. However, this technology can only augmented reality application scenario, the user is able to offer limited quality because it is inherently tethered, inac- grab, translate, rotate, and release objects in an intuitive curate and susceptible to magnetic interference. Early on, way. We demonstrate our tracking system in an augmented optical tracking has been proposed as an alternative. One reality chess game allowing a user to interact with virtual main reason why optical tracking is so attractive is because objects.
    [Show full text]
  • Arxiv:2103.04380V1 [Cs.HC] 7 Mar 2021 Environmental Context and Interaction Context As Much As Possible
    A Full Body Avatar-Based Telepresence System for Dissimilar Spaces Leonard Yoon* Dongseok Yang† Korea Advanced Institute of Science and Technology Korea Advanced Institute of Science and Technology Choongho Chung‡ Sung-Hee Lee§ Korea Advanced Institute of Science and Technology Korea Advanced Institute of Science and Technology Figure 1: Our telepresence system allows for different room environments by retargeting the user’s placement and deictic gesture to the remote avatar so as to preserve the user’s context of placement and interaction. In this figure, a user in the left space is sitting facing a display and pointing at a point in the display. The user is represented in the right space by a male avatar sitting on the right side of a display, pointing at the corresponding point in the display. A user sitting in front of the display in the right space is represented by a female avatar sitting to the left of the display in the left space. Small figures are user’s egocentric views. ABSTRACT However, in the case of using a whole space of two rooms with We present a novel mixed reality (MR) telepresence system enabling different shapes and object arrangements, directly placing an avatar a local user to interact with a remote user through full-body avatars with respect to the spatial relation between a user, an avatar, and in their own rooms. If the remote rooms have different sizes and shared objects of interest may cause a discrepancy, for instance, an furniture arrangements, directly applying a user’s motion to an avatar avatar sitting in the air or penetrating some objects.
    [Show full text]
  • Fine-Grained Device-Free Tracking Using Acoustic Signals
    Strata: Fine-Grained Device-Free Tracking Using Acoustic Signals ABSTRACT it is more natural to play games and interact with VR/AR Next generation devices, such as virtual reality (VR), aug- objects using hands directly. mented reality (AR), and smart appliances, demand a simple and intuitive way for users to interact with them. To ad- Challenges: Enabling accurate device-free tracking is par- dress such needs, we develop a novel acoustic based device- ticularly challenging. In such a case, reflected signal has to free tracking system, called Strata, to enable a user to inter- be used for tracking. Reflected signal is much weaker than act with a nearby device by simply moving his finger. In the directly received signal (e.g., in free space, the directly 2 Strata, a mobile (e.g., smartphone) transmits known audio received signal attenuates by 1=d whereas the reflected sig- 4 signals at an inaudible frequency, and analyzes the received nal attenuates by 1=d , where d is the distance between the signal reflected by the moving finger to track the finger loca- device and the target to be tracked). Moreover, it is more dif- tion. To explicitly take into account multipath propagation, ficult to handle multiple reflection paths in device-free track- the mobile estimates the channel impulse response (CIR), ing. In device-based tracking, one may rely on finding the which characterizes signal traversal paths with different de- first arriving signal since the straight-line path between the lays. Each channel tap corresponds to the multipath effects sender and receiver is shortest.
    [Show full text]
  • A Vision-Based Approach for Human Hand Tracking and Gesture Recognition
    University of Windsor Scholarship at UWindsor Electronic Theses and Dissertations Theses, Dissertations, and Major Papers 2004 A vision-based approach for human hand tracking and gesture recognition. Jiangnan Lu University of Windsor Follow this and additional works at: https://scholar.uwindsor.ca/etd Recommended Citation Lu, Jiangnan, "A vision-based approach for human hand tracking and gesture recognition." (2004). Electronic Theses and Dissertations. 871. https://scholar.uwindsor.ca/etd/871 This online database contains the full-text of PhD dissertations and Masters’ theses of University of Windsor students from 1954 forward. These documents are made available for personal study and research purposes only, in accordance with the Canadian Copyright Act and the Creative Commons license—CC BY-NC-ND (Attribution, Non-Commercial, No Derivative Works). Under this license, works must always be attributed to the copyright holder (original author), cannot be used for any commercial purposes, and may not be altered. Any other use would require the permission of the copyright holder. Students may inquire about withdrawing their dissertation and/or thesis from this database. For additional inquiries, please contact the repository administrator via email (scholarship@uwindsor.ca) or by telephone at 519-253-3000ext. 3208. A Vision-Based Approach for Human Hand Tracking and Gesture Recognition By Jiangnan Lu A Thesis Submitted to the Faculty of Graduate Studies and Research through Computer Science in Partial Fulfillment of the Requirements for the Degree of Master of Science at the University of Windsor Windsor, Ontario, Canada 2004 © 2004 Jiangnan Lu Reproduced with permission of the copyright owner. Further reproduction prohibited without permission.
    [Show full text]
  • Implementation of a 3D Hand Pose Estimation System John-Certus Lack BJ.: 2014 Institut Für Robotik Und Mechatronik IB.Nr.: 572-2014-22
    Drucksachenkategorie Pose Estimation System Estimation Pose 3D Hand a of Implementation John-Certus Lack BJ.: 2014 Institut für Robotik und Mechatronik IB.Nr.: 572-2014-22 BACHELORARBEIT IMPLEMENTATION OF A 3D HAND POSE ESTIMATION SYSTEM Freigabe: Der Bearbeiter: John-Certus Lack Betreuer: Dr.-Ing. Ulrike Thomas Der Institutsdirektor Dr. Alin Albu-Schäffer Dieser Bericht enthält 65 Seiten, 41 Abbildungen und 7 Tabellen Ort: Oberpfaffenhofen Datum: 28.08.2014 Bearbeiter: John-Certus Lack Zeichen: 74703 Technische Universit¨at Munchen¨ Institute for Media Technology Prof. Dr.-Ing. Eckehard Steinbach Bachelor Thesis Implementation of a 3D Hand Pose Estimation System Author: John-Certus Lack Matriculation Number: 03620284 Address: Steinickeweg 7 80798 Munich Advisor: M.Sc. Nicolas Alt (TUM) Dr.-Ing. Ulrike Thomas (DLR) Begin: 01.04.2014 End: 11.09.2014 Abstract Chair of Media Technology Bachelor of Science Implementation of a 3D Hand Pose Estimation System by John-Certus Lack The variety of means for human-computer interaction has experienced a surge in recent years and currently covers several methods for haptic communication and voice control. These technologies have proven to be a vital tool for information exchange and are already a fundamental part of daily human interaction. However, they are mainly restricted to a two dimensional input and the interpretation of formulated commands. To overcome these limitations, several approaches of 3D hand pose detection systems were made that often imply computation intensive models or large databases with synthetic training sets. Therefore, this thesis presents a 3D hand pose estimation system that provides real-time processing at low computational cost. The first parts describes methods for the hand-background segmentation and the tracking of specific feature points, which include the center of the palm and the fingertips.
    [Show full text]
  • Exploring 3D User Interface Technologies for Improving the Gaming Experience
    EXPLORING 3D USER INTERFACE TECHNOLOGIES FOR IMPROVING THE GAMING EXPERIENCE by ARUN KUMAR KULSHRESHTH M.S. University of Central Florida, 2012 M.Tech. Indian Institute of Technology Delhi, 2005 A dissertation submitted in partial fulfilment of the requirements for the degree of Doctor of Philosophy in the Department of Computer Science in the College of Engineering & Computer Science at the University of Central Florida Orlando, Florida Spring Term 2015 Major Professor: Joseph J. LaViola Jr. c 2015 Arun Kumar Kulshreshth ii ABSTRACT 3D user interface technologies have the potential to make games more immersive & engaging and thus potentially provide a better user experience to gamers. Although 3D user interface technolo- gies are available for games, it is still unclear how their usage affects game play and if there are any user performance benefits. A systematic study of these technologies in game environments is required to understand how game play is affected and how we can optimize the usage in order to achieve better game play experience. This dissertation seeks to improve the gaming experience by exploring several 3DUI technologies. In this work, we focused on stereoscopic 3D viewing (to improve viewing experience) coupled with motion based control, head tracking (to make games more engaging), and faster gesture based menu selection (to reduce cognitive burden associated with menu interaction while playing). We first studied each of these technologies in isolation to understand their benefits for games. We present the results of our experiments to evaluate benefits of stereoscopic 3D (when coupled with motion based control) and head tracking in games. We discuss the reasons behind these findings and provide recommendations for game designers who want to make use of these technologies to enhance gaming experiences.
    [Show full text]
  • A Systematic Review of Commercial Smart Gloves: Current Status and Applications
    sensors Review A Systematic Review of Commercial Smart Gloves: Current Status and Applications Manuel Caeiro-Rodríguez * , Iván Otero-González , Fernando A. Mikic-Fonte and Martín Llamas-Nistal atlanTTic Research Center for Telecommunication Technologies, Universidade de Vigo, 36312 Vigo, Spain; iotero@gist.uvigo.es (I.O.-G.); mikic@gist.uvigo.es (F.A.M.-F.); martin@gist.uvigo.es (M.L.-N.) * Correspondence: mcaeiro@gist.uvigo.es; Tel.: +34-683-243-422 Abstract: Smart gloves have been under development during the last 40 years to support human- computer interaction based on hand and finger movement. Despite the many devoted efforts and the multiple advances in related areas, these devices have not become mainstream yet. Nevertheless, during recent years, new devices with improved features have appeared, being used for research purposes too. This paper provides a review of current commercial smart gloves focusing on three main capabilities: (i) hand and finger pose estimation and motion tracking, (ii) kinesthetic feedback, and (iii) tactile feedback. For the first capability, a detailed reference model of the hand and finger basic movements (known as degrees of freedom) is proposed. Based on the PRISMA guidelines for systematic reviews for the period 2015–2021, 24 commercial smart gloves have been identified, while many others have been discarded because they did not meet the inclusion criteria: currently active commercial and fully portable smart gloves providing some of the three main capabilities for the whole hand. The paper reviews the technologies involved, main applications and it discusses about the current state of development. Reference models to support end users and researchers comparing and selecting the most appropriate devices are identified as a key need.
    [Show full text]