A Tutorial of the Mobile Multimedia Wireless Sensor Network OMNeT++ Framework

Size: px
Start display at page:

Download "A Tutorial of the Mobile Multimedia Wireless Sensor Network OMNeT++ Framework"

Transcription

1 A Tutorial of the Mobile Multimedia Wireless Sensor Network OMNeT++ Framework Zhongliang Zhao, Denis Rosário,, Torsten Braun, Eduardo Cerqueira Institute of Computer Science and Applied Mathematics, University of Bern, Switzerland Faculty of Computer Engineering and Telecommunication, Federal University of Para, Brazil Abstract In this work, we will give a detailed tutorial instruction about how to use the Mobile Multi-Media Wireless Sensor Networks (M3WSN) simulation framework. The M3WSN framework has been published as a scientific paper in the 6th International Workshop on OMNeT++ (2013) [1]. M3WSN framework enables the multimedia transmission of real video sequence. Therefore, a set of multimedia algorithms, protocols, and services can be evaluated by using QoE metrics. Moreover, key video-related information, such as frame types, GoP length and intra-frame dependency can be used for creating new assessment and optimization solutions. To support mobility, M3WSN utilizes different mobility traces to enable the understanding of how the network behaves under mobile situations. This tutorial will cover how to install and configure the M3WSN framework, setting and running the experiments, creating mobility and video traces, and how to evaluate the performance of different protocols. The tutorial will be given in an environment of Ubuntu LTS and OMNeT Index Terms Mobile Multimedia Wireless Sensor Networks, Simulation framework. I. INTRODUCTION The rapid development of low-cost technologies involving camera sensors and scalar sensors have made Wireless Multimedia Sensor Networks (WMSNs) emerging topics. WMSNs promise a wide range of applications in Internet of Things (IoT) and Smart cities, such as environment surveillance, traffic monitoring, etc. Many OMNeT++ frameworks have been proposed to study protocols in wired and wireless networks, in which Castalia includes advanced wireless channel and radio models, power consumption models, as well as MAC and routing protocols for wireless sensor networks (WSNs). However, Castalia does not provide any functionality for video transmission, control and evaluation as expected for emerging multimedia applications. This is mainly due to the fact Castalia was designed for scalar sensor network simulation. Wireless Simulation Environment for Multimedia Networks (WiSE-MNet) [2] incorporates some of Castalias functionalities/features to provide a generic network-oriented simulation environment for WMSNs. WiSE-MNet addresses the need for co-designing network protocols and distributed algorithms for WMSNs. Even though designed for WMSNs, WiSE-MNet does not provide video control and QoE support, which is a key characteristic to enable multimedia evaluation from the users perspective. Additionally, it considers an idealistic communication mechanism to test algorithms without taking into account the unreliable nature of wireless medium. Moreover, WiSE-MNet does not support node mobility with complex traces as expected in many smart cities applications. The Wireless Video Sensor Network (WVSN) model proposes a simulation model for video sensor networks. It defines the sensing range of camera nodes by a Field of View (FoV), which is more realistic for WMSNs. Additionally, depending on the number of nodes, the model determines the coversets for each sensor node and computes the percentage of coverage for each cover-set. Then, this information is used to increase the frame capture rate, e.g., a node has a higher capture rate when it has more covers. However, this work also fails in providing an accuracy video transmission and evaluation approach, and no mobility is supported. In this context, it is clear that the existing OMNeT++ frameworks have no support for transmission, control and evaluation of real video sequences as required for many WMSNs and smart cities scenarios. Therefore, a QoE-aware and video-related framework that manages video flows with different characteristics, types, GoP lengths, and coding, are required. This framework should also be able to collect information about the type of every received/lost frame, frame delay, jitter and decoding errors, as well as inter and intraframe dependency of the received/distorted videos, such that a set of mobile multimedia-based protocols can be evaluated and improved. M3WSN extends Castalia by integrating the functionalities of both WiSE-MNet and WVSN models, such that it supports transmission, control and evaluation of real video sequences in mobile WMSNs. II. GETTING STARTED To support mobile object detection and tracking, certain image/video processing libraries are required. The Open Source Computer Vision Library (OpenCV) [3] is the most used library to detect, track, and understand the surrounding world captured by image sensors. OpenCV is released under a BSD license and hence it is free for both academic and commercial use. It has C++, C, Python and Java interfaces and supports different operating systems. The library can take advantage of multi-core processing. Enabled with OpenCL, it can take advantage of the hardware acceleration of the underlying heterogeneous compute platform. Therefore, the first step is to install and configure OpenCV library.

2 A. Installation Steps III. OPENCV INSTALLATION To install and configure OpenCV, complete the following steps. The commands shown in each step can be copied and pasted directly into a Linux command line. 1. Remove any installed version of ffmpeg and x264: $ sudo apt-get remove ffmpeg x264 libx264-dev 2. Get all the dependencies for x264 and ffmpeg: $ sudo apt-get update $ sudo apt-get install build-essential checkinstall git cmake libfaac-dev libjackjackd2-dev libmp3lam-dev libopencore-amrnb-dev libopencore-amrwb-dev libsdl1.2-dev libtheora -dev libva-dev libvdpau-dev libvorbis-dev libx11-dev libsfixes-dev libxvidcore-dev texi2html yasm zlib1g-dev 3. Download and install gstreamer: $ sudo apt-get install libgstreamer libgstreamer0.10-dev gstreamer0.10-tools gstreamer0.10-plugins-base libgstreamerplugins-base0.10-dev gstreamer0.10-pluginsgood gstreamer0.10-plugins-ugly gstreamer0.10- plugins-bad gstreamer0.10-ffmpeg 4. Download and install gtk: $ sudo apt-get install libgtk2.0-0 libgtk2.0-dev 5. Download and install libjpeg: $ sudo apt-get install libjpeg8 libjpeg8-dev 6. Download, install, configure, and build x264 libraries: $ wget ftp://ftp.videolan.org/pub/videolan/x264/ snapshots/x264-snapshot stable. $ tar xvf x264-snapshot stable.tar. bz2 $ cd x264-snapshot stable. $./configure --enable-static 7. Download, install, and configure ffmpeg libraries: $ wget $ tar xvf ffmpeg $ cd ffmpeg $./configure --enable-gpl --enable-libfaac -- enable-libmp3lame --enable-libopencore-amrnb --enable-libtheora --enable-libvorbis 8. Download and install v4l (video for Linux): $ wget v4l-utils $ tar xvf v4l-utils $ cd v4l-utils Download and install OpenCV libraries: $ wget opencvlibrary/opencv-unix/2.4.2/opencv $ tar xvf OpenCV $ cd OpenCV build $ cd build $ cmake -D CMAKE_BUILD_TYPE=RELEASE 10. Configure Linux: $ export LD_LIBRARY_PATH=/usr/local/lib $ PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/ pkgconfig $ export PKG_CONFIG_PATH B. Possible Problems During the installation process of OpenCV, several problems might be encountered. In this tutorial, we will discuss the possible errors that might block the installation procedure, and their corresponding solutions. IV. M3WSN FRAMEWORK INSTALLATION A. Downloading M3WSN The M3WSN framework can be downloaded from After downloading, unzip the file, which includes a M3WSN folder and a customized version of Castalia. B. Building the Project 1. Import Castalia-3.2 M3WSN and M3WSN project to OMNeT++ IDE. 2. Check if M3WSN has reference to Castalia-3.2 M3WSN. 3. Clean and build the project. V. CREATING VIDEO SEQUENCES Applications involving multimedia transmission must be evaluated by measuring the video quality level from the user s perspective. Due to the importance of the multimedia content, it is essential to visually determine the real impact of the event, perform object/intruder detection, and analyze the scenes based on the collected visual information. Specifically, frames with different priorities (I, P and B) compose a compressed video, and the loss of high priority frames causes severe video distortion from humans experience. For the loss of an I-frame, the errors propagate through the rest of the Group of Picture (GoP), because the decoder uses the I-frame as the reference frame for other frames within a GoP. However, Castalia framework, including both WiSE-MNet and WVSN models, does not enable the transmission, controlling and evaluation of real video sequences. To this end, we ported Evalvid [3] for the M3WSN framework. Evalvid provides video-related information, such as frame types, received/lost frames, delay, jitter, and decoding errors, as well as inter and intra-frame dependency of the received/distorted videos. These information will be helpful to design new video transmission protocols.

3 Evalvid is a framework for video transmission and quality evaluation. Therefore, before transmitting a real video sequence, we need a video source, for instance from a video library or the user can create a new one. Once the video has been encoded, trace files have to be produced. The trace files contain all the relevant information for video transmission, and the evaluation tools provide routines to read and write these traces files for multimedia evaluation. Information about how to create video traces using Evalvid can be found in VI. CREATING MOBILITY TRACES Mobility is one of the most challenging issues in WMSNs. To understand how the network behaves under different mobility situations, the node mobility has to be simulated in a reasonable way. In this context, we have ported BonnMotion to M3WSN to support mobility. BonnMotion is a simulatorindependent tool to generate mobility traces for different mobility models. It provides several mobility models, such as the Random Waypoint model, the Gauss-Markov model, and others. The generated mobility traces can be exported to compatible simulator. Information about how to create mobility traces can be found at VII. RUNNING EXPERIMENTS Experiments can be run using both simulation IDE or using command line. We show two approaches in below. A. Using OMNeT++ IDE After successfully importing and building the project, simulations can be run by following the next steps: 1. Open some configuration files (ini file) from M3WSN/Simulations folder to run the simulations. The configuration file (ini file) describes the experiment scenario and it includes all the settings of the involved modules, i.e., applied protocols at different network layers, protocol parameters, simulation duration, etc. For instance, routing protocol/parameters, application module/parameters, and radio module/parameters can be configured as below: $SN.node[*].Communication.RoutingProtocolName = " GPSR" $SN.node[*].Communication.Routing.netBufferSize = 64 $SN.node[*].Communication.Routing. netdataframeoverhead = 6 $SN.node[1].Communication.Radio.TxOutputPower = ${ TxPower="-5dBm", "-10dBm", "-15dBm"} $SN.node[0].Communication.Radio.CCAthreshold = ${ CCAthreshold=-95, -90, -85} $SN.node[*].ApplicationName = "ThroughputTest" $SN.node[*].Application.packet_rate = 5 $SN.node[*].Application.constantDataPayload = Select Command line in the Options before running the experiments, as shown in Figure 1. Fig. 1. B. Using command line Simulation configuration using IDE In addition to running the experiment using OMNeT++ IDE, it is also possible to run simulation using command line. After building the project using IDE, the scripts at M3WSN/Simulations folder can be used to start the experiments. Additionally, M3WSN framework provides scripts to reconstruct video sequence, measure video quality level, and run simulations with different random-generated seeds. VIII. SIMULATION OUTPUTS After the simulation is finished, results will be saved in different files. A. M3WSN-result.txt The file M3WSN-file.txt is automatically generated as done in Castalia. It contains a summary of simulation procedure. The user can use some scripts to filer the results, which can be found in section 3.3 of Castalia user manual. This file is used to generate customized outputs by using output() function to the.cc file. Then, the user can use some external tool to analyze the file, and extract some results from them. By default, all tracing is turned off, and the user can turn on for each module in the.ini file. For example: $ SN.node[*].ResourceManager.collectTraceInfo = True $ SN.node[*].SensorManager.collectTraceInfo = False $ SN.node[*].Communication.Routing. collecttraceinfo = True $ SN.node[*].Communication.MAC.collectTraceInfo = True $ SN.node[*].Communication.Radio.collectTraceInfo = True $ SN.wirelessChannel.collectTraceInfo = True An example of M3WSN-result.txt is shown as below: Transmitted Videos Time Video-id Node Hops

4 B. M3WSN-Debug.txt It contains a trace of all events that the user has requested to be recored by turning on some parameters in the.ini file. This file can be used to debug the code. The user has to use the command trace() in the.cc file to add information into this file. By default, all tracing is turned off, and the user can turn on for each module in the.ini file as for the M3WSN-result.txt Here we also give show an example of M3WSN-Debug.txt: SN.node[1].Application Node 1 is sending packets SN.node[0].Application Received packet #18 from Node SN.node[0].Application Received packet #19 from Node SN.node[0].Application Received packet #20 from Node SN.node[0].Application Received packet #21 from Node SN.node[0].Application Received packet #22 from Node 1 From the generated output files, we could use some scripts to extract the information of interest, such as to calculate the packet delivery ratio of a node by checking the number of transmitted packets and the number of packets successfully received by other nodes. IX. PERFORMANCE EVALUATION In this section, we introduce a use case that makes use of M3WSN framework to obtain key video-related information, such as frame type and GoP length for creating new assessment and optimization solutions. Additionally, the described use case shows the importance to evaluate the transmitted video sequences from the user s perspective. This use case scenario can be easily extended to smart cities applications. A. Scenario Description Multimedia video transmission is applicable to many situations, such as multimedia surveillance, real-time traffic monitoring, personal health care, and environmental monitoring. In this tutorial, we apply M3WSN framework in an intrusion detection scenario where static scalar and camera sensors are deployed to monitor a corridor to detect any intruder. The intrusion detection approach is based on our proposed QoE-aware FEC (Forward Error Correction) mechanism for intrusion detection in multi-tier WMSNs, which was described in [4]. In the scenario, a set of sensors performs intrusion detection using vibration sensors. Another set of camera nodes only transmit real-time videos from the intruder area, once the scalar sensors detected it. At the camera nodes, the QoEaware FEC mechanism creates redundant packets based on frame importance from user s experience, and thus reduce the packet overhead, while keeping the video with a good quality. On the basis of the multi-tier intrusion detection scenario, simulation can be carried out to evaluate the transmitted video from user s perspective by using QoE-aware FEC. Following this, we simulated a simple FEC approach, i.e., creating redundancy for all the frames (simple FEC), and also without any FEC mechanism (no-fec). The simulations were carried out and repeated 20 times with different random seed numbers to provide a confidence interval of 95%. Table I shows the simulation parameters for these solutions. TABLE I SIMULATION PARAMETERS Parameter Value Field Size 80x80 Location of Base Station 40, 0 Initial location of intruder 0, 0 Intruder movement type Random mobility Intruder velocity 1.5 Total number of Nodes 100 Number of nodes at high-tier 25 High-tier deployment Grid Low-tier deployment Uniform Transmission Power -15 dbm Path loss model Lognormal shadowing model Radio model CC2420 Video sequence Hall Video Encoding H.264 Video Format QCIF (176 x 144) Frame Rate 26 fps The intruder starts at location (0,0), and moves in a random way. The low-tier nodes have an ominidirectional sensing range, and detect the intruder by using the intruder bounding boxes. As soon as the low-tier detects the intruder, it must wake up the high-tier to send the video of the detected intruder. Video flows provide more precise information for users and authorities (e.g. the police) about the intruder, and enable them to monitor, detect, and predict the intruder s moving direction. Additionally, they allow the authorities to take precise actions in accordance with the visual information. B. Performance Metrics Existing works on multimedia area classify the videos into three categories, according to their motion and complexity, i.e. low, median and high. For example, Aguiar et al. classify the Hall video sequence (taken from the Video Trace Library) as low movement, which means that there is a small moving region on a static background, i.e. men walking in a hall [?]. We evaluated the transmitted videos by means of two well-known objective QoE metrics, i.e. Structural Similarity (SSIM) and Video Quality Metric (VQM), obtained by using the MSU Video Quality Measurement Tool (VQMT) [5]. SSIM measures the structural distortion of the video, and attempts to obtain a better correlation with the user s subjective impression. SSIM has values ranging from 0 to 1, a higher value meaning a better video quality. On the other hand, VQM measures the perception damage of video experienced, based on features of the human visual system, including distinct metric factors such as blurring, noise, color distortion and distortion blocks. A VQM value closer to 0 means a video with a better quality. C. Simulation Results In the experiments, we measure the SSIM and VQM for transmitted videos with respect to the length of the transmission route (hop numbers), as shown in Figure 2 and Figure 3

5 detection application, this is an important frame to provide users and authorities with more precise information and allow them to make actions. The benefits of the FEC mechanisms are visible by analyzing the frames in Figure 4. By comparing each transmitted frame with the original one, it is possible to see a higher distortion for the frame transmitted without using any FEC, as shown in 4(a). The frames transmitted using FEC mechanism achieves low distortion, as shown in 4(c) and 4(d). The visual evaluation is only possible due to M3WSN supports the transmission and control of real video sequences. Fig. 2. SSIM with respect to number of hops (a) Original Frame (b) No FEC (c) QoE-aware FEC (d) Simple FEC Fig. 3. VQM with respect to number of hops Fig. 4. Frame 258 of transmitted video Figure 2 shows that solutions create redundant packet improve the SSIM by around 25% compared to solutions without FEC. This is due to the fact that application-level FEC is applied as error control scheme for handling packet losses in realtime transmissions. Hence, the redundant packets can be used to reconstruct a lost frame, and thus improve the video quality from a user s perspective. Due to less transmission means less energy consumption, we can conclude that QoE-aware FEC can provide energy-efficiency, while keeping the transmitted video with a good quality. Tis is because QoE-aware FEC creates redundant packets based on frame importance and user experience to reduce network overhead. Figure 3 presents the video quality by using VQM. The VQM results demonstrate the benefits of using FEC and confirm the SSIM values. Both simple and QoE-aware approaches kept the VQM vales below the solution without FEC, and thus improve the video quality level. However, the QOE-aware FEC mechanism reduces the amount of generated redundant packet while keeping videos with an acceptable quality level. Last, to show the impact of transmitting video streams from the standpoint of an end-user, a frame was randomly selected (Frame 258) from the transmitted video, as displayed in Figure 4. Frame 258 is the moment when a man (the intruder in our application) was walking along a corridor. For intruder X. CONCLUSION This tutorial gives detailed explanations about how to install and configure the M3WSN OMNeT++ framework, which enables the transmission of real video sequence. M3WSN framework supports mobility, and it can generate real video sequences. During the tutorial, we also discuss the possible problems that might be encountered during the installation process and the corresponding solutions. M3WSN can also be used to evaluate protocols at different network stacks, e.g., routing protocols, transport protocols, or audio/video codes mechanisms. REFERENCES [1] D. Rosario, Z. Zhao, C. Silva, E. Cerqueira, and T. Braun, An omnet++ framework to evaluate video transmission in mobile wireless multimedia sensor networks, in Proceedings of the 6th International Workshop on OMNeT++, Cannes, France, March [2] C. Nastasi and A. Cavallaro, Wise-mnet: an experimental environment for wireless multimedia sensor networks, Proceedings of Sensor Signal Processing for Defence (SSPD), [3] OpenCV, Open source computer vision library, available at: http: //opencv.org/. Accessed at June [4] Z. Zhao, T. Braun, D. Rosario, E. Cerqueira, R. Immich, and M. Curado, Qoe-aware fec mechanism for intrusion detection in multi-tier wireless multimedia sensor networks, in Wireless and Mobile Computing, Networking and Communications (WiMob), 2012 IEEE 8th International Conference on, Oct [5] Msu quality measurement tool, available at:

6th International Workshop on OMNeT++

6th International Workshop on OMNeT++ 6th International Workshop on OMNeT++ An OMNeT++ Framework to Evaluate Video Transmission in Mobile Wireless Multimedia Sensor Networks Denis Rosário, Zhongliang Zhao, Claudio Silva, Eduardo Cerqueira,

More information

An OMNeT++ Framework to Evaluate Video Transmission in Mobile Wireless Multimedia Sensor Networks

An OMNeT++ Framework to Evaluate Video Transmission in Mobile Wireless Multimedia Sensor Networks An OMNeT++ Framework to Evaluate Video Transmission in Mobile Wireless Multimedia Sensor Networks Denis Rosário Institute of Computer Science and Applied Mathematics University of Bern Bern, Switzerland

More information

WiSE-MNet. Wireless Simulation Environment for Multimedia Networks. User s Manual. Christian Nastasi

WiSE-MNet. Wireless Simulation Environment for Multimedia Networks. User s Manual. Christian Nastasi WiSE-MNet Wireless Simulation Environment for Multimedia Networks User s Manual Christian Nastasi (c.nastasi@sssup.it, nastasichr@gmail.com) December 4, 2011 Contents 1 Introduction 1 2 Overview 2 2.1

More information

QoE-aware Multiple Path Video Transmission for Wireless Multimedia Sensor Networks

QoE-aware Multiple Path Video Transmission for Wireless Multimedia Sensor Networks QoE-aware Multiple Path Video Transmission for Wireless Multimedia Sensor Networks Denis Rosário 1,2, Rodrigo Costa 1, Aldri Santos 3, Torsten Braun 2, Eduardo Cerqueira 1 1 Federal University of Pará

More information

WiSE-MNet: an experimental environment for wireless multimedia sensor networks

WiSE-MNet: an experimental environment for wireless multimedia sensor networks WiSE-MNet: an experimental environment for wireless multimedia sensor networs Christian Nastasi c.nastasi@sssup.it Andrea Cavallaro andrea.cavallaro@eecs.qmul.ac.u www.eecs.qmul.ac.u/~andrea/wise-mnet.html

More information

Evaluation and simulation of Video using EvalVid Tool

Evaluation and simulation of Video using EvalVid Tool Evaluation and simulation of Video using EvalVid Tool V.Sowmya Devi 1, Nagaratna P Hegde 2 1 Dept of CSE, GITAM University, Hyderabad, India. 2 Dept. of CSE, Vasavi College of Engineering, Hyderabad, India.

More information

Survey on QoS Aware Routing Protocols for Wireless Multimedia Sensor Networks

Survey on QoS Aware Routing Protocols for Wireless Multimedia Sensor Networks Survey on QoS Aware Routing Protocols for Wireless Multimedia Sensor Networks Malaram Kumhar 1, Vijay Ukani 2 Computer Science and Engineering Department, Institute of Technology, Nirma University, Ahmedabad,

More information

A Survey on Wireless Multimedia Sensor Network

A Survey on Wireless Multimedia Sensor Network A Survey on Wireless Multimedia Sensor Network R.Ramakrishnan, R.Ram Kumar Associate Professor, Department of MCA, SMVEC, Madagadipet, Pondicherry, India P.G. Student, Department of Information Technology,

More information

Raspberry Pi Using Open CV which Has The Installing,making Programs And Performance

Raspberry Pi Using Open CV which Has The Installing,making Programs And Performance Raspberry Pi Using Open CV which Has The Installing,making Programs And Performance nabaua Kazuhiko Inaba (inaba@kazsansan) I work as IT infrastructure as usual in Japan Others: Raspberry Pi, Zabbix, Linux,

More information

A Link Quality and Geographical-aware Routing Protocol for Video Transmission in Mobile IoT

A Link Quality and Geographical-aware Routing Protocol for Video Transmission in Mobile IoT A Link Quality and Geographical-aware outing Protocol for Video Transmission in Mobile IoT Denis osario, Zhongliang Zhao, Eduardo Cerqueira, Torsten Braun, Aldri Santos. Technical eport IAM-3-, March 28,

More information

QoE Characterization for Video-On-Demand Services in 4G WiMAX Networks

QoE Characterization for Video-On-Demand Services in 4G WiMAX Networks QoE Characterization for Video-On-Demand Services in 4G WiMAX Networks Amitabha Ghosh IBM India Research Laboratory Department of Electrical Engineering University of Southern California, Los Angeles http://anrg.usc.edu/~amitabhg

More information

Mobile Sink to Track Multiple Targets in Wireless Visual Sensor Networks

Mobile Sink to Track Multiple Targets in Wireless Visual Sensor Networks Mobile Sink to Track Multiple Targets in Wireless Visual Sensor Networks William Shaw 1, Yifeng He 1, and Ivan Lee 1,2 1 Department of Electrical and Computer Engineering, Ryerson University, Toronto,

More information

Multi-path Forward Error Correction Control Scheme with Path Interleaving

Multi-path Forward Error Correction Control Scheme with Path Interleaving Multi-path Forward Error Correction Control Scheme with Path Interleaving Ming-Fong Tsai, Chun-Yi Kuo, Chun-Nan Kuo and Ce-Kuen Shieh Department of Electrical Engineering, National Cheng Kung University,

More information

A PERFORMANCE EVALUATION OF YMAC A MEDIUM ACCESS PROTOCOL FOR WSN

A PERFORMANCE EVALUATION OF YMAC A MEDIUM ACCESS PROTOCOL FOR WSN A PERFORMANCE EVALUATION OF YMAC A MEDIUM ACCESS PROTOCOL FOR WSN Albeiro Cortés Cabezas and José de Jesús Salgado Patrón Department of Electronic Engineering, Surcolombiana University, Neiva, Colombia

More information

CHAPTER 3: LITERATURE REVIEW 3.1 NEED FOR SIMULATION ENVIRONMENT IN WSN

CHAPTER 3: LITERATURE REVIEW 3.1 NEED FOR SIMULATION ENVIRONMENT IN WSN 26 CHAPTER 3: LITERATURE REVIEW 3.1 NEED FOR SIMULATION ENVIRONMENT IN WSN Due to the continuous research progress in the field of WSN, it is essential to verify the new hardware and software design and

More information

RECOMMENDATION ITU-R BT.1720 *

RECOMMENDATION ITU-R BT.1720 * Rec. ITU-R BT.1720 1 RECOMMENDATION ITU-R BT.1720 * Quality of service ranking and measurement methods for digital video broadcasting services delivered over broadband Internet protocol networks (Question

More information

Module 7 VIDEO CODING AND MOTION ESTIMATION

Module 7 VIDEO CODING AND MOTION ESTIMATION Module 7 VIDEO CODING AND MOTION ESTIMATION Lesson 20 Basic Building Blocks & Temporal Redundancy Instructional Objectives At the end of this lesson, the students should be able to: 1. Name at least five

More information

Video-Aware Wireless Networks (VAWN) Final Meeting January 23, 2014

Video-Aware Wireless Networks (VAWN) Final Meeting January 23, 2014 Video-Aware Wireless Networks (VAWN) Final Meeting January 23, 2014 1/26 ! Real-time Video Transmission! Challenges and Opportunities! Lessons Learned for Real-time Video! Mitigating Losses in Scalable

More information

Chapter 5 Ad Hoc Wireless Network. Jang Ping Sheu

Chapter 5 Ad Hoc Wireless Network. Jang Ping Sheu Chapter 5 Ad Hoc Wireless Network Jang Ping Sheu Introduction Ad Hoc Network is a multi-hop relaying network ALOHAnet developed in 1970 Ethernet developed in 1980 In 1994, Bluetooth proposed by Ericsson

More information

Getting Familiar with the C-BGP Simulator

Getting Familiar with the C-BGP Simulator Getting Familiar with the C-BGP Simulator Anuj Sehgal, Jürgen Schönwälder School of Engineering and Science Jacobs University Bremen, Germany {s.anuj, j.schoenwaelder}@jacobs-university.de October 24,

More information

Comparison of Shaping and Buffering for Video Transmission

Comparison of Shaping and Buffering for Video Transmission Comparison of Shaping and Buffering for Video Transmission György Dán and Viktória Fodor Royal Institute of Technology, Department of Microelectronics and Information Technology P.O.Box Electrum 229, SE-16440

More information

Real-time and Reliable Video Transport Protocol (RRVTP) for Visual Wireless Sensor Networks (VSNs)

Real-time and Reliable Video Transport Protocol (RRVTP) for Visual Wireless Sensor Networks (VSNs) Real-time and Reliable Video Transport Protocol (RRVTP) for Visual Wireless Sensor Networks (VSNs) Dr. Mohammed Ahmed Abdala, Mustafa Hussein Jabbar College of Information Engineering, Al-Nahrain University,

More information

Correlation-Aware QoS Routing for Wireless Video Sensor Networks

Correlation-Aware QoS Routing for Wireless Video Sensor Networks Correlation-Aware QoS Routing for Wireless Video Sensor Networks Rui Dai, Pu Wang, and Ian F. Akyildiz Broadband Wireless Networking Laboratory School of Electrical and Computer Engineering, Georgia Institute

More information

MOBILITY MODELS FOR NEXT WIRELESS NETWORKS GENERATION WILEY AD HOC, VEHICULAR AND MESH NETWORKS. Paolo Santi

MOBILITY MODELS FOR NEXT WIRELESS NETWORKS GENERATION WILEY AD HOC, VEHICULAR AND MESH NETWORKS. Paolo Santi MOBILITY MODELS FOR NEXT GENERATION WIRELESS NETWORKS AD HOC, VEHICULAR AND MESH NETWORKS Paolo Santi Istituto di Informatica e Telematica del CNR, Italy WILEY A John Wiley & Sons, Ltd., Publication Contents

More information

Installation of Apache OpenMeetings on Ubuntu LTS. This tutorial is made based on a fresh installations of

Installation of Apache OpenMeetings on Ubuntu LTS. This tutorial is made based on a fresh installations of Installation of Apache OpenMeetings 4.0.2 on Ubuntu 18.04 LTS This tutorial is made based on a fresh installations of ubuntu-mate-18.04-beta1-desktop-amd64.iso It is tested with positive result. We will

More information

Effects of P2P Streaming on Video Quality

Effects of P2P Streaming on Video Quality Effects of P2P Streaming on Video Quality Csaba Kiraly, Luca Abeni, Renato Lo Cigno DISI - University of Trento, 00 Trento, Italy {csaba.kiraly,luca.abeni,renato.locigno}@disi.unitn.it Abstract P2P TV

More information

Maximizing the Lifetime of Clustered Wireless Sensor Network VIA Cooperative Communication

Maximizing the Lifetime of Clustered Wireless Sensor Network VIA Cooperative Communication Vol., Issue.3, May-June 0 pp--7 ISSN: - Maximizing the Lifetime of Clustered Wireless Sensor Network VIA Cooperative Communication J. Divakaran, S. ilango sambasivan Pg student, Sri Shakthi Institute of

More information

Cross-Layer Optimization for Efficient Delivery of Scalable Video over WiMAX Lung-Jen Wang 1, a *, Chiung-Yun Chang 2,b and Jen-Yi Huang 3,c

Cross-Layer Optimization for Efficient Delivery of Scalable Video over WiMAX Lung-Jen Wang 1, a *, Chiung-Yun Chang 2,b and Jen-Yi Huang 3,c Applied Mechanics and Materials Submitted: 2016-06-28 ISSN: 1662-7482, Vol. 855, pp 171-177 Revised: 2016-08-13 doi:10.4028/www.scientific.net/amm.855.171 Accepted: 2016-08-23 2017 Trans Tech Publications,

More information

EVOLVING OPTIMIZED VIDEO PROCESSING AND WIRELESS TRANSMISSION SYSTEM BASED ON ARM-CORTEX-A8 AND GSM

EVOLVING OPTIMIZED VIDEO PROCESSING AND WIRELESS TRANSMISSION SYSTEM BASED ON ARM-CORTEX-A8 AND GSM International Journal of Computer Networking, Wireless and Mobile Communications (IJCNWMC) ISSN (P): 2250-1568; ISSN(E): 2278-9448 Vol. 3, Issue 5, Dec 2013, 9-18 TJPRC Pvt. Ltd. EVOLVING OPTIMIZED VIDEO

More information

Chapter 2 Mobility Model Characteristics

Chapter 2 Mobility Model Characteristics Chapter 2 Mobility Model Characteristics Abstract The salient characteristics of mobility models of mobile nodes in mobile ad hoc networks are described. We have described how the different mobility models

More information

European Network on New Sensing Technologies for Air Pollution Control and Environmental Sustainability - EuNetAir COST Action TD1105

European Network on New Sensing Technologies for Air Pollution Control and Environmental Sustainability - EuNetAir COST Action TD1105 European Network on New Sensing Technologies for Air Pollution Control and Environmental Sustainability - EuNetAir COST Action TD1105 A Holistic Approach in the Development and Deployment of WSN-based

More information

Effects of Sensor Nodes Mobility on Routing Energy Consumption Level and Performance of Wireless Sensor Networks

Effects of Sensor Nodes Mobility on Routing Energy Consumption Level and Performance of Wireless Sensor Networks Effects of Sensor Nodes Mobility on Routing Energy Consumption Level and Performance of Wireless Sensor Networks Mina Malekzadeh Golestan University Zohre Fereidooni Golestan University M.H. Shahrokh Abadi

More information

Survey on Concurrent Multipath Scheduling for Real Time Video Streaming in Wireless Network

Survey on Concurrent Multipath Scheduling for Real Time Video Streaming in Wireless Network RESEARCH ARTICLE Survey on Concurrent Multipath Scheduling for Real Time Video Streaming in Wireless Network Rohit Salkute 1, Prof. D.G. Vyawahare 2 1(Computer Science and Engineering, SGBAU, Amravati

More information

Installation of Apache OpenMeetings on Ubuntu LTS. This tutorial is made based on fresh installations of. ubuntu desktop-amd64.

Installation of Apache OpenMeetings on Ubuntu LTS. This tutorial is made based on fresh installations of. ubuntu desktop-amd64. Installation of Apache OpenMeetings 4.0.5 on Ubuntu 14.04 LTS This tutorial is made based on fresh installations of ubuntu-14.04.2-desktop-amd64.iso It is tested with positive result. We will use the Apache's

More information

DEPLOYMENT OF OPTIMIZED ALGORITHM FOR MPEG-4 DATA OVER WIRELESS MULTIMEDIA SENSOR NETWORK

DEPLOYMENT OF OPTIMIZED ALGORITHM FOR MPEG-4 DATA OVER WIRELESS MULTIMEDIA SENSOR NETWORK DEPLOYMENT OF OPTIMIZED ALGORITHM FOR MPEG-4 DATA OVER WIRELESS MULTIMEDIA SENSOR NETWORK Norlezah Hashim 1, Sharifah Hafizah Syed Ariffin 2, Farizah Yunus 2, Fakrulradzi Idris 3 and Norsheila Fisal 2

More information

Geographical Routing Algorithms In Asynchronous Wireless Sensor Network

Geographical Routing Algorithms In Asynchronous Wireless Sensor Network Geographical Routing Algorithms In Asynchronous Wireless Sensor Network Vaishali.S.K, N.G.Palan Electronics and telecommunication, Cummins College of engineering for women Karvenagar, Pune, India Abstract-

More information

ITEE Journal. Information Technology & Electrical Engineering

ITEE Journal. Information Technology & Electrical Engineering An Overview of QoE for 5G Networks 1 Hajra Masood, 2 Safdar Rizvi, 3 Bilal Muhammad Iqbal Department of Computer Sciences, Bahria University, Karachi, Pakistan E-mail: 1 Hajra.cs@gmail.com, 2 dr.safdar@bimcs.edu.pk,

More information

CHAPTER 5 ANT-FUZZY META HEURISTIC GENETIC SENSOR NETWORK SYSTEM FOR MULTI - SINK AGGREGATED DATA TRANSMISSION

CHAPTER 5 ANT-FUZZY META HEURISTIC GENETIC SENSOR NETWORK SYSTEM FOR MULTI - SINK AGGREGATED DATA TRANSMISSION CHAPTER 5 ANT-FUZZY META HEURISTIC GENETIC SENSOR NETWORK SYSTEM FOR MULTI - SINK AGGREGATED DATA TRANSMISSION 5.1 INTRODUCTION Generally, deployment of Wireless Sensor Network (WSN) is based on a many

More information

Wireless Sensor Networks

Wireless Sensor Networks Wireless Sensor Networks c.buratti@unibo.it +39 051 20 93147 Office Hours: Tuesday 3 5 pm @ Main Building, second floor Credits: 6 Ouline 1. WS(A)Ns Introduction 2. Applications 3. Energy Efficiency Section

More information

QoS-Enabled Video Streaming in Wireless Sensor Networks

QoS-Enabled Video Streaming in Wireless Sensor Networks QoS-Enabled Video Streaming in Wireless Sensor Networks S. Guo and T.D.C. Little Department of Electrical and Computer Engineering Boston University, Boston, MA 02215 {guosong, tdcl}@bu.edu MCL Technical

More information

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 2, April-May, 2013 ISSN:

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 2, April-May, 2013 ISSN: Fast Data Collection with Reduced Interference and Increased Life Time in Wireless Sensor Networks Jayachandran.J 1 and Ramalakshmi.R 2 1 M.Tech Network Engineering, Kalasalingam University, Krishnan koil.

More information

Remote Health Monitoring for an Embedded System

Remote Health Monitoring for an Embedded System July 20, 2012 Remote Health Monitoring for an Embedded System Authors: Puneet Gupta, Kundan Kumar, Vishnu H Prasad 1/22/2014 2 Outline Background Background & Scope Requirements Key Challenges Introduction

More information

MITIGATING THE EFFECT OF PACKET LOSSES ON REAL-TIME VIDEO STREAMING USING PSNR AS VIDEO QUALITY ASSESSMENT METRIC ABSTRACT

MITIGATING THE EFFECT OF PACKET LOSSES ON REAL-TIME VIDEO STREAMING USING PSNR AS VIDEO QUALITY ASSESSMENT METRIC ABSTRACT MITIGATING THE EFFECT OF PACKET LOSSES ON REAL-TIME VIDEO STREAMING USING PSNR AS VIDEO QUALITY ASSESSMENT METRIC Anietie Bassey, Kufre M. Udofia & Mfonobong C. Uko Department of Electrical/Electronic

More information

Data gathering using mobile agents for reducing traffic in dense mobile wireless sensor networks

Data gathering using mobile agents for reducing traffic in dense mobile wireless sensor networks Mobile Information Systems 9 (23) 295 34 295 DOI.3233/MIS-364 IOS Press Data gathering using mobile agents for reducing traffic in dense mobile wireless sensor networks Keisuke Goto, Yuya Sasaki, Takahiro

More information

Improved MAC protocol for urgent data transmission in wireless healthcare monitoring sensor networks

Improved MAC protocol for urgent data transmission in wireless healthcare monitoring sensor networks , pp.282-286 http://dx.doi.org/10.14257/astl.2015.116.57 Improved MAC protocol for urgent data transmission in wireless healthcare monitoring sensor networks Rae Hyeon Kim, Jeong Gon Kim 1 Department of

More information

Performance Evaluation of CoAP and UDP using NS-2 for Fire Alarm System

Performance Evaluation of CoAP and UDP using NS-2 for Fire Alarm System Indian Journal of Science and Technology, Vol 9(20), DOI: 10.17485/ijst/2016/v9i20/92603, May 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Performance Evaluation of CoAP and UDP using NS-2 for

More information

Video Streaming Over Multi-hop Wireless Networks

Video Streaming Over Multi-hop Wireless Networks Video Streaming Over Multi-hop Wireless Networks Hao Wang Dept. of Computer Information System, Cameron University hwang@cameron.edu Andras Farago, Subbarayan Venkatesan Dept. of Computer Science, The

More information

Effect Of Grouping Cluster Based on Overlapping FOV In Wireless Multimedia Sensor Network

Effect Of Grouping Cluster Based on Overlapping FOV In Wireless Multimedia Sensor Network Effect Of Grouping Cluster Based on Overlapping FOV In Wireless Multimedia Sensor Network Shikha Swaroop Department of Information Technology Dehradun Institute of Technology Dehradun, Uttarakhand. er.shikhaswaroop@gmail.com

More information

LAB PROJECT Nº1 1 INTRODUCTION REDES MÓVEIS E SEM FIOS , MEEC PERFORMANCE OF WIRELESS PERSONAL AREA NETWORKS

LAB PROJECT Nº1 1 INTRODUCTION REDES MÓVEIS E SEM FIOS , MEEC PERFORMANCE OF WIRELESS PERSONAL AREA NETWORKS LAB PROJECT Nº1 REDES MÓVEIS E SEM PERFORMANCE OF WIRELESS PERSONAL AREA NETWORKS 1 INTRODUCTION The performance of wireless networks is highly dependent of physical phenomena, such as path loss, shadowing,

More information

Streaming Video Based on Temporal Frame Transcoding.

Streaming Video Based on Temporal Frame Transcoding. Streaming Video Based on Temporal Frame Transcoding. Fadlallah Ali Fadlallah Othman O. Khalifa and Aisha Hassan Abdalla Department of Computer Science Sudan University of Science and Technology Khartoum-SUDAN

More information

SLiM : Scalable Live Media Streaming Framework for a U-City

SLiM : Scalable Live Media Streaming Framework for a U-City SLiM : Scalable Live Media Streaming Framework for a U-City Eun-Seok Ryu, Chuck Yoo 236, Department of Computer Science and Engineering, Korea University, Anam-Dong, Seongbuk-Gu, Seoul, Korea { esryu,

More information

CROSS LAYER PROTOCOL (APTEEN) USING WSN FOR REAL TIME APPLICATION

CROSS LAYER PROTOCOL (APTEEN) USING WSN FOR REAL TIME APPLICATION CROSS LAYER PROTOCOL (APTEEN) USING WSN FOR REAL TIME APPLICATION V. A. Dahifale 1, N. Y. Siddiqui 2 PG Student, College of Engineering Kopargaon, Maharashtra, India 1 Assistant Professor, College of Engineering

More information

WSN NETWORK ARCHITECTURES AND PROTOCOL STACK

WSN NETWORK ARCHITECTURES AND PROTOCOL STACK WSN NETWORK ARCHITECTURES AND PROTOCOL STACK Sensing is a technique used to gather information about a physical object or process, including the occurrence of events (i.e., changes in state such as a drop

More information

Ameliorate Threshold Distributed Energy Efficient Clustering Algorithm for Heterogeneous Wireless Sensor Networks

Ameliorate Threshold Distributed Energy Efficient Clustering Algorithm for Heterogeneous Wireless Sensor Networks Vol. 5, No. 5, 214 Ameliorate Threshold Distributed Energy Efficient Clustering Algorithm for Heterogeneous Wireless Sensor Networks MOSTAFA BAGHOURI SAAD CHAKKOR ABDERRAHMANE HAJRAOUI Abstract Ameliorating

More information

End-to-End Mechanisms for QoS Support in Wireless Networks

End-to-End Mechanisms for QoS Support in Wireless Networks End-to-End Mechanisms for QoS Support in Wireless Networks R VS Torsten Braun joint work with Matthias Scheidegger, Marco Studer, Ruy de Oliveira Computer Networks and Distributed Systems Institute of

More information

Error Control in Wireless Sensor Networks: A Cross Layer Analysis

Error Control in Wireless Sensor Networks: A Cross Layer Analysis University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln CSE Journal Articles Computer Science and Engineering, Department of 2009 Error Control in Wireless Sensor Networks: A Cross

More information

An Introduction to Cyber-Physical Systems INF5910/INF9910

An Introduction to Cyber-Physical Systems INF5910/INF9910 An Introduction to Cyber-Physical Systems INF5910/INF9910 1 Outline What is Cyber Physical Systems (CPS)? Applications Challenges Cyber Physical CPS 2 Cyber Systems Cyber is More than just software More

More information

Multimedia Human-Centric Networking: Concepts, Technologies and Trends

Multimedia Human-Centric Networking: Concepts, Technologies and Trends Chapter 1 Multimedia Human-Centric Networking: Concepts, Technologies and Trends Eduardo Cerqueira, Aldri Santos, Denis Rosário, Torsten Braun, and Mario Gerla Abstract The transmission of multimedia content

More information

Wireless sensor networks simulators computer simulation tools

Wireless sensor networks simulators computer simulation tools International Conference on Applied Internet and Information Technologies, 2016 DOI:10.20544/AIIT2016.24 Wireless sensor networks simulators computer simulation tools Igor Georgioski and Hristina Trenchevska

More information

An Architectural Framework for Ubiquitous Computing Applications

An Architectural Framework for Ubiquitous Computing Applications An Architectural Framework for Ubiquitous Computing Applications I. Koutelekos 1 Dpts. of Electronics and Automation MSc in Networking and Data Communications, T.E.I. of Piraeus, Greece, Email: ekoutele@otenet.gr

More information

Multi-metrics based Congestion Control protocol in Wireless Sensor Network

Multi-metrics based Congestion Control protocol in Wireless Sensor Network e-issn 2455 1392 Volume 2 Issue 5, May 2016 pp. 536 543 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com Multi-metrics based Congestion Control protocol in Wireless Sensor Network Sushma

More information

3. Evaluation of Selected Tree and Mesh based Routing Protocols

3. Evaluation of Selected Tree and Mesh based Routing Protocols 33 3. Evaluation of Selected Tree and Mesh based Routing Protocols 3.1 Introduction Construction of best possible multicast trees and maintaining the group connections in sequence is challenging even in

More information

Scheduling of Multiple Applications in Wireless Sensor Networks Using Knowledge of Applications and Network

Scheduling of Multiple Applications in Wireless Sensor Networks Using Knowledge of Applications and Network International Journal of Information and Computer Science (IJICS) Volume 5, 2016 doi: 10.14355/ijics.2016.05.002 www.iji-cs.org Scheduling of Multiple Applications in Wireless Sensor Networks Using Knowledge

More information

The Performance of MANET Routing Protocols for Scalable Video Communication

The Performance of MANET Routing Protocols for Scalable Video Communication Communications and Network, 23, 5, 9-25 http://dx.doi.org/.4236/cn.23.522 Published Online May 23 (http://www.scirp.org/journal/cn) The Performance of MANET Routing Protocols for Scalable Video Communication

More information

Dynamic Key Ring Update Mechanism for Mobile Wireless Sensor Networks

Dynamic Key Ring Update Mechanism for Mobile Wireless Sensor Networks Dynamic Key Ring Update Mechanism for Mobile Wireless Sensor Networks Merve Şahin Sabancı University Istanbul, Turkey mervesahin@sabanciuniv.edu Abstract Key distribution is an important issue to provide

More information

A Comparative Analysis of Energy Preservation Performance Metric for ERAODV, RAODV, AODV and DSDV Routing Protocols in MANET

A Comparative Analysis of Energy Preservation Performance Metric for ERAODV, RAODV, AODV and DSDV Routing Protocols in MANET A Comparative Analysis of Energy Preservation Performance Metric for ERAODV, RAODV, AODV and DSDV Routing Protocols in MANET Bhabani Sankar Gouda Department of Computer Science & Engineering National Institute

More information

Rab Nawaz Jadoon DCS. Assistant Professor. Department of Computer Science. COMSATS Institute of Information Technology. Mobile Communication

Rab Nawaz Jadoon DCS. Assistant Professor. Department of Computer Science. COMSATS Institute of Information Technology. Mobile Communication Rab Nawaz Jadoon DCS Assistant Professor COMSATS IIT, Abbottabad Pakistan COMSATS Institute of Information Technology Mobile Communication WSN Wireless sensor networks consist of large number of sensor

More information

Improving the quality of H.264 video transmission using the Intra-Frame FEC over IEEE e networks

Improving the quality of H.264 video transmission using the Intra-Frame FEC over IEEE e networks Improving the quality of H.264 video transmission using the Intra-Frame FEC over IEEE 802.11e networks Seung-Seok Kang 1,1, Yejin Sohn 1, and Eunji Moon 1 1Department of Computer Science, Seoul Women s

More information

About MPEG Compression. More About Long-GOP Video

About MPEG Compression. More About Long-GOP Video About MPEG Compression HD video requires significantly more data than SD video. A single HD video frame can require up to six times more data than an SD frame. To record such large images with such a low

More information

CLUSTER BASED ROUTING PROTOCOL FOR WIRELESS SENSOR NETWORKS

CLUSTER BASED ROUTING PROTOCOL FOR WIRELESS SENSOR NETWORKS CLUSTER BASED ROUTING PROTOCOL FOR WIRELESS SENSOR NETWORKS M.SASIKUMAR 1 Assistant Professor, Dept. of Applied Mathematics and Computational Sciences, PSG College of Technology, Coimbatore, Tamilnadu,

More information

Embedded M2M Software Testing

Embedded M2M Software Testing Embedded M2M Software Testing Slide 1 Neratec Overview WLAN Products Industrial Wireless LAN Stations WLAN Outdoor Access Points WLAN Module high performance, long distance M2M/IoT and Wireless Sensor

More information

CHAPTER 4 SIMULATION MODEL AND PERFORMANCE METRICS

CHAPTER 4 SIMULATION MODEL AND PERFORMANCE METRICS 59 CHAPTER 4 SIMULATION MODEL AND PERFORMANCE METRICS 4.1 OVERVIEW OF SIMULATION MODEL The performance of a MANET routing protocol under varying network conditions is to be evaluated in order to understand

More information

Cross-Layer Architecture for H.264 Video Streaming in Heterogeneous DiffServ Networks

Cross-Layer Architecture for H.264 Video Streaming in Heterogeneous DiffServ Networks Cross-Layer Architecture for H.264 Video Streaming in Heterogeneous DiffServ Networks Gabriel Lazar, Virgil Dobrota, Member, IEEE, Tudor Blaga, Member, IEEE 1 Agenda I. Introduction II. Reliable Multimedia

More information

RTSP Based Video Surveillance System Using IP Camera for Human Detection in OpenCV

RTSP Based Video Surveillance System Using IP Camera for Human Detection in OpenCV RTSP Based Video Surveillance System Using IP Camera for Human Detection in OpenCV K. Bapayya 1,K. Sujitha 2, Mr. SD. Akthar Basha 3 1 Asst. Professor, Department of ECE, CVR College of Engineering, Hyderabad-501510

More information

UDP-Lite Enhancement Through Checksum Protection

UDP-Lite Enhancement Through Checksum Protection IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS UDP-Lite Enhancement Through Checksum Protection To cite this article: Suherman et al 2017 IOP Conf. Ser.: Mater. Sci. Eng. 180

More information

MOBILITY MANAGEMENT FOR PROVIDING QOS IN LOCAL AREA WIRELESS NETWORKS

MOBILITY MANAGEMENT FOR PROVIDING QOS IN LOCAL AREA WIRELESS NETWORKS MOBILITY MANAGEMENT FOR PROVIDING QOS IN LOCAL AREA WIRELESS NETWORKS J. Antonio García-Macías, Franck Rousseau, Gilles Berger-Sabbatel, Leyla Toumi, Andrzej Duda LSR-IMAG Laboratory, Grenoble, France

More information

A Survey on Underwater Sensor Network Architecture and Protocols

A Survey on Underwater Sensor Network Architecture and Protocols A Survey on Underwater Sensor Network Architecture and Protocols Rakesh V S 4 th SEM M.Tech, Department of Computer Science MVJ College of Engineering Bangalore, India raki.rakesh102@gmail.com Srimathi

More information

An Industrial Employee Development Application Protocol Using Wireless Sensor Networks

An Industrial Employee Development Application Protocol Using Wireless Sensor Networks RESEARCH ARTICLE An Industrial Employee Development Application Protocol Using Wireless Sensor Networks 1 N.Roja Ramani, 2 A.Stenila 1,2 Asst.professor, Dept.of.Computer Application, Annai Vailankanni

More information

CHAPTER 6 PILOT/SIGNATURE PATTERN BASED MODULATION TRACKING

CHAPTER 6 PILOT/SIGNATURE PATTERN BASED MODULATION TRACKING CHAPTER 6 PILOT/SIGNATURE PATTERN BASED MODULATION TRACKING 6.1 TRANSMITTER AND RECEIVER Each modulated signal is preceded by a unique N bit pilot sequence (Manton, JH 2001). A switch in the transmitter

More information

LEVEL-OF-DETAIL BASED MODELING OF OBJECT MOVEMENT IN TRACKING AND SURVEILLANCE SYSTEM. Jianfeng Peng Lizhi Yang Faisal Momen Jerzy W.

LEVEL-OF-DETAIL BASED MODELING OF OBJECT MOVEMENT IN TRACKING AND SURVEILLANCE SYSTEM. Jianfeng Peng Lizhi Yang Faisal Momen Jerzy W. Proceedings of the 2005 Winter Simulation Conference M. E. Kuhl, N. M. Steiger, F. B. Armstrong, and J. A. Joines, eds. LEVEL-OF-DETAIL BASED MODELING OF OBJECT MOVEMENT IN TRACKING AND SURVEILLANCE SYSTEM

More information

Installation of Apache OpenMeetings on Debian 9. This tutorial is made based on a fresh installations of. debian amd64-dvd-1.

Installation of Apache OpenMeetings on Debian 9. This tutorial is made based on a fresh installations of. debian amd64-dvd-1. Installation of Apache OpenMeetings 4.0.0 on Debian 9 This tutorial is made based on a fresh installations of debian-9.1.0-amd64-dvd-1.iso It is tested with positive result. We will use the Apache's binary

More information

A Comparative Analysis of Platoon-based Driving Protocols for Video Dissemination over VANETs

A Comparative Analysis of Platoon-based Driving Protocols for Video Dissemination over VANETs A Comparative Analysis of Platoon-based Driving Protocols for Video Dissemination over VANETs Iago Medeiros, Wellington Lobato Junior, Denis Rosário, Eduardo Cerqueira, Torsten Braun, and Leandro A. Villas

More information

Generation of Realistic Interferences in the Omnet++ INET Framework Based on Real Traffic Measurements

Generation of Realistic Interferences in the Omnet++ INET Framework Based on Real Traffic Measurements Generation of Realistic 802.11 Interferences in the Omnet++ INET Framework Based on Real Traffic Measurements Juan-Carlos Maureira 1 and Diego Dujovne 2 and Olivier Dalle 1 1 INRIA, I3S, CNRS, Univ. Nice

More information

Next Generation Communication Architectures and Technologies

Next Generation Communication Architectures and Technologies Next Generation Communication Architectures and Technologies Special Session on: Requirements and Technologies for the Next Generation of Mobile Communications Presenter: Prof. Panagiotis Demestichas University

More information

PRIORITY SCHEDULING FOR MULTIPATH VIDEO TRANSMISSION IN WMSNS

PRIORITY SCHEDULING FOR MULTIPATH VIDEO TRANSMISSION IN WMSNS PRIORITY SCHEDULING FOR MULTIPATH VIDEO TRANSMISSION IN WMSNS Elham Karimi 1 and Behzad Akbari 2 1 Department of Electrical and Computer Engineering, Qazvin Islamic Azad University, Qazvin, Iran 2 Department

More information

Spatial Correlation-Based Collaborative Medium Access Control in Wireless Sensor Networks

Spatial Correlation-Based Collaborative Medium Access Control in Wireless Sensor Networks University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln CSE Journal Articles Computer Science and Engineering, Department of 2006 Spatial Correlation-Based Collaborative Medium

More information

Vorlesung Kommunikationsnetze Research Topics: QoS in VANETs

Vorlesung Kommunikationsnetze Research Topics: QoS in VANETs Vorlesung Kommunikationsnetze Research Topics: QoS in VANETs Prof. Dr. H. P. Großmann mit B. Wiegel sowie A. Schmeiser und M. Rabel Sommersemester 2009 Institut für Organisation und Management von Informationssystemen

More information

Impact of End-to-end QoS Connectivity on the Performance of Remote Wireless Local Networks

Impact of End-to-end QoS Connectivity on the Performance of Remote Wireless Local Networks Impact of End-to-end QoS Connectivity on the Performance of Remote Wireless Local Networks Veselin Rakocevic School of Engineering and Mathematical Sciences City University London EC1V HB, UK V.Rakocevic@city.ac.uk

More information

AN OPTIMIZED CLUSTER BASED APPROACH FOR MULTI- SOURCE MULTICAST ROUTING PROTOCOL IN MOBILE AD HOC NETWORKS USING OWCA

AN OPTIMIZED CLUSTER BASED APPROACH FOR MULTI- SOURCE MULTICAST ROUTING PROTOCOL IN MOBILE AD HOC NETWORKS USING OWCA AN OPTIMIZED CLUSTER BASED APPROACH FOR MULTI- SOURCE MULTICAST ROUTING PROTOCOL IN MOBILE AD HOC NETWORKS USING OWCA Ramyashree K.S, Arvind S & Shesharao M. Wanjerkhede GNDEC, Bidar-585403, Karnataka

More information

Comparison of Energy-Efficient Data Acquisition Techniques in WSN through Spatial Correlation

Comparison of Energy-Efficient Data Acquisition Techniques in WSN through Spatial Correlation Comparison of Energy-Efficient Data Acquisition Techniques in WSN through Spatial Correlation Paramvir Kaur * Sukhwinder Sharma # * M.Tech in CSE with specializationl in E-Security, BBSBEC,Fatehgarh sahib,

More information

Megapixel Networking 101. Why Megapixel?

Megapixel Networking 101. Why Megapixel? Megapixel Networking 101 Ted Brahms Director Field Applications, Arecont Vision Why Megapixel? Most new surveillance projects are IP Megapixel cameras are IP Megapixel provides incentive driving the leap

More information

Energy and Memory Efficient Clone Detection in Wireless Sensor Networks

Energy and Memory Efficient Clone Detection in Wireless Sensor Networks Energy and Memory Efficient Clone Detection in Wireless Sensor Networks Chennai) 1 Vladymir.F, 2 J.Sivanesa Selvan, 3 Mr.Prabhu.D 1 (Information Technology, Loyola Institute of Technology, Chennai) ( Email:

More information

Performance Comparison of Routing Protocols for wrecked ship scenario under Random Waypoint Mobility Model for MANET

Performance Comparison of Routing Protocols for wrecked ship scenario under Random Waypoint Mobility Model for MANET Advances in Wireless and Mobile Communications. ISSN 0973-6972 Volume 10, Number 5 (2017), pp. 1051-1058 Research India Publications http://www.ripublication.com Performance Comparison of Routing Protocols

More information

Prioritization scheme for QoS in IEEE e WLAN

Prioritization scheme for QoS in IEEE e WLAN Prioritization scheme for QoS in IEEE 802.11e WLAN Yakubu Suleiman Baguda a, Norsheila Fisal b a,b Department of Telematics & Communication Engineering, Faculty of Electrical Engineering Universiti Teknologi

More information

SMITE: A Stochastic Compressive Data Collection. Sensor Networks

SMITE: A Stochastic Compressive Data Collection. Sensor Networks SMITE: A Stochastic Compressive Data Collection Protocol for Mobile Wireless Sensor Networks Longjiang Guo, Raheem Beyah, and Yingshu Li Department of Computer Science, Georgia State University, USA Data

More information

The Impact of Clustering on the Average Path Length in Wireless Sensor Networks

The Impact of Clustering on the Average Path Length in Wireless Sensor Networks The Impact of Clustering on the Average Path Length in Wireless Sensor Networks Azrina Abd Aziz Y. Ahmet Şekercioğlu Department of Electrical and Computer Systems Engineering, Monash University, Australia

More information

QSN - Quality of Service in Networks

QSN - Quality of Service in Networks Coordinating unit: Teaching unit: Academic year: Degree: ECTS credits: 2017 230 - ETSETB - Barcelona School of Telecommunications Engineering 744 - ENTEL - Department of Network Engineering DEGREE IN TELECOMMUNICATIONS

More information

Time Synchronization in Wireless Sensor Networks: CCTS

Time Synchronization in Wireless Sensor Networks: CCTS Time Synchronization in Wireless Sensor Networks: CCTS 1 Nerin Thomas, 2 Smita C Thomas 1, 2 M.G University, Mount Zion College of Engineering, Pathanamthitta, India Abstract: A time synchronization algorithm

More information

QoS Challenges and QoS-Aware MAC Protocols in Wireless Sensor Networks

QoS Challenges and QoS-Aware MAC Protocols in Wireless Sensor Networks QoS Challenges and QoS-Aware MAC Protocols in Wireless Sensor Networks S. Shiney Lillia PG Student, Department of Computer Science and Engineering, National Institute of Technology Puducherry, Puducherry,

More information

Distributed Face Recognition Using Hadoop

Distributed Face Recognition Using Hadoop Distributed Face Recognition Using Hadoop A. Thorat, V. Malhotra, S. Narvekar and A. Joshi Dept. of Computer Engineering and IT College of Engineering, Pune {abhishekthorat02@gmail.com, vinayak.malhotra20@gmail.com,

More information