Human Activities Recognition in Android Smartphone Using Support Vector Machine
|
|
|
- Britton Junior Robinson
- 10 years ago
- Views:
Transcription
1 2016 7th International Conference on Intelligent Systems, Modelling and Simulation Human Activities Recognition in Android Smartphone Using Support Vector Machine Duc Ngoc Tran Computer Engineer Faculty University of Information Technology Ho Chi Minh, Vietnam Duy Dinh Phan Computer Engineer Faculty University of Information Technology Ho Chi Minh, Vietnam Abstract In this study, we designed and constructed a system to identify human actions using integrated sensors in smartphones. There are six actions that are selected for recognition include: walking, standing, sitting, lying down, up the stairs, down the stairs. In this system, Support Vector Machine (SVM) is used to classify and identify action. Collected data from sensors are analyzed for the classification model - the model file. The classification models are optimized to bring the best results for the identified human activity. After forming the classify model, the model will be integrated into the system to identify the human activities. Human activities recognition system is written on Windows and Android platforms and operate in real time. The accuracy of the system depends on selected features and the quality of the training model. On the Android system running on smartphone with 248 features achieve 89.59% accurate rate. Keywords - SVM, human activities recognition, Android I. INTRODUCTION In the world, the human activities recognition, which use sensors to recognize human actions, have been studied for a long time to produce the more simple system with high precision [1]. However, there is very limited number of project that investigate a human activity recognition system built right on the smartphone. A great advantage of this integrated system is the real time and full time supervision. The human activities recognition built in smart phone promises to open up a new direction not only in monitoring and health care but also in other fields. In fact, the proportion of the population aged 65 and over in the world is projected to grow from an estimated 8 percent of the world s population in 2010 to nearly 16 percent in 2050 [2]. This increase will put the health care institutions under very large pressure, specifically considering the fact the health care cost per capita for persons over 65 years are three to five times greater the under 65 [3]. Thus, medical institutions are actively seeking cost-cutting solutions. The patients who need the medical assistant can be monitored remotely. Through the identification of human actions, the monitoring health care application will provide medical staff with more crucial information of particular patients for giving warnings for accidents such as falling down [4]. This process can be done automatically to reduce the workload of medical institutions. In order increase feasibility of such application, this study focus on some particular activities of human activities recognition include walking, up, down, sitting, standing and laying. Nowadays, smartphone is going to get more popular in the world over the next five years. According to Ericsson mobility report, there will be a massive jump from the 2.6 billion smartphone users recorded in 2014 to 6.1 billion by 2020 [5]. The number of smart devices, which always beside everyone, is quite huge. Moreover, it is built with many sensors to increase the interaction ability for user includes acceleration and gyroscope sensor. Thus, the idea of utilization of these sensors to make a smartphone application for human activities recognition become more realistic. In detail, acceleration sensor measures acceleration in three orthogonal axes. All of objects in the Earth are affected by the gravity. The linear acceleration measures the acceleration effect of the device movement, excluding the effect of Earth's gravity on the device. The gyroscope uses Earth s gravity to help determine orientation of smartphone. The combination of parameters which are collected from these sensors allow to determine the status and the change of physical movement of smartphone in the space. The large collected data provide many important data to recognize the human physical activities. II. RELATED WORKS A. Support Vector Machines In the last decades, there were several machine learning methods that can use for classifier and recognition of human physical activities including Naïve Bayes, Support Vector Machines (SVMs), Threshold based and Markov chain [6]. Although there is not any study that can find out the best method for human physical activities classification, but SVMs have been successfully widely used in many research related to handwriting recognition and speech recognition. Therefore, in this study, SVMs method will be used to classify and recognize human activities. In order to find out the best hyperplane for data classification, SVMs search the hyperplane which has the largest margin. Figure 1 shows both two hyperplanes can be divided in two class. However, figure 1.b shows the larger margin between two classes than figure 1.a. The larger margin will help the classification in next modules easier and avoid mistakes as much as possible. Thus, in SVMs /16 $ IEEE DOI /ISMS
2 classification process, the system algorithm will search to find the hyperplane that have the largest margin. Figure 1 SVMs classification In particular, Anguita introduced the concept of Hardware-Friendly SVM [7]. The fixed point arithmetic is exploited in the feed-forward phase of SVM classifier. This model is extended for multiclass classification. Because this research achieved an average accuracy of 89% with small among of memory, it has good advantage when used in limited resources hardware devices like smartphone. The results of this study will be used for the evaluation of human activities recognition developed in this study. Duy Tam Gilles Huynh did a study on the application of sensors worn on the body to recognize the actions of humans [8]. This study not only focuses on the identification of human activities in the short time but also focus on the identification of human activities in the long period of time. In Android, Google has been introduced a set of API (Application Programming Interface), which allow the developer to connect Google services to their Android phone for receiving the human activity recognition results [9]. Google API can recognize six type of activities include in vehicle, on bicycle, on foot, running, still and walking. However, this system required the connection to Google server in order to send the requests and receive the results. In ios, Apple has released ios Health on ios 8 [10]. The system used GPS to locate service and motion sensors to recognize human activities such as walking, running, biking, thereby calculating the energy consumption of a person in a day. The recognition system focused on the time the user performs the action through two states: active or inactive, this interval should be greater than thirty minutes per day. Recently, research on identifying the action is still being implemented and applied on many topics such as: identifying daily activities [11], the health-care applications, the unsupervised learning method of human activities, etc. In this study, a new method using SVM for human activities recognition is introduced. The practical system is designed and implemented in Android OS smartphone. III. IMPLEMENTATION Human Activities Recognition System are formed from many functional blocks. Each block performs a different task for each training process and identifying actions. The human activities recognition system consists of four main functional modules include: - Data acquisition and data processing module - Feature extraction module - Training module. - Human activities recognition module on smartphone. A. Data acquisition & data processing module This module collects data and processes signal from the smartphone's sensors module when performing the human activities. This block consists of two main components include the controller (as a software running on a Windows computer or on a smart phone) and a data recording device (smartphone). In order to execute the data acquisition process, this module is implemented in two steps. Step 1: establishing a connection between the controller and the data recording device. Step 2: Turn the control signal start gathering process. UDP Datagram TCP Request TCP Connection Recording device Controller Figure 2 Connection interface between recording device and controller B. Feature Extraction Module The raw data collected from the sensor cannot be used directly for SVMs methods. Thus, a module, which conducts calculation for feature extraction and converting raw data to training samples, will be implemented. Those samples have the proper structure according to the requirement of machine learning algorithm. Data are collected from 3 types of sensor: acceleration sensor, gyro sensor and accelerometer sensor linearity. Each sensor returns three values corresponding to threedimensional x, y, z. The sensor runs at 50Hz (collecting 50 values per second) to store raw data in units of sample. Each sample includes 128 values corresponding to each sample time record of 2.56 seconds. Nine arrays of original raw data will be undergone to conversion functions to form the array of data to process features extraction calculations. The conversion functions include: diff: calculate the difference between the value of two consecutive values in array 65
3 mag: calculate the value of the magnitude of the three variables x, y, z fft: convert signal from the time domain to the frequency domain A total of 33 arrays of data are formed after previous conversion functions. The features extraction process will calculate some parameters which are defined based on a set of values (also called the window) on the data stream. There are three parameters need to be evaluated and selected as below [8]: - The length of the window (the number of values in a set of calculations): With basic activities like walking, standing, sitting, lying, the recording time is often 2.56 seconds corresponding to each window which has 128 values [7]. - The displacement of consecutive windows (the windows may overlap to achieve coverage on the entire amount of raw data recorded): A 50% overlap of data windows will be apply to the data [7]. This means the next window will regain 50% of the data of the previous window. - The features parameters calculated on data: Some features are used to calculated is listed in table I. TABLE I. SOME EXTRACTED FEATURES FROM RAW DATA Features Description Mean Average of the array Std Standard deviation Mad Average of std Max Maximum Min Minimum SMA Energy Energy of signal Iqr Entropy These features will be calculated in from the time domain and the frequency domain. There are two version of this system include MATLAB version for testing in PC and Android version for implementation in smartphone. In MATLAB, total 561 features has been calculated. In other side, Android version has 248 features. C. Trainning Module Training module convert extracted features to the recognition model, which will be used as a template for activity recognition. The specific data to be arranged in a special format, this format to comply with regulations on data formats of classify of SVMs. The data will be processed with the library toolkit SVMlib [12]. The results show that the models which support the activities recognition. Results of recognition will be analyzed, compared to find out the fault location as well as features that are calculated from those faults in order to adjust the calculation to achieve better recognition model. After assessing the results, any recognition model that has over 80% of accuracy will be selected to use in the recognition module on the smartphone. D. Recognition Module Because the system requires real time operation, the recognition module is processed in a short time of 3-5 seconds. In particular, this period of time includes the time of writing data and the time of recognition for activity. Writing data module and processing data from sensors module will record data for 2-3 seconds (128 values from each sensor). The amount of data will be processed through the features extraction module. These features are calculated on time domain over time. Totally, 248 features were calculated. Then, these features will be recognized with the training model, which obtain from training module. Recognition results will be sent to the smartphone user. Due to the requirement of continuous activity recognition, the calculation should be done in parallel with the process of writing data, which is used for the next recognition. IV. RESULTS A. Testing Environment The experiment were carried out on 10 volunteers aged 11 to 26, who have normal health. Each volunteer will perform six basic activities. The process of data collection is controlled by a computer program, data will be named separately to manage, store. Data will be accompanied by information on the action name, the name of volunteers and time data logging. Then the data will be randomized into two data sets: 70% for the training, 30% for the inspection process. The training will be done by SVMs. Xperia Z1 is used in this test. Smartphones contain three essential sensor including accelerometer sensor, linear acceleration and gyroscope. The sensor data recorded at 50Hz, suitable for recording data on human activities. To implement the process of identification, an application on smartphones running Android OS has been developed. The process begins by identifying the collection of raw data from the sensor. These data will be divided into small data samples, each sample is a sequence of 128 values corresponding to the time of collection of 2.56 seconds. Then the sample data will be sent to the characteristic calculation. Finally these characteristics will be included in the identification of SVMs to identify the action. The entire process of identification is shown in Fig 3. Figure 3 Human activities recognition procedure 66
4 B. Data Collection The raw data was collected from 10 volunteers aged from 11 to 26. All of them have normal health status. The phone place in their pocket. The data is collected from samples as in Table II. TABLE II. SAMPLES COLLECTED FROM VOLUNTEERS Type of activities Number of samples Sitting 3541 Standing 4252 Walking 1635 Upstair 360 Downstair 260 Lying 891 D. Recognition on Smartphone The Human Activity Recognition System on smartphone is developed on the Android platform. The program will collect data from sensors, perform calculations and make comparisons with the model which has been chosen before. The result is sent to the server or displayed on the phone screen as Fig 4. C. Training and Evaluation In order to compare with the previous research from Anguita, the first version of this study is processed with Human Activity Recognition Using Smartphones Data Set which is used as the testing data for Anguita s research. Table III shows the recognition of 2752/2957 samples (93.38%), which means quite higher the previous study result (89%). On other hand, the second version is tested with 248 features, which reduce from 561 features from the first version, to the decease the volume of calculation and achieve the real time recognition ability for smartphone implementation. In general, the system can recognize correctly human activities with high detection rates in above 89% as shown in Table IV. However, lying activity has low recognition rate and be perceived to act sitting. The reason is the similar status of smartphone when the user do the sitting and lying activity. TABLE III. RESULTS OF THE RECOGNITION RUNNING WITH ANGUITA S DATA SET Walking Up Down Sitt Standing Lying % ing Walking Up Down Sitting Standing Lying Total TABLE IV. RESULTS OF THE TRAINING PROCESS AND RECOGNITION WITH 248 FEATURES Walking Up Down Sitt Standing Lying % ing Walking Up Down Sitting Standing Lying Total Figure 4. Results in controlled software V. CONCLUTION AND FUTURE WORK In this paper, the research team has developed a complete system to recognize the human activity. The completed system included data acquisition systems, features extraction, data processing, training and human activity recognition. This system can be applied in many fields of practice especially health care field. One particular application as identification of patient falls, the index measuring applications advocacy etc. However, the system still has some certain restrictions. Percentage of recognition is low in some action. In the future, there should be more research to improve the performance and increase the detection capabilities of the system. ACKNOWLEDGMENT The research is funded by Computer Engineering Faculty in project C2014-5, University of Information Technology Vietnam National University. REFERENCES [1] T. Starner, B. Rhodes, J. Weaver, and A. Pentland, Everyday-use Wearable Computers [2] N. I. on Aging, Humanity s Aging, National Institute on Aging, 26- Mar [Online]. Available: [Accessed: 08-Jan-2016]. [3] S. Jacobzone and H. Oxley, Ageing and Health Care Costs, Internationale Politik und Gesellschaft Online, [Online]. Available: [Accessed: 08-Jan-2016]. [4] V. Osmani, S. Balasubramaniam, and D. Botvich, Human activity recognition in pervasive health-care: Supporting efficient remote collaboration, J. Netw. Comput. Appl., vol. 31, no. 4, pp , Nov
5 [5] Ericsson Mobility Report: 70 percent of world s population using smartphones by 2020, Ericsson.com, 03-Jun [Online]. Available: [Accessed: 09- Jan-2016]. [6] A. Mannini and A. M. Sabatini, Machine Learning Methods for Classifying Human Physical Activity from On-Body Accelerometers, Sensors, vol. 10, no. 2, pp , Feb [7] D. Anguita, A. Ghio, L. Oneto, X. Parra, and J. L. Reyes-Ortiz, Human Activity Recognition on Smartphones Using a Multiclass Hardware-Friendly Support Vector Machine, in Ambient Assisted Living and Home Care, J. Bravo, R. Hervás, and M. Rodríguez, Eds. Springer Berlin Heidelberg, 2012, pp [8] D. T. G. Huynh, Human Activity Recognition with Wearable Sensors, [9] DetectedActivity, Google Developers. [Online]. Available: /gms/location/detectedactivity. [Accessed: 29-Dec-2015]. [10] ios 9 - Health, Apple. [Online]. Available: [Accessed: 29-Dec-2015]. [11] J. Lester, T. Choudhury, and G. Borriello, A Practical Approach to Recognizing Physical Activities, in Pervasive Computing, K. P. Fishkin, B. Schiele, P. Nixon, and A. Quigley, Eds. Springer Berlin Heidelberg, 2006, pp [12] R. W. de Bettio, A. H. C. Silva, T. Heimfarth, A. P. Freire, and A. G. C. de Sá, Model and implementation of body movement recognition using Support Vector Machines and Finite State Machines with cartesian coordinates input for gesture-based interaction, J. Comput. Sci. Technol., vol. vol. 13, no. 2, Oct
A smartphone based real-time daily activity monitoring system. Shumei Zhang Paul McCullagh Jing Zhang Tiezhong Yu
A smartphone based real-time daily activity monitoring system Shumei Zhang Paul McCullagh Jing Zhang Tiezhong Yu Outline Contribution Background Methodology Experiments Contribution This paper proposes
AN APPLYING OF ACCELEROMETER IN ANDROID PLATFORM FOR CONTROLLING WEIGHT
AN APPLYING OF ACCELEROMETER IN ANDROID PLATFORM FOR CONTROLLING WEIGHT Sasivimon Sukaphat Computer Science Program, Faculty of Science, Thailand [email protected] ABSTRACT This research intends to present
ANDROID APPLICATION DEVELOPMENT FOR ENVIRONMENT MONITORING USING SMART PHONES
ANDROID APPLICATION DEVELOPMENT FOR ENVIRONMENT MONITORING USING SMART PHONES ABSTRACT K. Krishnakanth 1 and P. Kavipriya 2 1 M.E Embedded Systems, Sathyabama University, Chennai, India. [email protected]
A DECISION TREE BASED PEDOMETER AND ITS IMPLEMENTATION ON THE ANDROID PLATFORM
A DECISION TREE BASED PEDOMETER AND ITS IMPLEMENTATION ON THE ANDROID PLATFORM ABSTRACT Juanying Lin, Leanne Chan and Hong Yan Department of Electronic Engineering, City University of Hong Kong, Hong Kong,
Automatic Fall Detector based on Sliding Window Principle
Automatic Fall Detector based on Sliding Window Principle J. Rodriguez 1, M. Mercuri 2, P. Karsmakers 3,4, P.J. Soh 2, P. Leroux 3,5, and D. Schreurs 2 1 UPC, Div. EETAC-TSC, Castelldefels, Spain 2 KU
Is a Data Scientist the New Quant? Stuart Kozola MathWorks
Is a Data Scientist the New Quant? Stuart Kozola MathWorks 2015 The MathWorks, Inc. 1 Facts or information used usually to calculate, analyze, or plan something Information that is produced or stored by
Detecting User Activities using the Accelerometer on Android Smartphones
Detecting User Activities using the Accelerometer on Android Smartphones Sauvik Das Georgia Institute of Technology LaToya Green University of Houston Beatrice Perez University of Puerto Rico, Mayaguez
Cell Phone based Activity Detection using Markov Logic Network
Cell Phone based Activity Detection using Markov Logic Network Somdeb Sarkhel [email protected] 1 Introduction Mobile devices are becoming increasingly sophisticated and the latest generation of smart
Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations
Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Ryu HyunKi, Moon ChangSoo, Yeo ChangSub, and Lee HaengSuk Abstract In this paper,
International Journal of Advanced Research in Computer Science and Software Engineering
Volume 3, Issue 3, March 203 ISSN: 2277 28X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Real Time Monitoring
A mobile monitoring and alert SMS system with remote configuration A case study for android and the fused location provider
A mobile monitoring and alert SMS system with remote configuration A case study for android and the fused location provider By Tiago Coelho, Sara Paiva Instituto Politécnico de Viana do Castelo, Viana
REAL TIME TRAFFIC LIGHT CONTROL USING IMAGE PROCESSING
REAL TIME TRAFFIC LIGHT CONTROL USING IMAGE PROCESSING Ms.PALLAVI CHOUDEKAR Ajay Kumar Garg Engineering College, Department of electrical and electronics Ms.SAYANTI BANERJEE Ajay Kumar Garg Engineering
A Demonstration of a Robust Context Classification System (CCS) and its Context ToolChain (CTC)
A Demonstration of a Robust Context Classification System () and its Context ToolChain (CTC) Martin Berchtold, Henning Günther and Michael Beigl Institut für Betriebssysteme und Rechnerverbund Abstract.
Human Activity Recognition on Smartphones using a Multiclass Hardware-Friendly Support Vector Machine
Human Activity Recognition on Smartphones using a Multiclass Hardware-Friendly Support Vector Machine Davide Anguita 1, Alessandro Ghio, Luca Oneto, Xavier Parra 2, and Jorge L. Reyes-Ortiz 1,2 1 DITEN
Module 1: Sensor Data Acquisition and Processing in Android
Module 1: Sensor Data Acquisition and Processing in Android 1 Summary This module s goal is to familiarize students with acquiring data from sensors in Android, and processing it to filter noise and to
High-Speed Thin Client Technology for Mobile Environment: Mobile RVEC
High-Speed Thin Client Technology for Mobile Environment: Mobile RVEC Masahiro Matsuda Kazuki Matsui Yuichi Sato Hiroaki Kameyama Thin client systems on smart devices have been attracting interest from
Accelerometer Based Real-Time Gesture Recognition
POSTER 2008, PRAGUE MAY 15 1 Accelerometer Based Real-Time Gesture Recognition Zoltán PREKOPCSÁK 1 1 Dept. of Telecomm. and Media Informatics, Budapest University of Technology and Economics, Magyar tudósok
Analysis One Code Desc. Transaction Amount. Fiscal Period
Analysis One Code Desc Transaction Amount Fiscal Period 57.63 Oct-12 12.13 Oct-12-38.90 Oct-12-773.00 Oct-12-800.00 Oct-12-187.00 Oct-12-82.00 Oct-12-82.00 Oct-12-110.00 Oct-12-1115.25 Oct-12-71.00 Oct-12-41.00
VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune
VEHICLE TRACKING SYSTEM USING GPS Pooja P. Dehankar 1, 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune Prof. S. P. Potdar 2 2 Asst. Professor, SCOE, Vadgaon, Pune Abstract- Global Positioning System is
Scalable Developments for Big Data Analytics in Remote Sensing
Scalable Developments for Big Data Analytics in Remote Sensing Federated Systems and Data Division Research Group High Productivity Data Processing Dr.-Ing. Morris Riedel et al. Research Group Leader,
Multi-Person Pose Recognition Using a Zigbee Sensor Network
Proceedings of the 7th World Congress The International Federation of Automatic Control Seoul, Korea, July 6, 8 Multi-Person Pose Recognition Using a Zigbee Sensor Network Kai-Tai Song and Chun-Wei Chen
Report of Research Results
Report of Research Results Scaling and Deployment of e-guardian to Eldercare Centers and Single Elderly Homes Primary Researcher: Prof. Tan Kok Kiong, Department of Electrical and Computer Engineering
Synthetic Aperture Radar: Principles and Applications of AI in Automatic Target Recognition
Synthetic Aperture Radar: Principles and Applications of AI in Automatic Target Recognition Paulo Marques 1 Instituto Superior de Engenharia de Lisboa / Instituto de Telecomunicações R. Conselheiro Emídio
How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm
IJSTE - International Journal of Science Technology & Engineering Volume 1 Issue 10 April 2015 ISSN (online): 2349-784X Image Estimation Algorithm for Out of Focus and Blur Images to Retrieve the Barcode
Active Learning SVM for Blogs recommendation
Active Learning SVM for Blogs recommendation Xin Guan Computer Science, George Mason University Ⅰ.Introduction In the DH Now website, they try to review a big amount of blogs and articles and find the
Motion Sensing with mcube igyro Delivering New Experiences for Motion Gaming and Augmented Reality for Android Mobile Devices
Motion Sensing with mcube igyro Delivering New Experiences for Motion Gaming and Augmented Reality for Android Mobile Devices MAY 2014 Every high-end smartphone and tablet today contains three sensing
Data Cleansing for Remote Battery System Monitoring
Data Cleansing for Remote Battery System Monitoring Gregory W. Ratcliff Randall Wald Taghi M. Khoshgoftaar Director, Life Cycle Management Senior Research Associate Director, Data Mining and Emerson Network
Alternative Biometric as Method of Information Security of Healthcare Systems
Alternative Biometric as Method of Information Security of Healthcare Systems Ekaterina Andreeva Saint-Petersburg State University of Aerospace Instrumentation Saint-Petersburg, Russia [email protected]
In the pursuit of becoming smart
WHITE PAPER In the pursuit of becoming smart The business insight into Comarch IoT Platform Introduction Businesses around the world are seeking the direction for the future, trying to find the right solution
Fitness Motion Recognition
Fitness Motion Recognition with Android Wear Edward Dale Freeletics Edward Dale, 2015 1 http://www.someecards.com/usercards/viewcard/mjaxmy1hmjiwmwuzmtc4ndgyota1 Edward Dale, 2015 2 Agenda Define scope
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,
The Implementation of Face Security for Authentication Implemented on Mobile Phone
The Implementation of Face Security for Authentication Implemented on Mobile Phone Emir Kremić *, Abdulhamit Subaşi * * Faculty of Engineering and Information Technology, International Burch University,
VIRTUAL REALITY GAME CONTROLLED WITH USER S HEAD AND BODY MOVEMENT DETECTION USING SMARTPHONE SENSORS
VIRTUAL REALITY GAME CONTROLLED WITH USER S HEAD AND BODY MOVEMENT DETECTION USING SMARTPHONE SENSORS Herman Tolle 1, Aryo Pinandito 2, Eriq Muhammad Adams J. 3 and Kohei Arai 4 1,2,3 Multimedia, Game
Mobile Phone Location Tracking by the Combination of GPS, Wi-Fi and Cell Location Technology
IBIMA Publishing Communications of the IBIMA http://www.ibimapublishing.com/journals/cibima/cibima.html Vol. 2010 (2010), Article ID 566928, 7 pages DOI: 10.5171/2010.566928 Mobile Phone Location Tracking
Knowledge Discovery from patents using KMX Text Analytics
Knowledge Discovery from patents using KMX Text Analytics Dr. Anton Heijs [email protected] Treparel Abstract In this white paper we discuss how the KMX technology of Treparel can help searchers
Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards
, pp. 143-150 http://dx.doi.org/10.14257/ijseia.2015.9.7.15 Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards Ryu HyunKi 1, Yeo ChangSub 1, Jeonghyun
Less naive Bayes spam detection
Less naive Bayes spam detection Hongming Yang Eindhoven University of Technology Dept. EE, Rm PT 3.27, P.O.Box 53, 5600MB Eindhoven The Netherlands. E-mail:[email protected] also CoSiNe Connectivity Systems
A Survey of Cloud Based Health Care System
A Survey of Cloud Based Health Care System Chandrani Ray Chowdhury Assistant Professor, Dept. of MCA, SDET-Brainware Group of Institution, Barasat, West Bengal, India ABSTRACT: Cloud communicating is an
Application Note IMU Visualization Software
ECE 480 Spring 2013 Team 8 Application Note IMU Visualization Software Name: Alex Mazzoni Date: 04/04/2013 Facilitator: Dr. Aviyente Abstract This application note covers how to use open source software
DEVELOPMENT OF VIBRATION REMOTE MONITORING SYSTEM BASED ON WIRELESS SENSOR NETWORK
International Journal of Computer Application and Engineering Technology Volume 1-Issue1, January 2012.pp.1-7 www.ijcaet.net DEVELOPMENT OF VIBRATION REMOTE MONITORING SYSTEM BASED ON WIRELESS SENSOR NETWORK
User Authentication using Combination of Behavioral Biometrics over the Touchpad acting like Touch screen of Mobile Device
2008 International Conference on Computer and Electrical Engineering User Authentication using Combination of Behavioral Biometrics over the Touchpad acting like Touch screen of Mobile Device Hataichanok
A Learning Based Method for Super-Resolution of Low Resolution Images
A Learning Based Method for Super-Resolution of Low Resolution Images Emre Ugur June 1, 2004 [email protected] Abstract The main objective of this project is the study of a learning based method
A SECURE DECISION SUPPORT ESTIMATION USING GAUSSIAN BAYES CLASSIFICATION IN HEALTH CARE SERVICES
A SECURE DECISION SUPPORT ESTIMATION USING GAUSSIAN BAYES CLASSIFICATION IN HEALTH CARE SERVICES K.M.Ruba Malini #1 and R.Lakshmi *2 # P.G.Scholar, Computer Science and Engineering, K. L. N College Of
Keywords: Dynamic Load Balancing, Process Migration, Load Indices, Threshold Level, Response Time, Process Age.
Volume 3, Issue 10, October 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Load Measurement
Wireless Multimedia Technologies for Assisted Living
Second LACCEI International Latin American and Caribbean Conference for Engineering and Technology (LACCEI 2004) Challenges and Opportunities for Engineering Education, Research and Development 2-4 June
SEMANTIC WEB BASED INFERENCE MODEL FOR LARGE SCALE ONTOLOGIES FROM BIG DATA
SEMANTIC WEB BASED INFERENCE MODEL FOR LARGE SCALE ONTOLOGIES FROM BIG DATA J.RAVI RAJESH PG Scholar Rajalakshmi engineering college Thandalam, Chennai. [email protected] Mrs.
Open Access Research and Design for Mobile Terminal-Based on Smart Home System
Send Orders for Reprints to [email protected] The Open Automation and Control Systems Journal, 2015, 7, 479-484 479 Open Access Research and Design for Mobile Terminal-Based on Smart Home System
Mobile Adaptive Opportunistic Junction for Health Care Networking in Different Geographical Region
International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 4, Number 2 (2014), pp. 113-118 International Research Publications House http://www. irphouse.com /ijict.htm Mobile
A MOTION ACTIVITY MONITOR MONITOR POHYBOVÉ AKTIVITY
A MOTION ACTIVITY MONITOR MONITOR POHYBOVÉ AKTIVITY Josef Marek, Ladislav Štěpánek 1 Summary: The paper deals with motion and vital activity monitoring of person in the case of dangerous environment (rescue
An inertial haptic interface for robotic applications
An inertial haptic interface for robotic applications Students: Andrea Cirillo Pasquale Cirillo Advisor: Ing. Salvatore Pirozzi Altera Innovate Italy Design Contest 2012 Objective Build a Low Cost Interface
An Analysis of the Transitions between Mobile Application Usages based on Markov Chains
An Analysis of the Transitions between Mobile Application Usages based on Markov Chains Charles Gouin-Vallerand LICEF Research Center, Télé- Université du Québec 5800 St-Denis Boul. Montreal, QC H2S 3L5
IMPLEMENTATION OF DATA PROCESSING AND AUTOMATED ALGORITHM BASED FAULT DETECTION FOR SOLAR THERMAL SYSTEMS
IMPLEMENTATION OF DATA PROCESSING AND AUTOMATED ALGORITHM BASED FAULT DETECTION FOR SOLAR THERMAL SYSTEMS Stefan Küthe, Corry de Keizer, Reza Shahbazfar and Klaus Vajen Institute of Thermal Engineering,
FACE RECOGNITION BASED ATTENDANCE MARKING SYSTEM
Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 2, February 2014,
Autos Limited Ghana Vehicle Tracking Business Proposal
Autos Limited Ghana Vehicle Tracking Business Proposal Executive Summary Our Understanding of Your Goals We understand that you or your business needs to monitor all your vehicles or company's to minimize
VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS
VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS Aswin C Sankaranayanan, Qinfen Zheng, Rama Chellappa University of Maryland College Park, MD - 277 {aswch, qinfen, rama}@cfar.umd.edu Volkan Cevher, James
How To Predict Web Site Visits
Web Site Visit Forecasting Using Data Mining Techniques Chandana Napagoda Abstract: Data mining is a technique which is used for identifying relationships between various large amounts of data in many
FRAUD DETECTION IN ELECTRIC POWER DISTRIBUTION NETWORKS USING AN ANN-BASED KNOWLEDGE-DISCOVERY PROCESS
FRAUD DETECTION IN ELECTRIC POWER DISTRIBUTION NETWORKS USING AN ANN-BASED KNOWLEDGE-DISCOVERY PROCESS Breno C. Costa, Bruno. L. A. Alberto, André M. Portela, W. Maduro, Esdras O. Eler PDITec, Belo Horizonte,
Topology Aware Analytics for Elastic Cloud Services
Topology Aware Analytics for Elastic Cloud Services [email protected] Master Thesis Presentation May 28 th 2015, Department of Computer Science, University of Cyprus In Brief.. a Tool providing Performance
Feature Selection using Integer and Binary coded Genetic Algorithm to improve the performance of SVM Classifier
Feature Selection using Integer and Binary coded Genetic Algorithm to improve the performance of SVM Classifier D.Nithya a, *, V.Suganya b,1, R.Saranya Irudaya Mary c,1 Abstract - This paper presents,
A Design of Mobile Convergence Architecture for U-healthcare
, pp. 253-260 http://dx.doi.org/10.14257/ijseia.2015.9.1.22 A Design of Mobile Convergence Architecture for U-healthcare Regin Joy Conejar 1 and Haeng-Kon Kim 1* 1 School of Information Technology Catholic
Efficient Data Recovery scheme in PTS-Based OFDM systems with MATRIX Formulation
Efficient Data Recovery scheme in PTS-Based OFDM systems with MATRIX Formulation Sunil Karthick.M PG Scholar Department of ECE Kongu Engineering College Perundurau-638052 Venkatachalam.S Assistant Professor
Using Data Mining for Mobile Communication Clustering and Characterization
Using Data Mining for Mobile Communication Clustering and Characterization A. Bascacov *, C. Cernazanu ** and M. Marcu ** * Lasting Software, Timisoara, Romania ** Politehnica University of Timisoara/Computer
ENERGY SAVING SYSTEM FOR ANDROID SMARTPHONE APPLICATION DEVELOPMENT
ENERGY SAVING SYSTEM FOR ANDROID SMARTPHONE APPLICATION DEVELOPMENT Dipika K. Nimbokar 1, Ranjit M. Shende 2 1 B.E.,IT,J.D.I.E.T.,Yavatmal,Maharashtra,India,[email protected] 2 Assistant Prof,
Smart Signature. Gesture Based Authentication using a Smart Ring. Tatiana Bradley, Rakshith Hiresamudra Shivegowda, and Wai Man Chan
SmartSignature Gesture Based Authentication using a Smart Ring Tatiana Bradley, Rakshith Hiresamudra Shivegowda, and Wai Man Chan CS 244, Fall 2015 Acknowledgement: Nod Labs, for providing smart ring.
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
Multi-sensor authentication to improve smartphone security
Multi-sensor authentication to improve smartphone security Wei-Han Lee, Ruby B. Lee Princeton Architecture Lab for Multimedia and Security (PALMS) Department of Electrical Engineering, Princeton University,
Performance Analysis Of Policy Based Mobile Virtualization in Smartphones Using MOSES Algorithm
Performance Analysis Of Policy Based Mobile Virtualization in Smartphones Using MOSES Algorithm Ms.MALARVIZHI.M, Mrs.RAJESWARI.P Abstract: Now a day s most of the people used in smart phones. Smartphone
Performance Measuring in Smartphones Using MOSES Algorithm
Performance Measuring in Smartphones Using MOSES Algorithm Ms.MALARVIZHI.M, Mrs.RAJESWARI.P ME- Communication Systems, Dept of ECE, Dhanalakshmi Srinivasan Engineering college, Perambalur, Tamilnadu, India,
BEHAVIOR BASED CREDIT CARD FRAUD DETECTION USING SUPPORT VECTOR MACHINES
BEHAVIOR BASED CREDIT CARD FRAUD DETECTION USING SUPPORT VECTOR MACHINES 123 CHAPTER 7 BEHAVIOR BASED CREDIT CARD FRAUD DETECTION USING SUPPORT VECTOR MACHINES 7.1 Introduction Even though using SVM presents
Practical Data Science with Azure Machine Learning, SQL Data Mining, and R
Practical Data Science with Azure Machine Learning, SQL Data Mining, and R Overview This 4-day class is the first of the two data science courses taught by Rafal Lukawiecki. Some of the topics will be
Enhancing the SNR of the Fiber Optic Rotation Sensor using the LMS Algorithm
1 Enhancing the SNR of the Fiber Optic Rotation Sensor using the LMS Algorithm Hani Mehrpouyan, Student Member, IEEE, Department of Electrical and Computer Engineering Queen s University, Kingston, Ontario,
The 8 th International Scientific Conference elearning and software for Education Bucharest, April 26-27, 2012 10.5682/2066-026X-12-115
The 8 th International Scientific Conference elearning and software for Education Bucharest, April 26-27, 2012 10.5682/2066-026X-12-115 TRADE-OFFS IN DEVELOPING HIGHLY INTERACTIVE MLEARNING CONTENT USING
Domain Name Abuse Detection. Liming Wang
Domain Name Abuse Detection Liming Wang Outline 1 Domain Name Abuse Work Overview 2 Anti-phishing Research Work 3 Chinese Domain Similarity Detection 4 Other Abuse detection ti 5 System Information 2 Why?
Azure Machine Learning, SQL Data Mining and R
Azure Machine Learning, SQL Data Mining and R Day-by-day Agenda Prerequisites No formal prerequisites. Basic knowledge of SQL Server Data Tools, Excel and any analytical experience helps. Best of all:
131-1. Adding New Level in KDD to Make the Web Usage Mining More Efficient. Abstract. 1. Introduction [1]. 1/10
1/10 131-1 Adding New Level in KDD to Make the Web Usage Mining More Efficient Mohammad Ala a AL_Hamami PHD Student, Lecturer m_ah_1@yahoocom Soukaena Hassan Hashem PHD Student, Lecturer soukaena_hassan@yahoocom
Cell Phone Based Liquid Inventory Management Using Wireless System
Sciknow Publications Ltd. JMIR 2013, 1(1):1-6 Journal of Mechanics & Industry Research DOI: 10.12966/JMIR.05.01.2013 Attribution 3.0 Unported (CC BY 3.0) Cell Phone Based Liquid Inventory Management Using
Activity recognition in ADL settings. Ben Kröse [email protected]
Activity recognition in ADL settings Ben Kröse [email protected] Content Why sensor monitoring for health and wellbeing? Activity monitoring from simple sensors Cameras Co-design and privacy issues Necessity
A General Framework for Tracking Objects in a Multi-Camera Environment
A General Framework for Tracking Objects in a Multi-Camera Environment Karlene Nguyen, Gavin Yeung, Soheil Ghiasi, Majid Sarrafzadeh {karlene, gavin, soheil, majid}@cs.ucla.edu Abstract We present a framework
ANALYTICS IN BIG DATA ERA
ANALYTICS IN BIG DATA ERA ANALYTICS TECHNOLOGY AND ARCHITECTURE TO MANAGE VELOCITY AND VARIETY, DISCOVER RELATIONSHIPS AND CLASSIFY HUGE AMOUNT OF DATA MAURIZIO SALUSTI SAS Copyr i g ht 2012, SAS Ins titut
Dynamic Load Balancing of Virtual Machines using QEMU-KVM
Dynamic Load Balancing of Virtual Machines using QEMU-KVM Akshay Chandak Krishnakant Jaju Technology, College of Engineering, Pune. Maharashtra, India. Akshay Kanfade Pushkar Lohiya Technology, College
i C A N 1 5 S w i s s C o n t e s t P r o j e c t A b s t r a c t
i C A N 1 5 S w i s s C o n t e s t P r o j e c t A b s t r a c t Project Title : EyeSpeed Team Members: Coach : Simone Gervasoni (ETH Zurich, Mutli-Scale Robotics Lab) Jan Praprotnik (ETH Zurich, Mutli-Scale
Performance Workload Design
Performance Workload Design The goal of this paper is to show the basic principles involved in designing a workload for performance and scalability testing. We will understand how to achieve these principles
An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network
Proceedings of the 8th WSEAS Int. Conf. on ARTIFICIAL INTELLIGENCE, KNOWLEDGE ENGINEERING & DATA BASES (AIKED '9) ISSN: 179-519 435 ISBN: 978-96-474-51-2 An Energy-Based Vehicle Tracking System using Principal
Ericsson T18s Voice Dialing Simulator
Ericsson T18s Voice Dialing Simulator Mauricio Aracena Kovacevic, Anna Dehlbom, Jakob Ekeberg, Guillaume Gariazzo, Eric Lästh and Vanessa Troncoso Dept. of Signals Sensors and Systems Royal Institute of
