Interactive Projector Screen with Hand Detection Using LED Lights
|
|
|
- Mae Joseph
- 9 years ago
- Views:
Transcription
1 Interactive Projector Screen with Hand Detection Using LED Lights Padmavati Khandnor Assistant Professor/Computer Science/Project Mentor Aditi Aggarwal Student/Computer Science/Final Year Ankita Aggarwal Student/Computer Science/Final Year Swati Sharma Student/Computer Science/Final Year Abstract There are many different ways to manipulate OS, we can use a keyboard, mouse or touch screen. While doing a presentation, it is inconvenient to control the OS and explain the presentation at the same time. Our system, interactive wall, allows you to use hand to control OS on the projection screen which will act as touch screen. You can now experience a novel approach to control your cursor. Our system can be applied to the existing equipment, so you don t need to purchase any expensive touch screen. The system requires one web camera to detect the hand and then you can start to experience our system. Also, three LED lights are required to put on the fingers to help the system to detect the location of the hand and the gesture performing. 1. INTRODUCTION 1.1 Overview The goal of this project is to build an interactive wall display for presentation or classroom use. The physical equipment required is not restricted. Any size of projection screen can be set up for the system or you can use a wall or a table to project the screen. User can be more flexible to enjoy our interactive wall at any place. Human Computer Interaction in the field of input and output techniques has developed a lot of new techniques over the last few years. With the recently released full multi-touch tablets and notebooks the way how people interact with the computer is coming to a new dimension. As humans are used to handle things with their hands the technology of multi-touch displays or touchpad's has brought much more convenience for use in daily life. The usage of human speech recognition will play an important part in the future of human computer interaction. This project introduces techniques and devices using the humans International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
2 hand gestures for the use with multi-touch tablets and video recognition and techniques for interaction. Thereby the gesture recognition take an important role as these are the main communication methods between humans and how they could disrupt the keyboard or mouse as we know it today.[10] 1.2 Motivation The size of touch-screens is usually quite small and limited. Expenses are directly proportional to size. Furthermore, some control methods are not very user-friendly. SOLUTION: using cameras to allow the same kind of user input as touch-screens do, but with a lower price and a larger screen. Hence AIM: to design a web camera-based system to perform like an interactive screen but with a larger sized screen and using our own hands to control it. [2] 2. METHODOLOGY 2.1 INPUT Input includes valid region detection, hand shape recognition and gesture detection. Our system first implements valid region detection to achieve the display screen resolution and it identifies the x-y coordinates in the captured image on the screen. Then it recognizes the hand s shape and location and passes the x-y coordinates to the interface/output part of the system. Since the user may use different hand gestures to control the virtual mouse, the system detects and interprets specific hand gestures and passes the respective command(s) to the interface. 2.2 INTERFACE/OUTPUT The interface is the device that can communicate between the recognition part and the OS. After the input part passes the data to the interface, the interface performs the action immediately and produces associated output. The system design follows the general architecture s five main components which are required to form the interactive Wall. The Prototyping Software Development Process design was used to test and refine the hand recognition algorithm until it achieved optimal performance for building a well-structured and robust system. Valid region detection hand detection using LED lights X-Y coordinate analysis Gesture detection using LED lights INTERFACE Get the data and establish communicatio n with the OS to control the cursor OUTPUT Move the cursor and perform the commands as a touch wall screen Commands analysis FIGURE 1: General architecture design International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
3 2.3 IMPLEMENTATION FIGURE 2: System Overview VALID REGION DETECTION For the system to be interactive, it requires real time processing and also synchronization with human hand gestures. In order to do this, we carefully identify the projected area for accurate positioning of the cursor in the design phase. If the hand is out of the projected area, then all the gestures or commands are invalid. The system only executes the commands when the hand is inside the projected area. Since the projected area must be a rectangle, we decided to use this characteristic to identify the area. By using the contour finding function (i.e. cvfindcontours) from OpenCV, it was easy to find out four end points (i.e. the 4 corners of the projected area) of a contour. But this method failed as it may be possible that laptop, hence camera is at some angle to the screen, which caused incorrect mapping of x-y coordinates to the mouse cursor. So we decided to implement a function which allows the user himself to crop the image shown in the camera input to show up only the valid region( projector screen).[7] HAND DETECTION [1]LED lights provide a stable and efficient way to locate the position of the hand. The system only requires three LED lights because this number of lights provides sufficient commands and no interference affects the control. Noise Filtering 1. Set the level of threshold to filter all the light of less intensity. 2. Cover the camera (either integrated or external) lens with a black film negative (photo reel film used in old cameras). This was the best method which let the system see only the bright white LED light.[9] The current implementation tracks the brightest point in the current frame and show it encircled by a green colored pen appended with the x, y coordinates. This point was considered as centre (F). This gesture sends the MOUSE_MOVE command. If a second light is detected to the left of it (L) highlighted with a blue colored pen then a left click is generated and if a second LED light shows up on the right side ( R ) of (F),(highlighted with red color) then a right click is generated. Both L and R are considered valid gestures only if they appear within region of interest (currently set by us as +-20 as radius). International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
4 2.3.3 GESTURE DETECTION [3]After the hand detection, a maximum of three light sources can be detected: (i) the light that is closest to the track point is the first light F; (ii) the second light at the left hand side of F is L; (iii) the third light at the right hand side of F is R. We can imagine that F is the center of a circle with a certain radius. L and R will appear inside circle and be regarded as valid gesture commands. FIGURE 3: Gesture detection The system relies on F, L and R to determine the actions. When only light F appears, the cursor synchronizes the position of the light on the projection screen. When light L appears on the left hand side of light F, then left click is executed. When light R appears on the right hand side of light F, then right click is executed. If three lights appear for a second, then the function of scrolling is executed. Since L and R can appear on any left part and right part in the circle respectively, it is difficult to keep tracks of L and R. Only F can be kept track of and used as the input method. The system analyzes the direction of movement of the track point and compares it with the pre-define pattern. If the input and the pattern match, then the corresponding command will be activated. 3. IMPLEMENTATION RESULTS 1. Cursor movement (with single LED detection): LED light on Index finger is detected by the camera as the centre point F. It takes this as the X-Y coordinate on the screen and maps the mouse cursor at this point. Figure 4: Mouse Cursor tracking with single LED International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
5 2. Right Click Implementation (with LED detection to the right side of the index finger LED previously detected): LED light on Index finger is detected by the camera as the centre point F. Then another LED on the right side of F is detected as R. It takes F as the X-Y coordinate on the screen and implements right click at this point. Figure 5: Right Click Implementation 3. Left Click Implementation (with an LED detection to the left side of the index finger LED previously detected): LED light on Index finger is detected by the camera as the centre point F. Then another LED on the left side of F is detected as L. It takes F as the X-Y coordinate on the screen and implements left click at this point. Figure 6: Left Click Implementation International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
6 4. CONCLUSION 1. Our system, Interactive Projector Screen, allows user to use LED hand glove to control OS on the projection screen but not touch screen. 2. The system requires one web camera to detect the LED light and then you can start to experience our system. 3. Also, three LED lights are required and sufficient to put on the fingers to help the system to detect the location of the hand and to perform mouse functions. 4. Any size of projection screen can be set up for the system or you can use a wall or a table to project the screen. User can be more flexible to enjoy our interactive wall in any places. End Deliverable would be 1. A webcam with a particular resolution and other specifications with its lens covered with a black film negative to filter all the noise and light entering into the classroom to enable very smooth and stable functionality. 2. A Hand Glove with LED system integrated. This covers three 1Volt LED lights connected in parallel with a 9 volt battery. The battery lifetime is around 20 days if kept switched on continuously. The system also consists of 1pos On-Off switch which I used for simultaneous control of all 3 LED lights. 5. FUTURE SCOPE 1. Use with higher efficiency without preliminary training of gestures. 2. Interactive training of gestures to avoid retraining if an untrained user would like to use the system 3. To increase the number of gestures. 4. Voice integration a. Speech Detection is always mentioned as the most common straight-forwarded way, after the gestural motion, of how people interact between each other. This fact of course impacts also the design of human computer interfaces. Within the section of speech detection the main point is of course the software. For speech recognition itself you only need a normal microphone. The only thing you then have to consider is noise which will be also recorded with your actual planed voice. The major thing thereby is to create a good algorithm not only to select the noise from the actual voice but rather detecting what humans are actually saying. 5. Gaming a. The further implementation can be towards implementing features of gaming apart from the class room teaching and presentation applications, wherein gesture controls are able to manipulate the game operating system.[4] 6. Key board implementation a. Many softwares exist which allow to open up a virtual keyboard. By installing any such software and projecting it as well on the screen can allow us implement all keyboard functionality same as provided by Sixth Sense Device of Pranav Mistry.[2] International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
7 6. REFERENCES [1]Attila Licsár1, Tamás Szirányi1, Hand Gesture Recognition in Camera-Projector System,2009. [2]Pranav Mistry, Sixth Sense Device, November, [3]Cristina Manresa, Javier Varona, Ramon Mas and Francisco J. Perales., Hand Tracking and Gesture Recognition for Human Computer Interaction., Computer Vision Center / Universitat Autonoma de Barcelona, Barcelona, Spain, 18 May [4]Thomas Hahn, Future Human Computer Interaction with special focus on input and output techniques, at University of Reykjavik, March 26, [5]Laura Boccanfuso1 and Jason M. O Kanel, Adaptive Robot Design with Hand and Face Tracking for Use in Autism Therapy, presented at Department of Computer Science and Engineering, University of South Carolina, Columbia, South Carolina 29208, USA. [6]Jun Park1, Yeo-Lip Yoon2, LED-Glove Based Interactions in Multi-Modal Displays for Teleconferencing, presented at ik University, 2 Software Development Department, Homecast Company [7]Eric Wong, Use your webcam as a mouse. Internet: 26, [8] Laser guided pointer. Internet: [9] Audio-Visual Project lab, Elect. Eng. Div, Ngee Ann Polytechnic, Singapore, DIY Penlight Mouse Controller - Interactive Webcam Inferface. Internet:wwwww.youtube.com/watch?v=L476V10Ozi0,Feb.19, [10] Audio-Visual Project lab, Ngee Ann Polytechnic, Singapore, Interactive Projector Screen- Low cost Webcam Implementation. Internet: International Journal of Computer Science and Security (IJCSS), Volume (6) : Issue (5) :
Virtual Mouse Using a Webcam
1. INTRODUCTION Virtual Mouse Using a Webcam Since the computer technology continues to grow up, the importance of human computer interaction is enormously increasing. Nowadays most of the mobile devices
Mouse Control using a Web Camera based on Colour Detection
Mouse Control using a Web Camera based on Colour Detection Abhik Banerjee 1, Abhirup Ghosh 2, Koustuvmoni Bharadwaj 3, Hemanta Saikia 4 1, 2, 3, 4 Department of Electronics & Communication Engineering,
Chapter 3 Input Devices
CSCA0101 COMPUTING BASICS Chapter 3 1 Topics: Examples of Input Device Keyboard Pointing Devices Graphic and Video Audio 2 Any peripheral (piece of computer hardware equipment) used to provide data and
Internet and Computing Core Certification Guide Module A Computing Fundamentals
Lesson 4: Using Input/Output Devices input/output devices common input devices common output devices specialized devices how a device connects what a port is what a device driver is What are Input/Output
Future Human Computer Interaction with special focus on input and output techniques
Future Human Computer Interaction with special focus on input and output techniques Thomas Hahn University of Reykjavik [email protected] March 26, 2010 Abstract Human Computer Interaction in the field
Chapter 5 Objectives. Chapter 5 Input
Chapter 5 Input Describe two types of input List characteristics of a Identify various types of s Identify various types of pointing devices Chapter 5 Objectives Explain how voice recognition works Understand
SMART Board User Guide for Mac
SMART Board User Guide for Mac What is it? SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected
The Keyboard One of the first peripherals to be used with a computer and is still the primary input device for text and numbers.
Standard Methods of Input Keyboard Mouse Input device enables you to input information and commands into the computer. The Keyboard One of the first peripherals to be used with a computer and is still
Multi-Touch Ring Encoder Software Development Kit User s Guide
Multi-Touch Ring Encoder Software Development Kit User s Guide v2.0 Bulletin #1198 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: [email protected] On the
Multi-Touch Control Wheel Software Development Kit User s Guide
Multi-Touch Control Wheel Software Development Kit User s Guide V3.0 Bulletin #1204 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: [email protected] www.grayhill.com/instinct
A Novel Multitouch Interface for 3D Object Manipulation
A Novel Multitouch Interface for 3D Object Manipulation Oscar Kin-Chung Au School of Creative Media City University of Hong Kong [email protected] Chiew-Lan Tai Department of Computer Science & Engineering
INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY
INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK OPEN SOURCE: SIXTH SENSE INTEGRATING INFORMATION WITH THE REAL WORLD MADHURI V.
SMART Board User Guide for PC
SMART Board User Guide for PC What is it? The SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected
SMART Board Menu. Full Reference Guide
SMART Board Full Reference Guide Start-Up After entering Windows, click on the desktop icon SMART Board Tools. The SMART Board icon will appear in the system tray on the bottom right of the screen. Turn
A Method for Controlling Mouse Movement using a Real- Time Camera
A Method for Controlling Mouse Movement using a Real- Time Camera Hojoon Park Department of Computer Science Brown University, Providence, RI, USA [email protected] Abstract This paper presents a new
Chapter 5 Understanding Input. Discovering Computers 2012. Your Interactive Guide to the Digital World
Chapter 5 Understanding Input Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Define input and differentiate among a program, command, and user response Identify
The main imovie window is divided into six major parts.
The main imovie window is divided into six major parts. 1. Project Drag clips to the project area to create a timeline 2. Preview Window Displays a preview of your video 3. Toolbar Contains a variety of
The Complete Educator s Guide to Using Skype effectively in the classroom
The Complete Educator s Guide to Using Increasingly, educators globally are transforming their classroom using Skype to create powerful, authentic, motivating learning experiences for their students. From
UC 123 Smart Classroom
UC 123 Smart Classroom Hopefully everything you need to know to use this room UC 123 Smart Classroom Features available: 1. Desktop computer or plug in your laptop 2. Touchscreen AV controls 3. Front and
Chapter 9 Input/Output Devices
Chapter 9 Input/Output Devices Contents: I. Introduction II. Input Devices a. Keyboard,mouse,joystick,scanners,digital camera, bar code reader, touch Sreeen,Speech input device (microphone) III. Output
2. How to Use SMART Board as a Projector and Whiteboard
Page 1 Smart Board Getting Started Smart Board is an interactive whiteboard developed by SMART Technologies that combines the capabilities of a data projector and a white board. Use the SMART Board to
BrightLink Pro. Quick Reference. BrightLink Interaction. BrightLink Pro Features. 1 Turning on and Calibrating the Projector
BrightLink Pro BrightLink Interaction Three interactive modes are available: Whiteboard mode Quick Reference This card will help you get started using your BrightLink Pro interactive projector. Use one
Advance Human Computer Interaction Using Air Signature
International Journal of Emerging Engineering Research and Technology Volume 2, Issue 7, October 2014, PP 119-126 ISSN 2349-4395 (Print) & ISSN 2349-4409 (Online) Advance Human Computer Interaction Using
Multi-Touch Control Wheel Software Development Kit User s Guide
Multi-Touch Control Wheel Software Development Kit User s Guide v1.0 Bulletin #1204 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: [email protected] On the
ZoomText 10.1 for Windows 8 Quick Reference Guide Addendum
ZoomText 10.1 for Windows 8 Quick Reference Guide Addendum This addendum to the ZoomText 10 Quick Reference Guide covers the new features and other changes specific to ZoomText 10.1 for Windows 8. For
Using SMART Boards. Display Power (Projector) & PC Buttons on the Console
Using SMART Boards A SMART board works with a computer, projector, digital pens, and software called Notebook. The computer screen is projected to the SMART Board, where the board s surface allows you
Discovering Computers. Technology in a World of Computers, Mobile Devices, and the Internet. Chapter 7. Input and Output
Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet Chapter 7 Input and Output Objectives Overview Differentiate among various types of keyboards: standard, compact,
Using Your Polyvision Digital Whiteboard and Walk-and-Talk
Using Your Polyvision Digital Whiteboard and Walk-and-Talk What is Walk-and-Talk? The Walk-and-Talk Digital Whiteboard is a remote control operated interactive system that connects to your computer. You
Prof. Dr. M. H. Assal
Prof. Dr. M. H. Assal AS 26/10/2014 Computer hardware is the collection of physical elements that comprise a computer system Computer hardware can be classified as following: o Input devices o Output devices
Videoconference Room Guide
Videoconference Room Guide Technical Support Should you encounter technical problems please contact Help Desk 250-852-6800 Videoconference classrooms are equipped with two cameras and a ceiling mount LCD
AD201, STC106, STC109, STC204, STC302, STC304, STC309, STC311
Smart Classrooms information & instructions Smart Classrooms are located in: Administration Building Arts & Science Building Academic & Technical Building Library STC AD003, AD209, AD208, AD202 & AD201,
SMART Board Tips & Tricks (version 9.0) Getting Started. SMART Tools vs. SMART Notebook software
SMART Board Tips & Tricks (version 9.0) Getting Started SMART Tools vs. SMART Notebook software Click the SMART Board icon (in the system tray at the bottom right of your screen) to access the SMART Board
Alternative Methods Of Input. Kafui A. Prebbie [email protected] 82
Alternative Methods Of Input Kafui A. Prebbie [email protected] 82 This lesson includes the following sections: Devices for the Hand Optical Input Devices Audio-Visual (Multimedia) Input Devices Kafui A.
RDM+ Remote Desktop for Android. Getting Started Guide
RDM+ Remote Desktop for Android Getting Started Guide RDM+ (Remote Desktop for Mobiles) is a remote control tool that offers you the ability to connect to your desktop or laptop computer from Android device
HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT
International Journal of Scientific and Research Publications, Volume 2, Issue 4, April 2012 1 HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT Akhil Gupta, Akash Rathi, Dr. Y. Radhika
SMART Ink 1.5. Windows operating systems. Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device.
SMART Ink 1.5 Windows operating systems User s guide Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device. Trademark notice SMART Ink, SMART Notebook, SMART
Introduction Configuring Your HP Mouse Batteries Replacing the Batteries Mouse Sensor Technology Navigating the HP Mouse Control Center
Introduction Congratulations on your purchase of an HP mouse. This mouse is the latest in a wide range of computer peripherals manufactured by HP. It is designed to provide you with the highest level of
Using AORUS Notebook for the First Time
V2.0 Congratulations on your purchase of the AORUS Notebook! This Manual will help you to get started with setting up your notebook. For more detailed information, please visit our website at http://www.aorus.com.
Ready Light on lowerright of frame bezel
Version 10 SMART Board Interactive Whiteboard Basics This Quick Reference Guide provides an overview of the information you need to begin using a SMART Board interactive whiteboard. Before you begin, make
WACOM GESTURE GUIDE: USING TOUCH WITH WACOM PRODUCTS
1 WACOM GESTURE GUIDE: USING TOUCH WITH WACOM PRODUCTS Wacom products that support touch are designed to enhance the way you work. Touch enables you to interact with a computer using only your fingertips
Table Of Contents. Table Of Contents
Table Of Contents Table Of Contents Basics Calibration Function Buttons Mouse Operations Whiteboard Pen Variations Normal Pen Intelli-Pen Text Recognition Search text in Google Search text in Wikipedia
The SMART Board Interactive Whiteboard
The SMART Board Interactive Whiteboard 1. Press the power button, the indicator ring flashes green to indicate that the projector lamp is starting up. The What would you like to do? menu will be displayed.
Introduction to Windows 8
Introduction to Windows 8 Windows 8 is a completely redesigned operating system developed from the ground up with touchscreen use in mind as well as near instant-on capabilities that enable a Windows 8
Smartboard Tutorial. 1. Setting up the Smart Board and Presentation Cart. 2. Orienting the Board. 3. Smartboard Toolbars. 4. Inserting a New Slide
Smartboard Tutorial 1. Setting up the Smart Board and Presentation Cart 2. Orienting the Board 3. Smartboard Toolbars 4. Inserting a New Slide 5. Inserting an Object 6. Setting a Picture Transparency 7.
Start Here. BrightLink Interaction. 1 Connect your computer and turn on the projector
BrightLink Interaction The BrightLink interactive pens turn any wall or table into an interactive area, either with or without a computer. With a computer, you can use Easy Interactive Tools (dual pens).
Using. An excerpt from Smart Technology's getting started manual explaining the basics of the SmartBoard and how to use it.
Using An excerpt from Smart Technology's getting started manual explaining the basics of the SmartBoard and how to use it. Quick Reference Hardware Basics for Front Projection SMART Board Interactive Whiteboards
Windows Movie Maker 2012
Windows Movie Maker 2012 Open Windows Movie Maker A shortcut for Movie Maker should be on the desktop, but if it is not, you can search for the program by touching the right edge of the screen and swiping
Working With Animation: Introduction to Flash
Working With Animation: Introduction to Flash With Adobe Flash, you can create artwork and animations that add motion and visual interest to your Web pages. Flash movies can be interactive users can click
Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide
Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide Overview The Mac operating system has many helpful features to help users with a wide range of abilities access their computer. This Quickstart
ADOBE ACROBAT CONNECT PRO MOBILE VISUAL QUICK START GUIDE
ADOBE ACROBAT CONNECT PRO MOBILE VISUAL QUICK START GUIDE GETTING STARTED WITH ADOBE ACROBAT CONNECT PRO MOBILE FOR IPHONE AND IPOD TOUCH Overview Attend Acrobat Connect Pro meetings using your iphone
TH2. Input devices, processing and output devices
TH2. Input devices, processing and output devices http://www.bbc.co.uk/schools/gcsebitesize/ict/ Input devices allow us to enter raw data into a computer. The computer processes the data and then produces
Visualization of 2D Domains
Visualization of 2D Domains This part of the visualization package is intended to supply a simple graphical interface for 2- dimensional finite element data structures. Furthermore, it is used as the low
Kinect Interface to Play Computer Games with Movement
Kinect Interface to Play Computer Games with Movement Program Install and Hardware Setup Needed hardware and software to use the Kinect to play computer games. Hardware: Computer running Windows 7 or 8
Chapter 5 Input. Chapter 5 Objectives. What Is Input? What Is Input? The Keyboard. The Keyboard
Chapter 5 Objectives Chapter 5 Input Define input List characteristics of of a keyboard Describe different mouse types and how they work Summarize how pointing devices work Explain how a digital camera
SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it?
SMART BOARD USER GUIDE FOR PC What is it? SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected on
ME 521 Computer Aided Design. 3. CAD Input Devices
Computer Aided Design 3. CAD Input Devices Yrd.Doç. e mail: [email protected] Makine Mühendisliği Bölümü Gebze Yüksek Teknoloji Enstitüsü Hardware of a CAD System 3. CAD Input Devices Computer System
Human-Computer Interaction: Input Devices
Human-Computer Interaction: Input Devices Robert J.K. Jacob Department of Electrical Engineering and Computer Science Tufts University Medford, Mass. All aspects of human-computer interaction, from the
Communicating Agents Architecture with Applications in Multimodal Human Computer Interaction
Communicating Agents Architecture with Applications in Multimodal Human Computer Interaction Maximilian Krüger, Achim Schäfer, Andreas Tewes, Rolf P. Würtz Institut für Neuroinformatik, Ruhr-Universität
SMART Board Training Packet. Notebook Software 10.0
SMART Board Training Packet Notebook Software 10.0 Chris de Treville [email protected] 6301 Benjamin Road Suite 101 Tampa, FL 33634 p: 813.884.7168 f: 813.882.9508 SMART Board Welcome Center
SMART Boards. If the board is connected to a different computer - Orientation is needed whenever you connect it to a new or different computer.
SMART Boards What is a SMART Board? The SMART Board is an interactive whiteboard that converts a computer and date projector into a powerful tool for teaching and learning. With the computer image projected
Teaching Space User Guide
Teaching Space User Guide AMX Touch Screen Controller and Sympodium. Frequently Asked Questions: There s no computer audio playing in the room? 1) Check that the volume is not muted on the AMX touchscreen
Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer.
Lenovo Miix 2 8 User Guide Read the safety notices and important tips in the included manuals before using your computer. Notes Before using the product, be sure to read Lenovo Safety and General Information
Sharing Software. Chapter 14
Chapter 14 14 Sharing Software Sharing a tool, like a software application, works differently from sharing a document or presentation. When you share software during a meeting, a sharing window opens automatically
Poker Vision: Playing Cards and Chips Identification based on Image Processing
Poker Vision: Playing Cards and Chips Identification based on Image Processing Paulo Martins 1, Luís Paulo Reis 2, and Luís Teófilo 2 1 DEEC Electrical Engineering Department 2 LIACC Artificial Intelligence
Effective Use of Android Sensors Based on Visualization of Sensor Information
, pp.299-308 http://dx.doi.org/10.14257/ijmue.2015.10.9.31 Effective Use of Android Sensors Based on Visualization of Sensor Information Young Jae Lee Faculty of Smartmedia, Jeonju University, 303 Cheonjam-ro,
Help. Contents Back >>
Contents Back >> Customizing Opening the Control Panel Control Panel Features Tabs Control Panel Lists Control Panel Buttons Customizing Your Tools Pen and Airbrush Tabs 2D Mouse and 4D Mouse Tabs Customizing
KEYTEC, INC. - A global leader of innovative touch interactive solutions since 1987
KEYTEC, INC. - A global leader of innovative touch interactive solutions since 1987 Design Manufacture Integrate Market Distribute Support Service 520 Shepherd Drive, Garland, Texas, 75042 USA (T) 1-972-272-7555
SMART BOARD Essentials
SMART BOARD Essentials Date: October, 2013 Version: 1.0 Version Control Information Version Date Description 1.0 21/10/2013 Course release File Path S:\ADM-HR\L-and-OD\Staff Development\Enterprise System
Nursing School Classroom Technology Tips
Nursing School Classroom Technology Tips Facility Overview The School of Nursing building was built in 2001. It is used daily by hundreds of students, faculty and staff for regular classes. Please help
SCRATCH PROGRAMMING AND NUMERACY IN SENIOR PRIMARY CLASSES
SCRATCH PROGRAMMING AND NUMERACY IN SENIOR PRIMARY CLASSES Lero, NCTE 2012 Page 2 Table of Contents Page Number Course Introduction page 4 Module 1: page 5 Module 2: page 22 Module 3: page 32 Module 4:
SECURITY SYSTEM WITH AUTHENTICATION CODE AND ADAPTIVE PHOTO LOG
Technical Disclosure Commons Defensive Publications Series January 06, 2016 SECURITY SYSTEM WITH AUTHENTICATION CODE AND ADAPTIVE PHOTO LOG Alexander Faaborg Ariel Sachter-Zeltzer Follow this and additional
Florida Department of Education TECHNOLOGY GUIDELINES
Florida Department of Education TECHNOLOGY GUIDELINES The Florida Department of Education (FDOE) is pleased to provide these technology guidelines to inform schools and districts as they make technology
Smart Board Basics. December, 2009. Rebecca Clemente Department of Education
Smart Board Basics December, 2009 Rebecca Clemente Department of Education Contents Obtaining the software... 3 What your students will need... 3 Writing in the Notebook... 4 Saving... 5 Change handwriting
VIDEO COMMUNICATION SYSTEM-TECHNICAL DOCUMENTATION. Tracking Camera (PCSA-CTG70/CTG70P) PCS-G70/G70P All
Tracking Camera () PCS-G70/G70P All Introduction The Tracking Camera is a camera unit dedicated to the PCS-G70/G70P. It provides the Voice-Directional Detection function, the Face Recognition function,
Camtasia Recording Settings
Camtasia Recording Settings To Capture Video Step 1: Resolution and Recording Area In the select area section, you can choose either to record the full screen or a custom screen size. Select the dropdown
Central Management Software CV3-M1024
Table of Contents Chapter 1. User Interface Overview...5 Chapter 2. Installation...6 2.1 Beginning Installation...6 2.2 Starting the CMS software...10 2.3 Starting it from the Start menu...10 2.4 Starting
Lenovo IdeaPad Yoga11
Lenovo IdeaPad Yoga11 User Guide V1.0 Read the safety notices and important tips in the included manuals before using your computer. Notes Before using the product, be sure to read Lenovo Safety and General
Kiva Technology User s Manual
2009 Kiva Technology User s Manual For Support Contact Call Center (816) 235-2000: Monday Friday 7:00 am 7:00 pm ILE Support E-Mail: [email protected] URL: http://www.umkc.edu/is/cts/ilesupport/ctssupporttext.asp
GETTING STARTED TABLE OF CONTENTS
imovie 11 Tutorial GETTING STARTED imovie 11 is consumer-level digital video editing software for Macintosh. You can use imovie 11 to edit the footage you film with digital video cameras and HD video cameras.
13-1. This chapter explains how to use different objects.
13-1 13.Objects This chapter explains how to use different objects. 13.1. Bit Lamp... 13-3 13.2. Word Lamp... 13-5 13.3. Set Bit... 13-9 13.4. Set Word... 13-11 13.5. Function Key... 13-18 13.6. Toggle
Epson Brightlink Interactive Board and Pen Training. Step One: Install the Brightlink Easy Interactive Driver
California State University, Fullerton Campus Information Technology Division Documentation and Training Services Handout Epson Brightlink Interactive Board and Pen Training Downloading Brightlink Drivers
Smart Cam, CC-Smart-Cam, and Smart Cam Packages Installation and Quick Start Operating Instructions
Smart Cam, CC-Smart-Cam, and Smart Cam Packages Installation and Quick Start Operating Instructions 12/12/2013 FRONT VIEW BACK VIEW TYPICAL PACKAGE 1 Installation Assemble video coupler to the zoom body
SMART Board Training Outline Trainer: Basel Badran
Sharjah Higher Colleges of Technology SMART Board Training Outline Trainer: Basel Badran What is a SMART Board? o Concept & Technology SMART Board Components: o Smart Tools Start Center Recorder Keyboard
How to rotoscope in Adobe After Effects
Adobe After Effects CS6 Project 6 guide How to rotoscope in Adobe After Effects Rotoscoping is an animation technique in which you draw, paint, or add other visual effects in a layer over live-action film
System Handbook. Table of contents. Welcome
System Handbook Table of contents Welcome...1 CE Labelling...2 Delivery Scope...2 General Safety Instructions...2 Assembly and Startup...3 Problem Handling...5 Shuttle Mini-PC Complete System...6 Connectors
Take Pictures on your Android Tablet or Phone
Take Pictures on your Android Tablet or Phone Google Camera App Free app you can install from the Play store Take a photo Tap here to take a photo Zoom out: Pinch two fingers together on the screen. Zoom
Video Conference System User Guide. for University of Pittsburgh
Video Conference System for University of Pittsburgh Contents Introduction... 1 Getting Started - Main Menu... 1 Going Into Room Only Mode... 2 Going Into Video Conference Mode... 2 System Power... 2 System
Web: www.stp.hu; www.logipix.eu; www.walkdvr.com
StP Technical Development Ltd. version: 1 Contact: Address: 11-13. Késmárk st., 1158 Budapest, Hungary Phone: +36 1 410-0556; +36 20 480-5933 Fax: +36 1 414-0913 E-mail: [email protected] Technical support:
SeeVogh User Guide. Date: March 26 th, 2012
SeeVogh User Guide Date: March 26 th, 2012 About This Guide This guide provides users an overview of the features found in the SeeVogh PC client software. This guide does not discuss the use of the web
SMART board 101. SMART board 101 Training
SMART board 101 SMART board 101 Training For those who want to learn/remember how to connect it, turn it on, configure it, and feel better about using it at a basic level. We will talk about how the SMART
SMART Board Interactive Whiteboard Setup with USB Cable
SMART Board Interactive Whiteboard Setup with USB Cable The instructions below are for the SMART Board interactive whiteboard 500 series and apply to both desktop and laptop computers. Ready Light USB
How To Use Trackeye
Product information Image Systems AB Main office: Ågatan 40, SE-582 22 Linköping Phone +46 13 200 100, fax +46 13 200 150 [email protected], Introduction TrackEye is the world leading system for motion
Modeling the Mobile Application Development Lifecycle
, March 12-14, 2014, Hong Kong Modeling the Mobile Application Development Lifecycle Tejas Vithani, Member, IAENG and Anand Kumar Abstract Software Development Lifecycle is crucial in Desktop or web application
Podium Instructions: M112 Podium USB. document camera microphone. keyboard. mouse. projector buttons USB. CD/DVD drive inside cabinet
Podium Instructions: M112 Podium USB document camera microphone keyboard mouse projector buttons USB CD/DVD drive inside cabinet Podium M112 Quickstep 2. Select the Desired Input (Projector Screen automatically
