SlideShare a Scribd company logo
1 of 6
Download to read offline
A Study on Data Fusion Techniques Used in Multiple Radar Tracking
Tan Xuan You1
, Lee Kar Heng2
Abstract
This project aimed to compare the use of and resultant errors when Measurement Fusion (Plot Fusion) and
Track Fusion were used to combine data from various sensors in a simulated environment analogous to the
Singaporean environment. The environment and analysis was done wholly using a program executed by
MATLAB 6.1, and results showed that Measurement Fusion was more accurate when tracking objects
following a path with many turns. However, the major source of error was not the fusion algorithm, but
the inclusion algorithm.
Introduction
Rationale
In the tumultuous post-911 world, it is important that Singapore take steps to enhance her security. Fusion
Algorithms allow data from various sensors to be combined, painting a more accurate picture of the
happenings in her waterways and allowing her to take more immediate action if a threat is determined.
Explanation of Measurement Fusion and Track Fusion
“Fusion” is a term describing the integration of data from multiple sensors using a combination of
mathematical algorithms and data transfer architecture. Two basic architectures are used in theory,
Measurement Fusion and Track Fusion. In practice, however, a combination, or hybrid system is often
used.
(a) Measurement Fusion (b) Track Fusion
Figure 1 Data Fusion Architectures
Measurement Fusion (Figure 1a) can be best described as a central-level tracking system. In pure
Measurement Fusion, raw data is directly obtained from the sensors and is parsed through a single process
that generates a track of the object.
Track Fusion (Figure 1b) can be described as sensor-level tracking. In pure Track Fusion, each sensor’s
raw data is passed through a process that generates the track of each object as detected by that sensor.
_________________________________
1
SRP Student, Hwa Chong Junior College
2
Sensor Systems Division, Defence Science Technology Agency
These tracks are then passed to a central process that combines these tracks to obtain the location and
track history of the object.
In practice, many systems use a combination of both architectures, or use feedback algorithms in
calibration of sensor-level tracking. Some systems may also use the best individual track as the output
track, to prevent misleading data from other sensors from compromising the overall accuracy of the sensor
track.
Hypothesis
The hypothesis is that pure Track Fusion is more accurate in pinpointing the object track, while pure
Measurement Fusion is faster in pinpointing the objects location. This is because an average of covariance
estimates in the first case would present a rather accurate track averaged from many tracks, as compared
to the covariance estimates based on raw data only. However, for an objects location at a particular point
in time, Measurement Fusion can find the centroid of the various raw data points collected, which would
be a feasible and accurate location estimate. However, since military applications commonly deal with
fast-moving objects, Track Fusion is on the whole a superior fusion architecture to use in military
applications.
Materials and Methods
MATLAB 6.1 was used to simulate various situations using 5 simulated radars placed at locations along
Singapore’s coast1
. The simulated radars had percentage detection rates at 80%, 90%, or 95%, and used
update rates of 1sec, 2sec or 4sec. Targets were given different tracks, and their speed varied from 10
knots to 60 knots. The raw data was then either fused using measurement (perfect association algorithm)
or track (simple convex algorithm) fusion, and the errors in object position, azimuth and range were then
plotted on a graph against time.
The following scenarios and radar locations were used, to a rough scale.
Figure 2 Simulation Scenarios
These routes include the paths taken by large ships through the Straits of Singapore, as well as other routes
confusing and challenging to the fusion algorithms. A, B, …, E indicate the simulated radar positions.
1
Locations taken from Nautical Chart
Results and Analysis
Note: Errors in Elevation and Azimuth were not taken into consideration as objects were deemed to be on
the sea, which is at an assumed constant elevation.
Measurement Fusion versus Track Fusion
In the situation “Turn after C”, when Track Fusion is used, the following error plot is obtained.
Figure 3 ‘Turn After C’ Tracking Using Track Fusion
This shows a large amount of position error (n-shaped graph) when the object is turning near the radar,
and minimal position error when the object is moving in a straight line. This is probably due to the
tracking algorithm. When the object turns, its low velocity makes it almost stationary with respect to the
radar, and this makes it almost impossible for the tracking algorithm to predict its future location. Thus the
position error is at its highest while the object is turning. Also, the continuously changing range results in
a large range error (graph near horizontal axis) as the algorithm fails to predict the future range correctly.
Other Deductions
The overview of the error plot of Measurement Fusion in ”Trading Route” was particularly interesting.
Figure 4 ‘Trading Route’ Tracking Using Measurement Fusion
This shows a large positional error when the object is far away from the radars (in the beginning and in the
end). Obvious as this observation may be, it points out a flaw in the algorithm. While tracking the object,
too many radars are used out of the five radars available, producing a larger error than if the closest radars
were used.
This was verified in the error plot for Measurement Fusion in the situation “Convoluted”.
0 500 1000 1500 2000 2500 3000 3500 4000 4500 5000
-1
0
1
2
3
4
5
6
7
8
x 10
4
Position Error
Range Error
Azimuth Error
Elevation error
Figure 5 ‘Convoluted’ Tracking Using Measurement Fusion
The large error towards the end is not a result of fusion error but contamination of accurate data from the
nearest sensors by inaccurate data from the further sensors.
The range error near the point with maximum range error is seen below:
1700 1750 1800 1850 1900
-4000
-3000
-2000
-1000
0
1000
2000
3000
4000
Position Error
Range Error
Azimuth Error
Elevation error
Figure 6 Error Performance
This shows a relatively constant range error, magnitude of which does not exceed 1000. This is probably a
result of the range not varying much through the entire trading route.
Other problems encountered
1. The program used many different files and segments to accomplish a given task. Program execution,
although flexible, was tedious and messy.
2. The program used was a simulation, and only reflected real-life situations to a limited extent.
3. The graphical user interface made it difficult to create a realistic, accurate situation with Singapore’s
radars. Lack of time and training in MATLAB and instruction in the program’s intricacies made it
impossible to decipher the code and manually add in radar locations.
4. The simulation could not cope with objects passing close to the radars and paths with rapid, sharp
turns. Some simulations had to be redone to compensate for this.
5. Many error reports were given, but due to lack of understanding of the program, some errors were
unable to be solved.
Improvements
The algorithm could be improved to first find the centroid of the object locations detected, x0, then remove
the two with largest error, and then find the new centroid, x1, which would be a more accurate value.
Another possibility would be to set the software “maximum range” for the radar. The algorithm would
ignore any data from that radar when the distance of the object exceeded a certain value. This would keep
errors due to large distances between the object and the radar to a minimum.
Conclusion
In Measurement Fusion versus Track Fusion, Track Fusion fares worse than Measurement Fusion when
objects turn rapidly, for example, dealing with speedboats and light ships. Analysis has shown that fusion
methods for tracking large, slow moving ships do not improve accuracy much, and the systems can be
redirected to more fast-moving, important targets.
However errors due to measurement and Track Fusion are insignificant compared to errors from other
sources. This is because the objects are travelling at a relatively low velocity, and any errors in sensor data
are largely made up for by the large amount of data available to draw from.
Improvements could be made both to the simulation algorithm and the algorithm used for fusion in
practical applications. This would keep errors to a minimum. The simulation program could also be
further developed and simplified. Further studies in this area can then be done with greater ease.
In all, besides using a hybrid of Measurement Fusion and Track Fusion, changes could be made to the
basic algorithm, and methods like best individual track could be used to provide the most accurate track
for use.
Acknowledgements
My parents, for supporting me through my life, including this project.
Mr Lee Kar Heng, my mentor, for being there and helping out despite various difficulties.
Hwa Chong Junior College, The National University of Singapore and the Defence Science Technology
Agency, for giving me the chance to do this project.
References
Lawrence A Klein. Sensor and Data Fusion Concepts and Applications. Ed. Donald C.O’Shea.
Bellingham, WA: SPIE Optical Engineering Press, 1993.
S J Symons, J A H Miles, J R Moon. “Comparison of Plot and Track Fusion for Naval Sensor
Integration.” N.p.: 2002: 1361-1366.
“Singapore Straits 1:200000 Nautical Chart” Maritime Port Authority Singapore: 1999: p202

More Related Content

What's hot

Object Distance Detection using a Joint Transform Correlator
Object Distance Detection using a Joint Transform CorrelatorObject Distance Detection using a Joint Transform Correlator
Object Distance Detection using a Joint Transform CorrelatorAlexander Layton
 
Energy aware model for sensor network a nature inspired algorithm approach
Energy aware model for sensor network  a nature inspired algorithm approachEnergy aware model for sensor network  a nature inspired algorithm approach
Energy aware model for sensor network a nature inspired algorithm approachijdms
 
Efficient Doubletree: An Algorithm for Large-Scale Topology Discovery
Efficient Doubletree: An Algorithm for Large-Scale Topology DiscoveryEfficient Doubletree: An Algorithm for Large-Scale Topology Discovery
Efficient Doubletree: An Algorithm for Large-Scale Topology DiscoveryIOSR Journals
 
IRJET- Real Time Implementation of Air Writing
IRJET- Real Time Implementation of  Air WritingIRJET- Real Time Implementation of  Air Writing
IRJET- Real Time Implementation of Air WritingIRJET Journal
 
Object Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection AlgorithmObject Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection AlgorithmIRJET Journal
 
Prediction of Extreme Wind Speed Using Artificial Neural Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural  Network ApproachPrediction of Extreme Wind Speed Using Artificial Neural  Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural Network ApproachScientific Review SR
 
A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...
A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...
A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...Doug Kripke
 
Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...
Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...
Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...IJECEIAES
 
Uncompressed Video Streaming in Wireless Channel without Interpolation using ...
Uncompressed Video Streaming in Wireless Channel without Interpolation using ...Uncompressed Video Streaming in Wireless Channel without Interpolation using ...
Uncompressed Video Streaming in Wireless Channel without Interpolation using ...IJASRD Journal
 
Effective range free localization scheme for wireless sensor network
Effective range  free localization scheme for wireless sensor networkEffective range  free localization scheme for wireless sensor network
Effective range free localization scheme for wireless sensor networkijmnct
 
Artificial Bee Colony algorithm for Localization in Wireless Sensor Networks
Artificial Bee Colony algorithm for Localization in Wireless Sensor NetworksArtificial Bee Colony algorithm for Localization in Wireless Sensor Networks
Artificial Bee Colony algorithm for Localization in Wireless Sensor NetworksAssociate Professor in VSB Coimbatore
 
Hybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking System
Hybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking SystemHybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking System
Hybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking SystemTELKOMNIKA JOURNAL
 
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORKSENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORKijwmn
 
Energy efficient sensor selection in visual sensor networks based on multi ob...
Energy efficient sensor selection in visual sensor networks based on multi ob...Energy efficient sensor selection in visual sensor networks based on multi ob...
Energy efficient sensor selection in visual sensor networks based on multi ob...ijcsa
 
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACHSENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACHcsandit
 

What's hot (20)

Data fusion
Data fusionData fusion
Data fusion
 
Object Distance Detection using a Joint Transform Correlator
Object Distance Detection using a Joint Transform CorrelatorObject Distance Detection using a Joint Transform Correlator
Object Distance Detection using a Joint Transform Correlator
 
X36141145
X36141145X36141145
X36141145
 
Motion analyser using image processing
Motion analyser using image processingMotion analyser using image processing
Motion analyser using image processing
 
Energy aware model for sensor network a nature inspired algorithm approach
Energy aware model for sensor network  a nature inspired algorithm approachEnergy aware model for sensor network  a nature inspired algorithm approach
Energy aware model for sensor network a nature inspired algorithm approach
 
C1802022430
C1802022430C1802022430
C1802022430
 
Efficient Doubletree: An Algorithm for Large-Scale Topology Discovery
Efficient Doubletree: An Algorithm for Large-Scale Topology DiscoveryEfficient Doubletree: An Algorithm for Large-Scale Topology Discovery
Efficient Doubletree: An Algorithm for Large-Scale Topology Discovery
 
IRJET- Real Time Implementation of Air Writing
IRJET- Real Time Implementation of  Air WritingIRJET- Real Time Implementation of  Air Writing
IRJET- Real Time Implementation of Air Writing
 
Object Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection AlgorithmObject Tracking By Online Discriminative Feature Selection Algorithm
Object Tracking By Online Discriminative Feature Selection Algorithm
 
Prediction of Extreme Wind Speed Using Artificial Neural Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural  Network ApproachPrediction of Extreme Wind Speed Using Artificial Neural  Network Approach
Prediction of Extreme Wind Speed Using Artificial Neural Network Approach
 
A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...
A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...
A Comparison of Different Methods of Glow Curve Analysis for Thermoluminescen...
 
Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...
Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...
Granular Mobility-Factor Analysis Framework for enrichingOccupancy Sensing wi...
 
Marvuglia
MarvugliaMarvuglia
Marvuglia
 
Uncompressed Video Streaming in Wireless Channel without Interpolation using ...
Uncompressed Video Streaming in Wireless Channel without Interpolation using ...Uncompressed Video Streaming in Wireless Channel without Interpolation using ...
Uncompressed Video Streaming in Wireless Channel without Interpolation using ...
 
Effective range free localization scheme for wireless sensor network
Effective range  free localization scheme for wireless sensor networkEffective range  free localization scheme for wireless sensor network
Effective range free localization scheme for wireless sensor network
 
Artificial Bee Colony algorithm for Localization in Wireless Sensor Networks
Artificial Bee Colony algorithm for Localization in Wireless Sensor NetworksArtificial Bee Colony algorithm for Localization in Wireless Sensor Networks
Artificial Bee Colony algorithm for Localization in Wireless Sensor Networks
 
Hybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking System
Hybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking SystemHybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking System
Hybrid Filter Scheme for Optimizing Indoor Mobile Cooperative Tracking System
 
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORKSENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
 
Energy efficient sensor selection in visual sensor networks based on multi ob...
Energy efficient sensor selection in visual sensor networks based on multi ob...Energy efficient sensor selection in visual sensor networks based on multi ob...
Energy efficient sensor selection in visual sensor networks based on multi ob...
 
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACHSENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
 

Viewers also liked

Bifunctional combined au fe2 o3 nanoparticles, explicación del artículo
Bifunctional combined au fe2 o3 nanoparticles, explicación del artículoBifunctional combined au fe2 o3 nanoparticles, explicación del artículo
Bifunctional combined au fe2 o3 nanoparticles, explicación del artículoJose Angel Alonso
 
Chronic swelling, critica al artículo
Chronic swelling, critica al artículoChronic swelling, critica al artículo
Chronic swelling, critica al artículoJose Angel Alonso
 
Protecting commercial radar and communication systems
Protecting commercial radar and communication systemsProtecting commercial radar and communication systems
Protecting commercial radar and communication systemsTBSS Group
 
TBSS in Training Services 25032015
TBSS in Training Services 25032015TBSS in Training Services 25032015
TBSS in Training Services 25032015TBSS Group
 
Air craft surveillance
Air craft surveillanceAir craft surveillance
Air craft surveillanceBikas Sadashiv
 
A Tutorial on Radar System Engineering
A Tutorial on Radar System EngineeringA Tutorial on Radar System Engineering
A Tutorial on Radar System EngineeringTBSS Group
 

Viewers also liked (9)

Bifunctional combined au fe2 o3 nanoparticles, explicación del artículo
Bifunctional combined au fe2 o3 nanoparticles, explicación del artículoBifunctional combined au fe2 o3 nanoparticles, explicación del artículo
Bifunctional combined au fe2 o3 nanoparticles, explicación del artículo
 
Chronic swelling, critica al artículo
Chronic swelling, critica al artículoChronic swelling, critica al artículo
Chronic swelling, critica al artículo
 
Protecting commercial radar and communication systems
Protecting commercial radar and communication systemsProtecting commercial radar and communication systems
Protecting commercial radar and communication systems
 
TBSS in Training Services 25032015
TBSS in Training Services 25032015TBSS in Training Services 25032015
TBSS in Training Services 25032015
 
Sistema1 iff
Sistema1 iffSistema1 iff
Sistema1 iff
 
Radar
RadarRadar
Radar
 
Air craft surveillance
Air craft surveillanceAir craft surveillance
Air craft surveillance
 
A Tutorial on Radar System Engineering
A Tutorial on Radar System EngineeringA Tutorial on Radar System Engineering
A Tutorial on Radar System Engineering
 
radar technology
radar technologyradar technology
radar technology
 

Similar to A study on data fusion techniques used in multiple radar tracking

Data mining projects topics for java and dot net
Data mining projects topics for java and dot netData mining projects topics for java and dot net
Data mining projects topics for java and dot netredpel dot com
 
Real-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURFReal-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURFiosrjce
 
FUZZY CLUSTERING FOR IMPROVED POSITIONING
FUZZY CLUSTERING FOR IMPROVED POSITIONINGFUZZY CLUSTERING FOR IMPROVED POSITIONING
FUZZY CLUSTERING FOR IMPROVED POSITIONINGijitjournal
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)inventionjournals
 
MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...
MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...
MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...IAEME Publication
 
Autonomous Abnormal Behaviour Detection Using Trajectory Analysis
Autonomous Abnormal Behaviour Detection Using Trajectory AnalysisAutonomous Abnormal Behaviour Detection Using Trajectory Analysis
Autonomous Abnormal Behaviour Detection Using Trajectory AnalysisIJECEIAES
 
A Deep Belief Network Approach to Learning Depth from Optical Flow
A Deep Belief Network Approach to Learning Depth from Optical FlowA Deep Belief Network Approach to Learning Depth from Optical Flow
A Deep Belief Network Approach to Learning Depth from Optical FlowReuben Feinman
 
A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...
A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...
A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...Ashish Sharma
 
2013APRU_NO40-abstract-mobilePIV_YangYaoYu
2013APRU_NO40-abstract-mobilePIV_YangYaoYu2013APRU_NO40-abstract-mobilePIV_YangYaoYu
2013APRU_NO40-abstract-mobilePIV_YangYaoYuYao-Yu Yang
 
An improved particle filter tracking
An improved particle filter trackingAn improved particle filter tracking
An improved particle filter trackingijcsit
 
Long-Term Robust Tracking Whith on Failure Recovery
Long-Term Robust Tracking Whith on Failure RecoveryLong-Term Robust Tracking Whith on Failure Recovery
Long-Term Robust Tracking Whith on Failure RecoveryTELKOMNIKA JOURNAL
 
A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...
A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...
A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...TELKOMNIKA JOURNAL
 
Eecs221 final report
Eecs221   final reportEecs221   final report
Eecs221 final reportSaurebh Raut
 
EECS221 - Final Report
EECS221 - Final ReportEECS221 - Final Report
EECS221 - Final ReportSaurebh Raut
 
Indoor localisation and dead reckoning using Sensor Tag™ BLE.
Indoor localisation and dead reckoning using Sensor Tag™ BLE.Indoor localisation and dead reckoning using Sensor Tag™ BLE.
Indoor localisation and dead reckoning using Sensor Tag™ BLE.Abhishek Madav
 
Direct Perception for Congestion Scene Detection Using TensorFlow
Direct Perception for Congestion Scene Detection Using TensorFlowDirect Perception for Congestion Scene Detection Using TensorFlow
Direct Perception for Congestion Scene Detection Using TensorFlowArtur Filipowicz
 
VISUAL TRACKING USING PARTICLE SWARM OPTIMIZATION
VISUAL TRACKING USING PARTICLE SWARM OPTIMIZATIONVISUAL TRACKING USING PARTICLE SWARM OPTIMIZATION
VISUAL TRACKING USING PARTICLE SWARM OPTIMIZATIONcscpconf
 

Similar to A study on data fusion techniques used in multiple radar tracking (20)

Data mining projects topics for java and dot net
Data mining projects topics for java and dot netData mining projects topics for java and dot net
Data mining projects topics for java and dot net
 
J017377578
J017377578J017377578
J017377578
 
Real-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURFReal-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURF
 
FUZZY CLUSTERING FOR IMPROVED POSITIONING
FUZZY CLUSTERING FOR IMPROVED POSITIONINGFUZZY CLUSTERING FOR IMPROVED POSITIONING
FUZZY CLUSTERING FOR IMPROVED POSITIONING
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...
MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...
MULTIPLE HUMAN TRACKING USING RETINANET FEATURES, SIAMESE NEURAL NETWORK, AND...
 
Autonomous Abnormal Behaviour Detection Using Trajectory Analysis
Autonomous Abnormal Behaviour Detection Using Trajectory AnalysisAutonomous Abnormal Behaviour Detection Using Trajectory Analysis
Autonomous Abnormal Behaviour Detection Using Trajectory Analysis
 
A Deep Belief Network Approach to Learning Depth from Optical Flow
A Deep Belief Network Approach to Learning Depth from Optical FlowA Deep Belief Network Approach to Learning Depth from Optical Flow
A Deep Belief Network Approach to Learning Depth from Optical Flow
 
nips2014
nips2014nips2014
nips2014
 
A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...
A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...
A multi sensor-information_fusion_method_based_on_factor_graph_for_integrated...
 
2013APRU_NO40-abstract-mobilePIV_YangYaoYu
2013APRU_NO40-abstract-mobilePIV_YangYaoYu2013APRU_NO40-abstract-mobilePIV_YangYaoYu
2013APRU_NO40-abstract-mobilePIV_YangYaoYu
 
An improved particle filter tracking
An improved particle filter trackingAn improved particle filter tracking
An improved particle filter tracking
 
Long-Term Robust Tracking Whith on Failure Recovery
Long-Term Robust Tracking Whith on Failure RecoveryLong-Term Robust Tracking Whith on Failure Recovery
Long-Term Robust Tracking Whith on Failure Recovery
 
A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...
A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...
A Solution to Partial Observability in Extended Kalman Filter Mobile Robot Na...
 
Eecs221 final report
Eecs221   final reportEecs221   final report
Eecs221 final report
 
EECS221 - Final Report
EECS221 - Final ReportEECS221 - Final Report
EECS221 - Final Report
 
Indoor localisation and dead reckoning using Sensor Tag™ BLE.
Indoor localisation and dead reckoning using Sensor Tag™ BLE.Indoor localisation and dead reckoning using Sensor Tag™ BLE.
Indoor localisation and dead reckoning using Sensor Tag™ BLE.
 
Direct Perception for Congestion Scene Detection Using TensorFlow
Direct Perception for Congestion Scene Detection Using TensorFlowDirect Perception for Congestion Scene Detection Using TensorFlow
Direct Perception for Congestion Scene Detection Using TensorFlow
 
IRJET-Cleaner Drone
IRJET-Cleaner DroneIRJET-Cleaner Drone
IRJET-Cleaner Drone
 
VISUAL TRACKING USING PARTICLE SWARM OPTIMIZATION
VISUAL TRACKING USING PARTICLE SWARM OPTIMIZATIONVISUAL TRACKING USING PARTICLE SWARM OPTIMIZATION
VISUAL TRACKING USING PARTICLE SWARM OPTIMIZATION
 

More from TBSS Group

Business, Entrepreneurship, Management
Business, Entrepreneurship, ManagementBusiness, Entrepreneurship, Management
Business, Entrepreneurship, ManagementTBSS Group
 
TBSS Radar, EW and Defense Courses
TBSS Radar, EW and Defense CoursesTBSS Radar, EW and Defense Courses
TBSS Radar, EW and Defense CoursesTBSS Group
 
Training and international speaking (jul2019)
Training and international speaking (jul2019)Training and international speaking (jul2019)
Training and international speaking (jul2019)TBSS Group
 
Professional publications
Professional publicationsProfessional publications
Professional publicationsTBSS Group
 
TBSS Introduction 2018 v1
TBSS Introduction 2018 v1TBSS Introduction 2018 v1
TBSS Introduction 2018 v1TBSS Group
 
Setting up and doing business in vietnam aug2017 v2 (6in1)
Setting up and doing business in vietnam aug2017 v2 (6in1)Setting up and doing business in vietnam aug2017 v2 (6in1)
Setting up and doing business in vietnam aug2017 v2 (6in1)TBSS Group
 
Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)
Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)
Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)TBSS Group
 
TBSS Project - MPA SSA CFP2015 Approving Committee Presentation
TBSS Project - MPA SSA CFP2015 Approving Committee PresentationTBSS Project - MPA SSA CFP2015 Approving Committee Presentation
TBSS Project - MPA SSA CFP2015 Approving Committee PresentationTBSS Group
 
TBSS Project - MPA SSA CFP2015 Panel Evaluation Presentation
TBSS Project - MPA SSA CFP2015 Panel Evaluation PresentationTBSS Project - MPA SSA CFP2015 Panel Evaluation Presentation
TBSS Project - MPA SSA CFP2015 Panel Evaluation PresentationTBSS Group
 
Using real and practical oriented training aids in radar technology training
Using real and practical oriented training aids in radar technology trainingUsing real and practical oriented training aids in radar technology training
Using real and practical oriented training aids in radar technology trainingTBSS Group
 
Ew asia cw and ew joint space for comments (14 sep2016)
Ew asia cw and ew joint space   for comments (14 sep2016)Ew asia cw and ew joint space   for comments (14 sep2016)
Ew asia cw and ew joint space for comments (14 sep2016)TBSS Group
 
Engineers can be good entrepreneur too
Engineers can be good entrepreneur tooEngineers can be good entrepreneur too
Engineers can be good entrepreneur tooTBSS Group
 
TBSS Training and Courses in Defense Technology
TBSS Training and Courses in Defense TechnologyTBSS Training and Courses in Defense Technology
TBSS Training and Courses in Defense TechnologyTBSS Group
 
TERMA-TBSS Partnership
TERMA-TBSS PartnershipTERMA-TBSS Partnership
TERMA-TBSS PartnershipTBSS Group
 
Scilab Presentation for Tech Talk Tuesday 21 July 2015
Scilab Presentation for Tech Talk Tuesday 21 July 2015Scilab Presentation for Tech Talk Tuesday 21 July 2015
Scilab Presentation for Tech Talk Tuesday 21 July 2015TBSS Group
 
TBSS-SkyRadar Partnership
TBSS-SkyRadar PartnershipTBSS-SkyRadar Partnership
TBSS-SkyRadar PartnershipTBSS Group
 
ScilabTEC 2015
ScilabTEC 2015ScilabTEC 2015
ScilabTEC 2015TBSS Group
 
Electronic Warfare for the Republic of Singapore Air Force
Electronic Warfare for the Republic of Singapore Air ForceElectronic Warfare for the Republic of Singapore Air Force
Electronic Warfare for the Republic of Singapore Air ForceTBSS Group
 
TBSS in security and surveillance
TBSS in security and surveillanceTBSS in security and surveillance
TBSS in security and surveillanceTBSS Group
 
Radar Systems for NTU, 1 Nov 2014
Radar Systems for NTU, 1 Nov 2014Radar Systems for NTU, 1 Nov 2014
Radar Systems for NTU, 1 Nov 2014TBSS Group
 

More from TBSS Group (20)

Business, Entrepreneurship, Management
Business, Entrepreneurship, ManagementBusiness, Entrepreneurship, Management
Business, Entrepreneurship, Management
 
TBSS Radar, EW and Defense Courses
TBSS Radar, EW and Defense CoursesTBSS Radar, EW and Defense Courses
TBSS Radar, EW and Defense Courses
 
Training and international speaking (jul2019)
Training and international speaking (jul2019)Training and international speaking (jul2019)
Training and international speaking (jul2019)
 
Professional publications
Professional publicationsProfessional publications
Professional publications
 
TBSS Introduction 2018 v1
TBSS Introduction 2018 v1TBSS Introduction 2018 v1
TBSS Introduction 2018 v1
 
Setting up and doing business in vietnam aug2017 v2 (6in1)
Setting up and doing business in vietnam aug2017 v2 (6in1)Setting up and doing business in vietnam aug2017 v2 (6in1)
Setting up and doing business in vietnam aug2017 v2 (6in1)
 
Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)
Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)
Setting Up and Doing Business in Vietnam (PREVIEW SLIDES)
 
TBSS Project - MPA SSA CFP2015 Approving Committee Presentation
TBSS Project - MPA SSA CFP2015 Approving Committee PresentationTBSS Project - MPA SSA CFP2015 Approving Committee Presentation
TBSS Project - MPA SSA CFP2015 Approving Committee Presentation
 
TBSS Project - MPA SSA CFP2015 Panel Evaluation Presentation
TBSS Project - MPA SSA CFP2015 Panel Evaluation PresentationTBSS Project - MPA SSA CFP2015 Panel Evaluation Presentation
TBSS Project - MPA SSA CFP2015 Panel Evaluation Presentation
 
Using real and practical oriented training aids in radar technology training
Using real and practical oriented training aids in radar technology trainingUsing real and practical oriented training aids in radar technology training
Using real and practical oriented training aids in radar technology training
 
Ew asia cw and ew joint space for comments (14 sep2016)
Ew asia cw and ew joint space   for comments (14 sep2016)Ew asia cw and ew joint space   for comments (14 sep2016)
Ew asia cw and ew joint space for comments (14 sep2016)
 
Engineers can be good entrepreneur too
Engineers can be good entrepreneur tooEngineers can be good entrepreneur too
Engineers can be good entrepreneur too
 
TBSS Training and Courses in Defense Technology
TBSS Training and Courses in Defense TechnologyTBSS Training and Courses in Defense Technology
TBSS Training and Courses in Defense Technology
 
TERMA-TBSS Partnership
TERMA-TBSS PartnershipTERMA-TBSS Partnership
TERMA-TBSS Partnership
 
Scilab Presentation for Tech Talk Tuesday 21 July 2015
Scilab Presentation for Tech Talk Tuesday 21 July 2015Scilab Presentation for Tech Talk Tuesday 21 July 2015
Scilab Presentation for Tech Talk Tuesday 21 July 2015
 
TBSS-SkyRadar Partnership
TBSS-SkyRadar PartnershipTBSS-SkyRadar Partnership
TBSS-SkyRadar Partnership
 
ScilabTEC 2015
ScilabTEC 2015ScilabTEC 2015
ScilabTEC 2015
 
Electronic Warfare for the Republic of Singapore Air Force
Electronic Warfare for the Republic of Singapore Air ForceElectronic Warfare for the Republic of Singapore Air Force
Electronic Warfare for the Republic of Singapore Air Force
 
TBSS in security and surveillance
TBSS in security and surveillanceTBSS in security and surveillance
TBSS in security and surveillance
 
Radar Systems for NTU, 1 Nov 2014
Radar Systems for NTU, 1 Nov 2014Radar Systems for NTU, 1 Nov 2014
Radar Systems for NTU, 1 Nov 2014
 

Recently uploaded

Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 

Recently uploaded (20)

Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 

A study on data fusion techniques used in multiple radar tracking

  • 1. A Study on Data Fusion Techniques Used in Multiple Radar Tracking Tan Xuan You1 , Lee Kar Heng2 Abstract This project aimed to compare the use of and resultant errors when Measurement Fusion (Plot Fusion) and Track Fusion were used to combine data from various sensors in a simulated environment analogous to the Singaporean environment. The environment and analysis was done wholly using a program executed by MATLAB 6.1, and results showed that Measurement Fusion was more accurate when tracking objects following a path with many turns. However, the major source of error was not the fusion algorithm, but the inclusion algorithm. Introduction Rationale In the tumultuous post-911 world, it is important that Singapore take steps to enhance her security. Fusion Algorithms allow data from various sensors to be combined, painting a more accurate picture of the happenings in her waterways and allowing her to take more immediate action if a threat is determined. Explanation of Measurement Fusion and Track Fusion “Fusion” is a term describing the integration of data from multiple sensors using a combination of mathematical algorithms and data transfer architecture. Two basic architectures are used in theory, Measurement Fusion and Track Fusion. In practice, however, a combination, or hybrid system is often used. (a) Measurement Fusion (b) Track Fusion Figure 1 Data Fusion Architectures Measurement Fusion (Figure 1a) can be best described as a central-level tracking system. In pure Measurement Fusion, raw data is directly obtained from the sensors and is parsed through a single process that generates a track of the object. Track Fusion (Figure 1b) can be described as sensor-level tracking. In pure Track Fusion, each sensor’s raw data is passed through a process that generates the track of each object as detected by that sensor. _________________________________ 1 SRP Student, Hwa Chong Junior College 2 Sensor Systems Division, Defence Science Technology Agency
  • 2. These tracks are then passed to a central process that combines these tracks to obtain the location and track history of the object. In practice, many systems use a combination of both architectures, or use feedback algorithms in calibration of sensor-level tracking. Some systems may also use the best individual track as the output track, to prevent misleading data from other sensors from compromising the overall accuracy of the sensor track. Hypothesis The hypothesis is that pure Track Fusion is more accurate in pinpointing the object track, while pure Measurement Fusion is faster in pinpointing the objects location. This is because an average of covariance estimates in the first case would present a rather accurate track averaged from many tracks, as compared to the covariance estimates based on raw data only. However, for an objects location at a particular point in time, Measurement Fusion can find the centroid of the various raw data points collected, which would be a feasible and accurate location estimate. However, since military applications commonly deal with fast-moving objects, Track Fusion is on the whole a superior fusion architecture to use in military applications. Materials and Methods MATLAB 6.1 was used to simulate various situations using 5 simulated radars placed at locations along Singapore’s coast1 . The simulated radars had percentage detection rates at 80%, 90%, or 95%, and used update rates of 1sec, 2sec or 4sec. Targets were given different tracks, and their speed varied from 10 knots to 60 knots. The raw data was then either fused using measurement (perfect association algorithm) or track (simple convex algorithm) fusion, and the errors in object position, azimuth and range were then plotted on a graph against time. The following scenarios and radar locations were used, to a rough scale. Figure 2 Simulation Scenarios These routes include the paths taken by large ships through the Straits of Singapore, as well as other routes confusing and challenging to the fusion algorithms. A, B, …, E indicate the simulated radar positions. 1 Locations taken from Nautical Chart
  • 3. Results and Analysis Note: Errors in Elevation and Azimuth were not taken into consideration as objects were deemed to be on the sea, which is at an assumed constant elevation. Measurement Fusion versus Track Fusion In the situation “Turn after C”, when Track Fusion is used, the following error plot is obtained. Figure 3 ‘Turn After C’ Tracking Using Track Fusion This shows a large amount of position error (n-shaped graph) when the object is turning near the radar, and minimal position error when the object is moving in a straight line. This is probably due to the tracking algorithm. When the object turns, its low velocity makes it almost stationary with respect to the radar, and this makes it almost impossible for the tracking algorithm to predict its future location. Thus the position error is at its highest while the object is turning. Also, the continuously changing range results in a large range error (graph near horizontal axis) as the algorithm fails to predict the future range correctly.
  • 4. Other Deductions The overview of the error plot of Measurement Fusion in ”Trading Route” was particularly interesting. Figure 4 ‘Trading Route’ Tracking Using Measurement Fusion This shows a large positional error when the object is far away from the radars (in the beginning and in the end). Obvious as this observation may be, it points out a flaw in the algorithm. While tracking the object, too many radars are used out of the five radars available, producing a larger error than if the closest radars were used. This was verified in the error plot for Measurement Fusion in the situation “Convoluted”. 0 500 1000 1500 2000 2500 3000 3500 4000 4500 5000 -1 0 1 2 3 4 5 6 7 8 x 10 4 Position Error Range Error Azimuth Error Elevation error Figure 5 ‘Convoluted’ Tracking Using Measurement Fusion
  • 5. The large error towards the end is not a result of fusion error but contamination of accurate data from the nearest sensors by inaccurate data from the further sensors. The range error near the point with maximum range error is seen below: 1700 1750 1800 1850 1900 -4000 -3000 -2000 -1000 0 1000 2000 3000 4000 Position Error Range Error Azimuth Error Elevation error Figure 6 Error Performance This shows a relatively constant range error, magnitude of which does not exceed 1000. This is probably a result of the range not varying much through the entire trading route. Other problems encountered 1. The program used many different files and segments to accomplish a given task. Program execution, although flexible, was tedious and messy. 2. The program used was a simulation, and only reflected real-life situations to a limited extent. 3. The graphical user interface made it difficult to create a realistic, accurate situation with Singapore’s radars. Lack of time and training in MATLAB and instruction in the program’s intricacies made it impossible to decipher the code and manually add in radar locations. 4. The simulation could not cope with objects passing close to the radars and paths with rapid, sharp turns. Some simulations had to be redone to compensate for this. 5. Many error reports were given, but due to lack of understanding of the program, some errors were unable to be solved. Improvements The algorithm could be improved to first find the centroid of the object locations detected, x0, then remove the two with largest error, and then find the new centroid, x1, which would be a more accurate value. Another possibility would be to set the software “maximum range” for the radar. The algorithm would ignore any data from that radar when the distance of the object exceeded a certain value. This would keep errors due to large distances between the object and the radar to a minimum.
  • 6. Conclusion In Measurement Fusion versus Track Fusion, Track Fusion fares worse than Measurement Fusion when objects turn rapidly, for example, dealing with speedboats and light ships. Analysis has shown that fusion methods for tracking large, slow moving ships do not improve accuracy much, and the systems can be redirected to more fast-moving, important targets. However errors due to measurement and Track Fusion are insignificant compared to errors from other sources. This is because the objects are travelling at a relatively low velocity, and any errors in sensor data are largely made up for by the large amount of data available to draw from. Improvements could be made both to the simulation algorithm and the algorithm used for fusion in practical applications. This would keep errors to a minimum. The simulation program could also be further developed and simplified. Further studies in this area can then be done with greater ease. In all, besides using a hybrid of Measurement Fusion and Track Fusion, changes could be made to the basic algorithm, and methods like best individual track could be used to provide the most accurate track for use. Acknowledgements My parents, for supporting me through my life, including this project. Mr Lee Kar Heng, my mentor, for being there and helping out despite various difficulties. Hwa Chong Junior College, The National University of Singapore and the Defence Science Technology Agency, for giving me the chance to do this project. References Lawrence A Klein. Sensor and Data Fusion Concepts and Applications. Ed. Donald C.O’Shea. Bellingham, WA: SPIE Optical Engineering Press, 1993. S J Symons, J A H Miles, J R Moon. “Comparison of Plot and Track Fusion for Naval Sensor Integration.” N.p.: 2002: 1361-1366. “Singapore Straits 1:200000 Nautical Chart” Maritime Port Authority Singapore: 1999: p202