An Effective Video Based System for Human Fall Detection
|
|
|
- May Norman
- 10 years ago
- Views:
Transcription
1 An Effective Video Based System for Human Fall Detection Hoang Le Uyen Thuc, Pham Van Tuan Abstract Falling is known as a major health risk to cause injuries and even death among seniors. An early fall detection system is therefore extremely important to reduce the serious consequences of fall. In this study we aim to design and implement a practical three-stage video-based system for detecting fall events in elderly living alone at home. A common camera is used in the first stage to capture the video of a person doing his/her daily activities and then transfer to the following processing unit. In the second stage, from each frame of the video, we first separate the interested person from the background using adaptive background Gaussian Mixture Model; then the extracted object is converted into a five-dimensional feature vector using ellipse model; and finally we analyze those extracted features to recognize a fall using Hidden Markov Model trained by a challenging stimulated fall/non-fall database. The final stage is to immediately convey an SMS alert message to the assigned phone number to ask the timely medical assistance as soon as fall detected. Experimental result through the real-life video captured within one month in a crowded public area gives the average fall recognition rate of 97.47% with the delay time from 1 to 5 seconds, providing the high applicability of the system in real world. Index Terms Fall detection, Gaussian Mixture Model (GMM), ellipse model, Hidden Markov Model (HMM). I. INTRODUCTION Fall is the most remarkable external cause of unintentional injury for the elderly. As reported by World Health Organization, approximately 8% - 35% of people aged of 65 and above fall every year and the rate increases to 3% - 4% for ones over 70 years of age. Fall is the major public health problem that often requires urgent medical attention. In addition, fall may result in a post-fall syndrome such as dependence, immobilization, depression, etc., which leads to a further restriction in daily activities. Fall accounts for 40% of all injury deaths. Consequently, the economic impact of falls is critical to family, community, and society [1]. Hence, early detection of fall in order to timely support the victims is the key strategy to mitigate fall-related injuries and their severe consequences. There have been a series of research projects all over the world on solutions for fall detection. Manuscript received Aug, 014. Hoang Le Uyen Thuc, Department of Electronic and Telecommunication Engineering, Danang University of Technology, Danang, Vietnam. Pham Van Tuan, Department of Electronic and Telecommunication Engineering, Danang University of Technology, Danang, Vietnam. Fall detection approaches can be categorized into three main classes: wearable device based, ambient device based, and video based []. Wearable device based method relies on the sensor such as accelerometers [3], or fusion of acclelerometry and posture sensors [4] to detect the motion and location of the body of the person. Although this method is cheap, it causes the specific drawbacks such as the burden of time for sensor placement and the intrinsic intrusive nature, making it to be unfavorable choice for the elderly. Most ambient device based approaches use pressure sensors [5], based on the principle of sensing high pressure of the object due to its weight for detection and tracking. Pressure sensor is very cost effective and less intrusive; however, it is necessary to place pressure sensors to many things around the monitored object and thus, leading to generate false alarms in the case of detecting a fall. In recent years, video based methods have draw much attention in the field of fall detection, thanks to the easy installation, operation and maintenance of the video camera system, as well as the great achievements of the video analysis techniques. A numerous number of researches on video analysis have been proposed for detecting a fall. For example, Foroughi et al. conduct some methods to detect the fall [6-9] based on human shape variation. Extracted features, including combination of best-fit approximated ellipse around the human body, projection histograms of the segmented silhouette and temporal changes of head pose, are fed to a multi-class SVM [6] or an MLP ANN [7] for reliable classification of motions and determination of a fall event. Other features, also widely used for fall detection, are based on the combination of integrated time motion images and Eigen space technique [8, 9]. Most of video based fall detection systems consist of three stages: video acquisition, video analysis and notification communication [], in which the video analysis stage plays a key role in the performance of the whole system. In this paper, we design and implement a practical video based fall detection system applied for the elderly living alone at home, using the video analysis algorithm from our previous work [10], including adaptive background Gaussian Mixture Model (GMM) for human object segmentation, ellipse model for feature conversion and Hidden Markov Model (HMM) for fall detection. In order to evaluate the precision, stability, and real-time applicability of the proposed system in real world, we deploy a testing system including cameras for capturing the video, computer for analyzing the video, and communication module for transmitting the SMS alert message from computer to pre-defined cell phone number in case of a fall ISSN: All Rights Reserved 014 IJARCET 80
2 detected. Experimental result through the real-life videos recorded in long term shows the designed system can rapidly and appropriately notify the caregiver of the fall accidents. Besides, the comparative study gives the favorable precision of our system in various falling scenarios. The rest of the paper is organized as follows: in Section II, we generally describe the basic architecture of the designed system. The video analysis step is then presented in Section III with more details. Experimental results, evaluation and comparative study are performed in Section IV, followed by conclusion in Section V. main phases in this stage: first, the human object is segmented from the background of image by using the adaptive GMM; second, segmented object is converted into Video acquisition Video analysis Notification communication II. OVERVIEW OF DESIGNED VIDEO BASED FALL DETECTION SYSTEM Our designed system has the basic architecture as shown in Fig. 1. The system follows three stages of operations: video acquisition, video analysis and notification communication. A. Video acquisition In this stage, we capture the video of one person doing his/her daily activities such as walking, doing exercises, sitting on chair, etc. then transmit to the computer for video analysis. First, our system emphasizes to monitor the elderly in the indoor environment with almost static background and/or corridor with acceptable lighting condition. The type of camera we are interested is IP camera, thanks to a lot of benefits such as cable not necessary, remote accessibility, image quality, and video management. In fact, two IP cameras D-Link DCS-94L [11] are installed in the crowded areas with the hope that we can record fall accidents and activities similar to falls. The main reason of choosing D-Link DCS-94L for video capture, beyond the above benefits, is it can easily switch to night mode with infrared capabilities to ensure that the senior is surveyed uninterruptedly regardless of lighting conditions. The recorded video data is then transmitted to the computer for video analysis, over a wireless router. In order to ensure the real-time processing requirement of the system, the selected router need the sufficient transfer rate (up to 300 Mbps). Besides, language C++ [1] and library OpenCV [13] are used to design the interface between camera and computer. In addition, the selected data transfer protocol for IP camera is Real Time Streaming Protocol (RTSP), which is suitable in end-to-end, real-time transferring the stream of video. After being read from OpenCV, video data need to be analyzed for fall detection. In our system we employ Matlab in achieving this goal. Therefore, we use open source software package MexopenCV, which provides Matlab mex functions that interface Application Programming Interfaces (APIs) of OpenCV [14]. B. Video analysis In this stage, video stream is analyzed frame-by-frame by our designed software to detect the occurrence of a fall, mainly based on our previous algorithm [10]. There are three Figure 1. Basic architecture of the designed video based fall detection system. five-dimensional feature based on the ellipse model; and finally, fall event is identified among other activities by HMM. In our system, the above algorithms are programmed using available toolboxes of Matlab 01a including Image Acquisition Toolbox, Computer Vision System Toolbox, HMM Toolbox, thanks to their great suitability in the sophisticated computing. The used computer requires the configuration as follows: - Processor: Intel(R) Core(TM) Processor i GHz. - Cache: 3MB L3. - Ram: GB DDR3 1066Mhz 4 slot. - Hard drive: 500GB SATA 700RPM. - Graphics: Intel HD Graphics. - Data speed: 10/ 100/ 1000Mbps The details of the three-step video analysis technique including human object segmentation, feature conversion, and fall recognition will be presented in Section III. C. Notification communication Whenever a fall is detected, the alarm sound and text notification are displayed in the monitoring screen. Besides, in our system, notification communication is designed to communicate with the caregiver by sending an SMS notification message to the pre-assigned cell phone number to ask for immediate assistance. Module SIM900A is used in the system, providing benefits from small size and cost-effective solutions [15]. SIM900A delivers GSM/GPRS 900/1,800MHz performance for SMS, quite meet the cellular frequency band of mobile carriers in the country. III. VIDEO ANALYSIS The overview of the video analysis stage is shown in Fig.. The objective of this stage is to detect a fall incident of people in the incoming video stream. There are three main processing steps including human object segmentation, feature conversion, and fall recognition. A. Human object segmentation As the first process in video analysis module, human object ISSN: All Rights Reserved 014 IJARCET 81
3 Input video frames Figure. Object segmentation Feature conversion Fall recognition Functional diagram of video analysis module. Output event segmentation plays a key role in providing a proper silhouette for the following units to improve the fall detection accuracy under poor background conditions. In this study, we apply adaptive background GMM approach [16] to distinguish moving human from the rest of image which is called background. At time t, the value of pixel at (x 0, y 0 ) in frame is X t. The recent history of each pixel, {X 1,, X t }, is constructed by a GMM with K components. The probability of observing the current pixel value can be calculated by, K p( X t ) i, t( Xt, i, t, i, t) i1 (1) where ω i,t is an estimated weight of the i th Gaussian distribution at time t, η is the pdf of i th Gaussian distribution, μ i,t is the mean value of the i th Gaussian at time t, and Σ i,t is the covariance matrix of the i th Gaussian at time t. Thus, a new pixel value will be represented by one of the major components of the mixture model and used to update the model. Every new pixel value is checked against the existing K Gaussian distributions, until a match (pixel value within.5 standard deviations of a distribution) is found [16]. When none Gaussian is matched, X t is marked as a foreground pixel and the least probable component is replaced by a distribution with the current value as its mean, an initial high variance, and a low weight parameter. As the parameters of the mixture model of each pixel change, in order to determine which of the Gaussians are most likely presented the background, the Gaussians are ordered by the value of ω/σ then the first BG distributions are chosen as the background model, where b BG argmin b k T k1 () where T is the minimum fraction of the background model. After extracting the human object, some morphological operations such as closing and opening are implemented to smooth the boundary and fill the small holes to create well-defined silhouette images. The results of human object segmentation process are shown in Fig. 3 [10]. B. Feature conversion The silhouette image in each frame will be transformed into a reduced representation set of features. The chosen features should be informative and discriminative in describing an occurred fall event. In this study, we use five-dimensional features based on the ellipse model [10]. Five features are defined as follows: 1) Current angle θ, is the angle between the major axis of ellipse and horizontal axis in the current frame. This feature is calculated by, (a) (b) (c) Figure 3. (a) Original image, (b) Segmented silhouette by background subtraction, (c) Segmented silhouette by adaptive GMM. 1 i j. x. y. I( i, j).arctan i j. x. I( i, j) i j. y. I( i, j) (3) where i, j: position of pixel, x = i O x and y = j O y (O x, O y : position of centroid, I(i,j): value of pixel (i,j). Examples of current angle are shown in Fig. 4 [10]. ) Coefficient of motion Cmotion, is to show the motion rate of the human in the current frame t. It depends on the Motion History Image (MHI) of 15 consecutive frames from the (t-14) th frame to the t th frame. In an MHI, pixel value is a function of the recency of motion in a sequence at that pixel, i.e., more recently moving pixel is brighter than the past ones. Fig. 5 shows an example of MHI from walking sequence [10]. Cmotion is calculated by, # Gray pixel Cmotion # Gray pixel # White pixel (4) When a fall occurs Cmotion is rather high [17]. 3) Deviation of the angle Ctheta, is standard deviation of 15 angles θs of 15 consecutive frames. Ctheta is usually higher when a fall happens [17]. 4) Eccentricity e, can be thought of as a measure of how much the surrounded ellipse deviates from being circular. The eccentricity at current frame is computed as, e b 1 a (5) where a and b are semi-major and semi-minor axes of ellipse, respectively. In case of falling human facing directly to camera, e will decrease rapidly [17]. 5) Deviation of the centroid Ccentroid, is defined as standard deviation of centroid coordinates from 15 successive frames. Ccentroid decreases rapidly when a fall occurs [17]. C. Fall recognition In our system, fall recognition is performed using discrete-state HMM [18]. An HMM is completely characterized by a set λ = {A, B, π}, where A = transition matrix = {a ij }, with a ij being the transition probability from state q i to q j, (i, j) ϵ [1: J); B = observation matrix = {b j (k)}, with b j (k) being the probability of observed output (discrete) symbol v k at state q j, k ϵ [1: K); π = {π i }, with π i being the initial state probability; J = number of states; K = number of observed symbols. There are several types of HMMs depending on the transition matrix A [18]. For our application, 5-state left-to-right model as in Fig. 6 has been found to be most ISSN: All Rights Reserved 014 IJARCET 8
4 Figure 4. Examples ellipse model and its current angle. is taken into decoding process. Then we calculate the probability of each model generating this sequence of feature vectors to measure the likelihood between the model and the testing frame sequence. After that, we compare these two probabilities to make the decision to label 1 (if fall model is more likelihood) or 0 (if non-fall model is more likelihood). Finally, we store the successive 0 labels in a label- buffer. If the total number of 1 in this buffer is greater than a predefined threshold Th then the fall accident is detected. This procedure of label-buffer is for the purpose of decreasing Figure 5. An example of MHI and coressponding Cmotion, appropriate. In this model, initial state probability is π = {1, 0, 0, 0, 0}, The use of HMM covers two phases which are training and testing. The data to feed HMM is from self-built stimulated fall/non-fall videos. The whole database is divided into two sets for training and testing. 1) The training process is carried out in the two following steps: Vector quantization: In order to feed data to discrete-state HMM, a vector quantization process (e.g., K-means clustering) is necessary to map each training feature vector to a symbol among K symbols. On the other hand, quantization process helps to build a codebook with K codewords. Clearly, vector quantization causes quantization distortion and it is required to keep this distortion as small as possible. However, this implies a large value of K and that leads to slow processing speed. In this study, through experiments, we choose the value of K as 96 to balance the quantization distortion and processing speed. Thus, vector quantization converts a sequence of 5-dimensional feature vectors into a corresponding sequence of integer numbers (or codeword indexes) of the same-length. Model building: In order to detect the fall action from the other non-fall actions, two HMMs (one for fall and one for non-fall action) are built to optimize the corresponding state transition matrices As and observation matrices Bs in order that the symbols generated by corresponding HMM can fit for the observed feature vectors. The observed feature vectors for fall/non-fall model are feature vectors which were quantized to become integer numbers (or codeword indexes) from training set of fall/non-fall videos. The matrices A and B are initially assigned with random values, then the Baum-Welch algorithm [18] is run until convergence condition is satisfied. If it runs over 10,000 times without convergence, it will be forced to be stopped. ) The testing process is including two following steps: Vector encoding: The Euclidean distance between each testing feature vector to each codeword in the codebook is calculated. Then the testing feature is encoded as the index of the nearest codeword. Decoding and decision: First, a vector containing 15 integer numbers (i.e., 15 encoded feature vectors from 15 consecutive testing frames) the rate of false detection. Figure 6. Five-state left-to-right HMM. IV. SYSTEM EVALUATION The evaluation of the video analysis algorithm used in this system is performed through a self-built stimulated fall/non-fall database HBU-DUT [19]. In addition, the test of the entire developed system in real life conditions within a long term is also implemented to check the applicability of the system in real world. A. Self-built database Each of seven volunteers is instructed to perform a set of predefined actions including falling and non-falling. The volunteers are various genders, ages, weights, and heights. Each action is performed multiple times by multiple persons in various speeds. Some non-fall actions are extremely similar to fall actions such as bending, lying on floor, or creeping. Falling actions include different types caused by different reasons, such as fall by slip, fall by stumble, fall by roll, fall by faint, or fall by stroke. These help the database to be diversity and challenging. In total, we collect 134 stimulated videos including 65 fall and 69 non-fall videos. All videos are compressed in.avi format and recorded by camera D-Link DCS-94L [11] in a small room under good or quite good lighting conditions. Based on the camera viewpoint we classify the action videos into three classes which are frontal view, side view, and arbitrary view. Thus, we have frontal-view fall, frontal-view walk, frontal-view creep, side-view fall, side-view walk, etc. Fig. 7 shows some examples of fall and non-fall actions in the database. B. Experiments and evaluation In this study, we divided the whole database into two sets: 31 videos including 15 fall videos and 16 non-fall videos for training and the rest for testing. The testing set is grouped into three subsets which are named as Test 1, Test, and Test3 corresponding to three different testing scenarios as well-match (WM), medium-mismatched (MM) and highly-mismatched (HM) conditions, respectively. This grouping is designed to qualify ISSN: All Rights Reserved 014 IJARCET 83
5 100 (a) Falling by stumble (e) Bending BGS-TM BGS-NN BGS-HMM GMM-NN GMM-HMM (b) Falling by stroke (f) Creeping 0 Test 1 Test Test 3 Total Figure 8. Fall detection rates in all testing circumstances for various video analysis methods. Figure 7. Image frames of fall and non-fall actions in the database. robustness of the developed algorithms. WM set is very similar to training set. In each clip there is only one person doing actions with static background. MM set is similar to training set but the environment brightness and camera position are changed. HM set contains much changes in actions and recording conditions compared to training set such as: human is partly occluded, background is changed with added static objects, or there are more than one moving object in the sense. In these experiments, we use three statistical measures which are Recall [%], Precision [%], and Accuracy [%] to evaluate the algorithm [0]. The performance of the employed fall detection algorithm obtained through three above experiments on three different testing sets is presented in Table I [10]. The overall performance of the algorithm is quite suitable to practice, achieving the maximal result (i.e, 100%) for the least challenging scenario (i.e., WM test) and dramatically drop to 8.35% for the most challenging scenario (i.e., HM test), but still provides the reasonably good performance. To further evaluate the deployed fall detection algorithm, we also compare this algorithm with four previous algorithms using the same database under the similar experimental scenarios. Four algorithms used to compare are background subtraction threshold matching (BGS-TM) [10], background subtraction neural network (BGS-NN) [17], background subtraction HMM (BGS-HMM) [10], and adaptive GMM - neural network (GMM-NN) [1]. The total accuracies are 69.90%, 8.69%, 81.35%, and 86.38%, respectively and are showed in Fig. 8. Thus, with the total accuracy of 87.38%, the fall detection algorithm used in this study is quite dominant. TABLE I. (c) Falling by slip (d) Rolling (g) Sitting on chair (h) Lying on floor STATISTICAL RESULTS OF THE FALL DETECTION ALGORITHM C. Testing the developed system The developed fall detection algorithm has been evaluated in many circumstances, providing promising results. In addition, to check the feasibility, stability, and real-time response of the whole system in real world, we build a testing system and perform experiments to continuously monitor and detect fall accidents within one month. In fact, two IP cameras D-Link DCS-94L [11] are installed in the crowded areas - the lobby of building C and in front of Elect. & Telecom. Eng. Dep. office, Danang Uni. of Tech. (DUT), where a large number of students usually pass by with the hope that we can record fall accidents caused by students carelessness, playing, or teasing, as well as the similar-fall actions. Within one month, we collect 9 fall accidents with 4 falls by slip and 5 falls by playing. The number of non-fall actions are much larger. There are 665 non-fall actions, among which there are 0 one-object walks, 34 multiple-object walks, 153 down/upstairs-goes, 45 bends, 31 stairs-sits. Fig. 9 shows some fall and similar-fall images in real world. The testing system monitors online and give alarms on the monitoring screen as well as sending SMS alert message to a pre-setup cell phone number. Fig. 10 is the designed monitoring screen in cases of detecting and non detecting a fall. (a) Falls (b) Non-falls Figure 9. Practical fall/non-fall image frames Test 1 Test Test 3 Total Recall [%] Precision [%] Accuracy [%] ISSN: All Rights Reserved 014 IJARCET 84
6 Figure 10. In-place alarm when detecting/non detecting a fall. In the testing process, the developed system successfully detects 8 in 9 fall accidents, detects 16 non-fall actions as falls, accurately recognizes 649 non-fall actions. Therefore, the recognition rate achieves a remarkable result as below, Acc 97.47% 674 Unfortunately, the delay time for giving an alarm is recorded as from 1 to 5 seconds. This delay can be tolerate; however it is bigger than we expected. The most reason is the time for transmitting video signals from camera to computer, for implementing video analysis algorithm by Matlab is rather long. We are thinking of using popular commercial processors instead of computer for the better processing speed as one of our future research directions to improve the developed system. V. CONCLUSION In this paper, we have designed and implemented a practical three-stage video-based fall detection system, by exploiting our previous work which is proven to be effective in stimulated fall/non-fall scenarios. Experiments in real life within a long term show that the performance of the developed system is quite good and robust even in poor conditions such as lighting changes, added background, varied camera viewpoint, occlusion, long-term sense. The ability for real-time processing can be acceptable. In summary, the system can provide the facility for rapid and precise alarm to caregivers at a distance in emergency situations via the commercial cellular phone network. [4] J.M. Kang, T. Yoo, and H.C. Kim, A wrist-worn integrated health monitoring instrument with a tele-reporting device for telemedicine and telecare, IEEE Trans. Instrum. Meas., vol. 55, pp , 006. [5] M. Alwan, P.J. Rajendran, S. Kell, D. Mack, S. Dalal, M. Wolfe, and R. Felder, A Smart and Passive Floor-Vibration Based Fall Detector for Elderly, IEEE International Conference on Information & Communication Technologies (ICITA), pp , 006. [6] H. Foroughi, A. Rezvanian, and A. Paziraee, Robust Fall Detection Using Human Shape and Multi-Class Support Vector Machine, IEEE 6 th Indian Conference on Computer Vision, Graphics & Image Processing (ICVGIP), pp , 008. [7] H. Foroughi, B.S. Aski, and H. Pourreza, Intelligent Video Surveillance for Monitoring Fall Detection of Elderly in Home Environments, IEEE 11 th International Conference on Computer and Information Technology (ICCIT), pp. 4-7, 008. [8] H. Foroughi, H.S. Yazdi, H. Pourreza, and M. Javidi, An Eigenspace-based Approach for Human Fall Detection Using Integrated Time Motion Image and Multi-class Support Vector Machine, IEEE 4 th International Conference on Intelligent Computer Communication and Processing (ICCP), pp , 008. [9] H. Foroughi, A. Naseri, A. Saberi, and H.S. Yazdi, An Eigenspace-based Approach for Human Fall Detection Using Integrated Time Motion Image and Neural Network, IEEE 9 th International Conference on Signal Processing (ICSP), pp , 008. [10] K. Tra and T. V. Pham, Human Fall Detection based on Adaptive Background Mixture Model and HMM, the 013 International conference on Advanced Technologies for Communications (ATC), pp. 17-, 013. [11] [1] W. Press, S. Teykolsky, W. Vetterling, and B. Flannery, Numerical recipes in C++: the art of scientific computing, Pearson Education, 199. [13] [14] [15] [16] C. Stauffer and W.E.L. Grimson, Adaptive background mixture models for real-time tracking, IEEE Conference of Computer Vision and Pattern Recognition, vol., pp. 46-5, [17] Y.T. Ngo, H.V. Nguyen, T.V. Pham, Study On Fall Detection Based On Intelligent Video Analysis, The 01 International Conference on Advanced Technologies for Communications (ATC), pp , 01. [18] L.R. Rabiner : A tutorial on hidden Markov models and selected applications in speech recognition, Proc. IEEE, vol. 77, no., pp , [19] H.V. Tran, P.K. Lai, K. Tra, V.Q. Truong, D.H. Le, DUT-HBU database, Technical Report, Danang University of Technology, 01. [0] T. Fawcett, ROC Graphs: Notes and Practical Considerations for Researchers, 004. [1] P.K. Lai and T.V. Pham, Gaussian Mixture Model Based Object Segmentation for Fall Detection, nd International Workshop on Industrial IT Convergence (WIIC), pp. 4-11, 014. ACKNOWLEDGMENT This study has been officially supported by Ministry Of Education and Training within the Research Project B The authors would like to thank the TRT - 3DCS Teaching Research Team at DUT: Khue Tra, Phung T.Lai, Hieu V.Nguyen, Hoan V.Tran, Viet Q.Truong, Duy H. Le for their valuable contributions to the work. REFERENCES [1] A. Kalache, D. Fu, and S. Yoshida, WHO Global Report on Falls Prevention in Older Age, World Health Organization Press, Geneva, Switzerland, 008. [] M. Mubashir, L. Shao, and L. Seed, A Survey on Fall Detection: Principles and Approaches, Neurocomputing, pp , 013. [3] M.A. Estudillo-Valderrama, L.M. Roa, J. Reina-Tosina, and D. Naranjo-Hernandez, Design and implementation of a distributed fall detection system - personal server, IEEE Trans. Inf. Technol. Biomed., vol. 13, pp , 009. Hoang Le Uyen Thuc received the B.E. degree on Electronics from Danang University of Technology (DUT), Vietnam, in 1994; the M.E. degree on Electronics-Communications from Hanoi University of Technology, Vietnam, in She is currently working toward the Ph.D. degree under the joint program between Electronic and Telecommunication Engineering (ETE) department, DUT, Vietnam and Information Processing Lab, Electrical Engineering department, University of Washington, U.S.A. She is now a lecturer of ETE department, DUT. Her research interests include signal processing, pattern recognition, and human behavior understanding. ISSN: All Rights Reserved 014 IJARCET 85
7 Pham Van Tuan was born in Hoi An ancient town, Vietnam. He received Engineering and MSc. degrees in Electronics & Telecommunications and Dr. techn. degree in Electrical Engineering from Danang University of Technology (1999), Hanoi University of Science and Technology (001) and Graz University of Technology (007). Tuan was granted with a post-doctoral scholarship at the SPSC Lab of TUGraz from 007 to 008 and promoted to Associate Professor at ETE Department, DUT since 01. He has been a lecturer at DUT since 1999, Vice-Chair of Electronic & Telecommunication Engineering Dept., DUT since 010 and Vice-Director, Center of Excellence, DUT since 011. He has published reference book and more than 50 conference, journal papers. His research interests are as follows: Detection, estimation, information theory; Speech/ Image/ Video processing and applications; Machine learning for signal processing; Real-time implementation and optimization of DSP algorithms. Assoc.Prof.Dr. Pham is IEEE member, IEEE SSCS Chapter member, member of Radio Electronics Association of Vietnam (REV). He functions in Editorial Board, REV Journal on Electronics and Communications, Vietnam. He joins TPC of many international conferences as IEEE-RIVF 009, IEEE-ICCE 010, IEEE-ATC 011, GIIS 011, UK-VN ASSW 01, UK-VN ICBSBE 01, IEEE-ATC 014, REV-ECIT014. ISSN: All Rights Reserved 014 IJARCET 86
Vision based approach to human fall detection
Vision based approach to human fall detection Pooja Shukla, Arti Tiwari CSVTU University Chhattisgarh, [email protected] 9754102116 Abstract Day by the count of elderly people living alone at home
Fall detection in the elderly by head tracking
Loughborough University Institutional Repository Fall detection in the elderly by head tracking This item was submitted to Loughborough University's Institutional Repository by the/an author. Citation:
Journal of Industrial Engineering Research. Adaptive sequence of Key Pose Detection for Human Action Recognition
IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Adaptive sequence of Key Pose Detection for Human Action Recognition 1 T. Sindhu
Tracking and Recognition in Sports Videos
Tracking and Recognition in Sports Videos Mustafa Teke a, Masoud Sattari b a Graduate School of Informatics, Middle East Technical University, Ankara, Turkey [email protected] b Department of Computer
Privacy Preserving Automatic Fall Detection for Elderly Using RGBD Cameras
Privacy Preserving Automatic Fall Detection for Elderly Using RGBD Cameras Chenyang Zhang 1, Yingli Tian 1, and Elizabeth Capezuti 2 1 Media Lab, The City University of New York (CUNY), City College New
Neural Network based Vehicle Classification for Intelligent Traffic Control
Neural Network based Vehicle Classification for Intelligent Traffic Control Saeid Fazli 1, Shahram Mohammadi 2, Morteza Rahmani 3 1,2,3 Electrical Engineering Department, Zanjan University, Zanjan, IRAN
Speed Performance Improvement of Vehicle Blob Tracking System
Speed Performance Improvement of Vehicle Blob Tracking System Sung Chun Lee and Ram Nevatia University of Southern California, Los Angeles, CA 90089, USA [email protected], [email protected] Abstract. A speed
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
EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set
EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set Amhmed A. Bhih School of Electrical and Electronic Engineering Princy Johnson School of Electrical and Electronic Engineering Martin
Video Surveillance System for Security Applications
Video Surveillance System for Security Applications Vidya A.S. Department of CSE National Institute of Technology Calicut, Kerala, India V. K. Govindan Department of CSE National Institute of Technology
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
Analecta Vol. 8, No. 2 ISSN 2064-7964
EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,
Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm
Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm Choon Kiat Lee 1, Vwen Yen Lee 2 1 Hwa Chong Institution, Singapore [email protected] 2 Institute
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
LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE. [email protected]
LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE 1 S.Manikandan, 2 S.Abirami, 2 R.Indumathi, 2 R.Nandhini, 2 T.Nanthini 1 Assistant Professor, VSA group of institution, Salem. 2 BE(ECE), VSA
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
Intrusion Detection via Machine Learning for SCADA System Protection
Intrusion Detection via Machine Learning for SCADA System Protection S.L.P. Yasakethu Department of Computing, University of Surrey, Guildford, GU2 7XH, UK. [email protected] J. Jiang Department
Recognition of Day Night Activity Using Accelerometer Principals with Aurdino Development Board
Recognition of Day Night Activity Using Accelerometer Principals with Aurdino Development Board Swapna Shivaji Arote R.S. Bhosale S.E. Pawar Dept. of Information Technology, Dept. of Information Technology,
A secure face tracking system
International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 10 (2014), pp. 959-964 International Research Publications House http://www. irphouse.com A secure face tracking
Vision based Vehicle Tracking using a high angle camera
Vision based Vehicle Tracking using a high angle camera Raúl Ignacio Ramos García Dule Shu [email protected] [email protected] Abstract A vehicle tracking and grouping algorithm is presented in this work
Face Recognition For Remote Database Backup System
Face Recognition For Remote Database Backup System Aniza Mohamed Din, Faudziah Ahmad, Mohamad Farhan Mohamad Mohsin, Ku Ruhana Ku-Mahamud, Mustafa Mufawak Theab 2 Graduate Department of Computer Science,UUM
Building an Advanced Invariant Real-Time Human Tracking System
UDC 004.41 Building an Advanced Invariant Real-Time Human Tracking System Fayez Idris 1, Mazen Abu_Zaher 2, Rashad J. Rasras 3, and Ibrahiem M. M. El Emary 4 1 School of Informatics and Computing, German-Jordanian
Multimodal Biometric Recognition Security System
Multimodal Biometric Recognition Security System Anju.M.I, G.Sheeba, G.Sivakami, Monica.J, Savithri.M Department of ECE, New Prince Shri Bhavani College of Engg. & Tech., Chennai, India ABSTRACT: Security
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,
Indoor Surveillance System Using Android Platform
Indoor Surveillance System Using Android Platform 1 Mandar Bhamare, 2 Sushil Dubey, 3 Praharsh Fulzele, 4 Rupali Deshmukh, 5 Dr. Shashi Dugad 1,2,3,4,5 Department of Computer Engineering, Fr. Conceicao
Human Activities Recognition in Android Smartphone Using Support Vector Machine
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
Face Recognition in Low-resolution Images by Using Local Zernike Moments
Proceedings of the International Conference on Machine Vision and Machine Learning Prague, Czech Republic, August14-15, 014 Paper No. 15 Face Recognition in Low-resolution Images by Using Local Zernie
VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS
VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS Norbert Buch 1, Mark Cracknell 2, James Orwell 1 and Sergio A. Velastin 1 1. Kingston University, Penrhyn Road, Kingston upon Thames, KT1 2EE,
An Active Head Tracking System for Distance Education and Videoconferencing Applications
An Active Head Tracking System for Distance Education and Videoconferencing Applications Sami Huttunen and Janne Heikkilä Machine Vision Group Infotech Oulu and Department of Electrical and Information
A Lightweight and Effective Music Score Recognition on Mobile Phone
J Inf Process Syst, http://dx.doi.org/.3745/jips ISSN 1976-913X (Print) ISSN 92-5X (Electronic) A Lightweight and Effective Music Score Recognition on Mobile Phone Tam Nguyen* and Gueesang Lee** Abstract
Hardware Implementation of Probabilistic State Machine for Word Recognition
IJECT Vo l. 4, Is s u e Sp l - 5, Ju l y - Se p t 2013 ISSN : 2230-7109 (Online) ISSN : 2230-9543 (Print) Hardware Implementation of Probabilistic State Machine for Word Recognition 1 Soorya Asokan, 2
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
Product Characteristics Page 2. Management & Administration Page 2. Real-Time Detections & Alerts Page 4. Video Search Page 6
Data Sheet savvi Version 5.3 savvi TM is a unified video analytics software solution that offers a wide variety of analytics functionalities through a single, easy to use platform that integrates with
Tracking Moving Objects In Video Sequences Yiwei Wang, Robert E. Van Dyck, and John F. Doherty Department of Electrical Engineering The Pennsylvania State University University Park, PA16802 Abstract{Object
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.
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
Tracking Groups of Pedestrians in Video Sequences
Tracking Groups of Pedestrians in Video Sequences Jorge S. Marques Pedro M. Jorge Arnaldo J. Abrantes J. M. Lemos IST / ISR ISEL / IST ISEL INESC-ID / IST Lisbon, Portugal Lisbon, Portugal Lisbon, Portugal
Automated Monitoring System for Fall Detection in the Elderly
Automated Monitoring System for Fall Detection in the Elderly Shadi Khawandi University of Angers Angers, 49000, France [email protected] Bassam Daya Lebanese University Saida, 813, Lebanon Pierre
CCTV - Video Analytics for Traffic Management
CCTV - Video Analytics for Traffic Management Index Purpose Description Relevance for Large Scale Events Technologies Impacts Integration potential Implementation Best Cases and Examples 1 of 12 Purpose
Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control
보안공학연구논문지 (Journal of Security Engineering), 제 8권 제 3호 2011년 6월 Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control Ji-Hoon Lim 1), Seoksoo Kim 2) Abstract With
Online Farsi Handwritten Character Recognition Using Hidden Markov Model
Online Farsi Handwritten Character Recognition Using Hidden Markov Model Vahid Ghods*, Mohammad Karim Sohrabi Department of Electrical and Computer Engineering, Semnan Branch, Islamic Azad University,
SPEAKER IDENTIFICATION FROM YOUTUBE OBTAINED DATA
SPEAKER IDENTIFICATION FROM YOUTUBE OBTAINED DATA Nitesh Kumar Chaudhary 1 and Shraddha Srivastav 2 1 Department of Electronics & Communication Engineering, LNMIIT, Jaipur, India 2 Bharti School Of Telecommunication,
International Journal of Advanced Information in Arts, Science & Management Vol.2, No.2, December 2014
Efficient Attendance Management System Using Face Detection and Recognition Arun.A.V, Bhatath.S, Chethan.N, Manmohan.C.M, Hamsaveni M Department of Computer Science and Engineering, Vidya Vardhaka College
A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA
A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA N. Zarrinpanjeh a, F. Dadrassjavan b, H. Fattahi c * a Islamic Azad University of Qazvin - [email protected]
False alarm in outdoor environments
Accepted 1.0 Savantic letter 1(6) False alarm in outdoor environments Accepted 1.0 Savantic letter 2(6) Table of contents Revision history 3 References 3 1 Introduction 4 2 Pre-processing 4 3 Detection,
Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization
Journal of Computer Science 6 (9): 1008-1013, 2010 ISSN 1549-3636 2010 Science Publications Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization
Human behavior analysis from videos using optical flow
L a b o r a t o i r e I n f o r m a t i q u e F o n d a m e n t a l e d e L i l l e Human behavior analysis from videos using optical flow Yassine Benabbas Directeur de thèse : Chabane Djeraba Multitel
Real Time Target Tracking with Pan Tilt Zoom Camera
2009 Digital Image Computing: Techniques and Applications Real Time Target Tracking with Pan Tilt Zoom Camera Pankaj Kumar, Anthony Dick School of Computer Science The University of Adelaide Adelaide,
Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences
Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences Byoung-moon You 1, Kyung-tack Jung 2, Sang-kook Kim 2, and Doo-sung Hwang 3 1 L&Y Vision Technologies, Inc., Daejeon,
Social Media Mining. Data Mining Essentials
Introduction Data production rate has been increased dramatically (Big Data) and we are able store much more data than before E.g., purchase data, social media data, mobile phone data Businesses and customers
Vehicle Tracking System Robust to Changes in Environmental Conditions
INORMATION & COMMUNICATIONS Vehicle Tracking System Robust to Changes in Environmental Conditions Yasuo OGIUCHI*, Masakatsu HIGASHIKUBO, Kenji NISHIDA and Takio KURITA Driving Safety Support Systems (DSSS)
Detection and Recognition of Mixed Traffic for Driver Assistance System
Detection and Recognition of Mixed Traffic for Driver Assistance System Pradnya Meshram 1, Prof. S.S. Wankhede 2 1 Scholar, Department of Electronics Engineering, G.H.Raisoni College of Engineering, Digdoh
Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches
Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches PhD Thesis by Payam Birjandi Director: Prof. Mihai Datcu Problematic
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
GLOVE-BASED GESTURE RECOGNITION SYSTEM
CLAWAR 2012 Proceedings of the Fifteenth International Conference on Climbing and Walking Robots and the Support Technologies for Mobile Machines, Baltimore, MD, USA, 23 26 July 2012 747 GLOVE-BASED GESTURE
The Scientific Data Mining Process
Chapter 4 The Scientific Data Mining Process When I use a word, Humpty Dumpty said, in rather a scornful tone, it means just what I choose it to mean neither more nor less. Lewis Carroll [87, p. 214] In
SmartMonitor An Intelligent Security System for the Protection of Individuals and Small Properties with the Possibility of Home Automation
Sensors 2014, 14, 9922-9948; doi:10.3390/s140609922 OPEN ACCESS sensors ISSN 1424-8220 www.mdpi.com/journal/sensors Article SmartMonitor An Intelligent Security System for the Protection of Individuals
ECE 533 Project Report Ashish Dhawan Aditi R. Ganesan
Handwritten Signature Verification ECE 533 Project Report by Ashish Dhawan Aditi R. Ganesan Contents 1. Abstract 3. 2. Introduction 4. 3. Approach 6. 4. Pre-processing 8. 5. Feature Extraction 9. 6. Verification
Face Model Fitting on Low Resolution Images
Face Model Fitting on Low Resolution Images Xiaoming Liu Peter H. Tu Frederick W. Wheeler Visualization and Computer Vision Lab General Electric Global Research Center Niskayuna, NY, 1239, USA {liux,tu,wheeler}@research.ge.com
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
Totally Wireless Video Security
Traditional Video Surveillance ($50,000+) vs. Event-Based Videofied Solution ($2,500) Executive Summary: Totally Wireless Video Security has been effective but cost and complexity has limited deployment
TELEMETRY NETWORK INTRUSION DETECTION SYSTEM
TELEMETRY NETWORK INTRUSION DETECTION SYSTEM Authors: Nadim Maharjan and Paria Moazzemi Advisors: Dr. Richard Dean, Dr. Farzad Moazzami and Dr. Yacob Astatke Department of Electrical and Computer Engineering
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,
Real-Time Event Detection System for Intelligent Video Surveillance
DLSU Engineering e-journal Vol. 1 No. 2, September 2007, pp.31-39 Real-Time Event Detection System for Intelligent Video Surveillance Timothy John A. Chua Andrew Jonathan W. Co Paolo Javier S. Ilustre
AN IMPROVED DOUBLE CODING LOCAL BINARY PATTERN ALGORITHM FOR FACE RECOGNITION
AN IMPROVED DOUBLE CODING LOCAL BINARY PATTERN ALGORITHM FOR FACE RECOGNITION Saurabh Asija 1, Rakesh Singh 2 1 Research Scholar (Computer Engineering Department), Punjabi University, Patiala. 2 Asst.
Development of a Service Robot System for a Remote Child Monitoring Platform
, pp.153-162 http://dx.doi.org/10.14257/ijsh.2014.8.5.14 Development of a Service Robot System for a Remote Child Monitoring Platform Taewoo Han 1 and Yong-Ho Seo 2, * 1 Department of Game and Multimedia,
Intelligent Home Automation and Security System
Intelligent Home Automation and Security System Ms. Radhamani N Department of Electronics and communication, VVIET, Mysore, India ABSTRACT: In todays scenario safer home security is required, As the technology
Broadband Networks. Prof. Dr. Abhay Karandikar. Electrical Engineering Department. Indian Institute of Technology, Bombay. Lecture - 29.
Broadband Networks Prof. Dr. Abhay Karandikar Electrical Engineering Department Indian Institute of Technology, Bombay Lecture - 29 Voice over IP So, today we will discuss about voice over IP and internet
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
Proposal FALL DETECTION. ECE4007 Senior Design Project. Section L05, Fall Detection Team. Nicholas Chan, Group Leader.
Proposal FALL DETECTION ECE4007 Senior Design Project Section L05, Fall Detection Team Nicholas Chan, Group Leader Akshay Patel Abhishek Chandrasekhar Hahnming Lee Submitted February 4, 2009 Fall Detection
Survey of Fall Detection and Daily Activity Monitoring Techniques
Survey of Fall Detection and Daily Activity Monitoring Techniques Farrukh Hijaz, Nabeel Afzal, Talal Ahmad and Osman Hasan School of Electrical Engineering and Computer Science, National University of
EXPLORING IMAGE-BASED CLASSIFICATION TO DETECT VEHICLE MAKE AND MODEL FINAL REPORT
EXPLORING IMAGE-BASED CLASSIFICATION TO DETECT VEHICLE MAKE AND MODEL FINAL REPORT Jeffrey B. Flora, Mahbubul Alam, Amr H. Yousef, and Khan M. Iftekharuddin December 2013 DISCLAIMER The contents of this
An Intelligent Video Surveillance Framework for Remote Monitoring M.Sivarathinabala, S.Abirami
An Intelligent Video Surveillance Framework for Remote Monitoring M.Sivarathinabala, S.Abirami Abstract Video Surveillance has been used in many applications including elderly care and home nursing etc.
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
Lecture 9: Introduction to Pattern Analysis
Lecture 9: Introduction to Pattern Analysis g Features, patterns and classifiers g Components of a PR system g An example g Probability definitions g Bayes Theorem g Gaussian densities Features, patterns
Predict Influencers in the Social Network
Predict Influencers in the Social Network Ruishan Liu, Yang Zhao and Liuyu Zhou Email: rliu2, yzhao2, [email protected] Department of Electrical Engineering, Stanford University Abstract Given two persons
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
Scheduling Allowance Adaptability in Load Balancing technique for Distributed Systems
Scheduling Allowance Adaptability in Load Balancing technique for Distributed Systems G.Rajina #1, P.Nagaraju #2 #1 M.Tech, Computer Science Engineering, TallaPadmavathi Engineering College, Warangal,
An Algorithm for Automatic Base Station Placement in Cellular Network Deployment
An Algorithm for Automatic Base Station Placement in Cellular Network Deployment István Törős and Péter Fazekas High Speed Networks Laboratory Dept. of Telecommunications, Budapest University of Technology
A Pervasive Way: Elderly People Falling Detection and Ambient Intelligence
A Pervasive Way: Elderly People Falling Detection and Ambient Intelligence Chung-Ching Huang 919 E. 10 TH St. Bloomington, IN 47408 USA [email protected] Tak-Lon Wu 150 S. Woodlawn Ave Bloomington, IN
An Efficient Way of Denial of Service Attack Detection Based on Triangle Map Generation
An Efficient Way of Denial of Service Attack Detection Based on Triangle Map Generation Shanofer. S Master of Engineering, Department of Computer Science and Engineering, Veerammal Engineering College,
A Reliability Point and Kalman Filter-based Vehicle Tracking Technique
A Reliability Point and Kalman Filter-based Vehicle Tracing Technique Soo Siang Teoh and Thomas Bräunl Abstract This paper introduces a technique for tracing the movement of vehicles in consecutive video
Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies
Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com
Fig. 1 BAN Architecture III. ATMEL BOARD
Volume 2, Issue 9, September 2014 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online
Implementation of Canny Edge Detector of color images on CELL/B.E. Architecture.
Implementation of Canny Edge Detector of color images on CELL/B.E. Architecture. Chirag Gupta,Sumod Mohan K [email protected], [email protected] Abstract In this project we propose a method to improve
Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior
Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior Kenji Yamashiro, Daisuke Deguchi, Tomokazu Takahashi,2, Ichiro Ide, Hiroshi Murase, Kazunori Higuchi 3,
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,
A Content based Spam Filtering Using Optical Back Propagation Technique
A Content based Spam Filtering Using Optical Back Propagation Technique Sarab M. Hameed 1, Noor Alhuda J. Mohammed 2 Department of Computer Science, College of Science, University of Baghdad - Iraq ABSTRACT
Signature Region of Interest using Auto cropping
ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 1 Signature Region of Interest using Auto cropping Bassam Al-Mahadeen 1, Mokhled S. AlTarawneh 2 and Islam H. AlTarawneh 2 1 Math. And Computer Department,
A New Approach For Estimating Software Effort Using RBFN Network
IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.7, July 008 37 A New Approach For Estimating Software Using RBFN Network Ch. Satyananda Reddy, P. Sankara Rao, KVSVN Raju,
AirCam OD-325HD-2.5MM
H.264 MegaPixel Outdoor 25M IR Night vision POE Camera T AirCam OD-325HD-2.5MM AirCam OD-325HD-2.5MM is a high-end 1.3 MegaPixel network camera designed for professional outdoor surveillance and security
Gsm Based Controlled Switching Circuit Between Supply Mains and Captive Power Plant
International Journal of Computational Engineering Research Vol, 03 Issue, 4 Gsm Based Controlled Switching Circuit Between Supply Mains and Captive Power Plant 1, Mr.S.Vimalraj, 2, Gausalya.R.B, 3, Samyuktha.V,
Chapter 4. The sleep and activities of daily living (ADL) monitoring application
Authors: Yuchen-Huang (2014-07-30); recommended: Yeh-Liang Hsu(2014-08-01). Chapter 4. The sleep and activities of daily living (ADL) monitoring application Long-term ADL profiles of the older adults acquired
