SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
The International Journal Of Engineering And Science (IJES)
|| Volume || 3 || Issue || 3 || Pages || 21-25 || 2014 ||
ISSN (e): 2319 – 1813 ISSN (p): 2319 – 1805
www.theijes.com The IJES Page 21
Aircraft Recognition in High Resolution Satellite Images
1
P.C.Hemalatha, 2,
Mrs.M.Anitha M.E.,
1
M.E-Applied Electronics, 2
Assistant Professor,
Department of ECE, Sri Muthukumaran Institute of Technology, Chennai, India,
--------------------------------------------------------ABSTRACT--------------------------------------------------
The project presents recognize of an aircraft in satellite image using template matching for accurate detection
and tracking. High resolution multispectral satellite images with multi-angular look capability have tremendous
potential applications. Here the system involves an object tracking algorithm with three-step processing that
includes moving object estimation, target modelling, and target matching. Potentially moving objects are first
identified on the time-series images. The target is then modelled by extracting both spectral and spatial features.
In the target matching procedure, template will be used as matching model to recognize with each frame by
frame for accurate detection. Here, normalized cross correlation and spatial features are used as features
model for recognition. This recognition model will be continued for all sequence of satellite images.
Keywords: aircraft matching. Segmentation, template matching
---------------------------------------------------------------------------------------------------------------------------------------
Date of Submission: 27 February 2014 Date of Acceptance: 25 March 2014
---------------------------------------------------------------------------------------------------------------------------------------
I. INTRODUCTION
The identification of objects in an image. This process would probably start with image processing
techniques such as noise removal, followed by (low-level) feature extraction to locate lines, regions and possibly
areas with certain textures. However, automatic aircraft recognition is not a simple problem. Besides the
complex structure, different aircraft differ in size, shape, and color, and even for one kind of aircraft, the texture
and intensity are usually dissimilar in different scenarios. Moreover, recognition often suffers from various
disturbances such as clutter, different contrasts, and intensity inhomogeneity. Thus, the robustness and
resistance to disturbance are highly required for the method.
The clever bit is to interpret collections of these shapes as single objects, e.g. cars on a road, boxes on a
conveyor belt or cancerous cells on a microscope slide. One reason this is an AI problem is that an object can
appear very different when viewed from different angles or under different lighting. Another problem is
deciding what features belong to what object and which are background or shadows etc. The human visual
system performs these tasks mostly unconsciously but a computer requires skilful programming and lots of
processing power to approach human performance. Manipulating data in the form of an image through several
possible techniques. An image is usually interpreted as a two-dimensional array of brightness values, and is
most familiarly represented by such patterns as those of a photographic print, slide, television screen, or movie
screen. An image can be processed optically or digitally with a computer.
II. PRINCIPAL COMPONENT ANALYSIS
PCA is a mathematical procedure that uses an orthogonal transformation to convert a set of
observations of possibly correlated variables into a set of values of linearly uncorrelated variables called
principal components. The number of principal components is less than or equal to the number of original
variables. This transformation is defined in such a way that the first principal component has the largest possible
variance (that is, accounts for as much of the variability in the data as possible), and each succeeding component
in turn has the highest variance possible under the constraint that it be orthogonal to (i.e., uncorrelated with) the
preceding components. Principal components are guaranteed to be independent only if the data set is jointly
normally distributed. PCA is sensitive to the relative scaling of the original
variables. Depending on the field of application, it is also named the discrete Karhunen–Loève transform (KLT),
the Hotelling transform or proper orthogonal decomposition (POD).
Aircraft Recognition in High Resolution Satellite Images
www.theijes.com The IJES Page 22
A.Algorithm Flow:
Fig1. Flow of band reduction process
B.PCA steps:
1) Input.
2) Subtract the mean
3) Calculate the covariance matrix
4) Calculate the eigenvectors and eigen values of the covariance matrix
5) Choosing components and forming a feature vector
6) Deriving the new data set.
The singular value decomposition of X is X = WΣVT
, where the m × m matrix W is the matrix of eigenvectors
of the covariance matrix XXT
, the matrix Σ is an m × n rectangular diagonal matrix with nonnegative real
numbers on the diagonal, and the n × n matrix V is the matrix of eigenvectors of XT
X. The PCA transformation
that preserves dimensionality (that is, gives the same number of principal components as original variables) is
then given by:
YT
= XT
W
= V ∑T
WT
W
=V ∑T
V is not uniquely defined in the usual case when m < n − 1, but Y will usually still be uniquely defined. Since W
(by definition of the SVD of a real matrix) is an orthogonal matrix, each row of YT
is simply a rotation of the
corresponding row of XT
. The first column of YT
is made up of the "scores" of the cases with respect to the
"principal" component, the next column has the scores with respect to the "second principal" component.
III. IMAGE SEGMENTATION
Image segmentation is a process of partitioning an image into nonintersecting regions such that each region is
homogeneous and the union of two adjacent regions is not homogeneous. Thresholding based methods can be classified
according to global or local thresholding and also as either bi-level thresholding or multi thresholding.
For the aforementioned facts, we decided to consider the nonparametric and unsupervised Otsu’s thresholding method.
Aircraft Recognition in High Resolution Satellite Images
www.theijes.com The IJES Page 23
The Otsu’s thresholding method may be recommended as the simplest and standard method for automatic
threshold selection, which can be applied to various practical problems. Although the Otsu’s thresholding
method is usually applied to images with a bimodal histogram, it may also provide a meaningful result for
unmoral or multimodal histograms where a precise delineation of the objects present on the scene is not a
requirement. The key concept behind this method is to obtain an optimal threshold that maximizes a function of
the threshold level. The optimal threshold is selected by a discriminant criterion, in order to maximize the
separability of the resultant classes in gray levels. The procedure utilizes only the zeroth- and the first-order
cumulative moments of the gray level histogram.
The equations involved are as follows:
The threshold is selected that minimizes the intra-class variance (within class variance), defined as a
weighted sum of variances of the two classes and between class variance are,
σ B = ωB ( μ0 – μ1 )
2
+ ωB ( μ1 – μr )
2
σ B = ω0 σ 0 + ω1 σ1
Where,
σB – Between class variance and σW – Within class variance
σ0 , σ1 , σT are variances for target, background and images.
μ0 , μ1 , μT are mean for target, background and image.
P(i) is the probability
W0, W1 are the probabilities of target and background
The means are determined by,
μ0
μ1
ω0 I = ω(k)
ω0 I = ω(k)
Thresholding is a very simple form of segmentation. A threshold is defined, and then every pixel in an
image is compared with this threshold. If the pixel lies above the threshold it will be marked as foreground, and
if it is below the threshold as background. The threshold will most often be intensity or color value. Other forms
of thresholding exist where the threshold is allowed to vary across the image, but thresholding is a primitive
technique, and will only work for very simple segmentation tasks.
Thresholding is a non-linear operation that converts a gray-scale image into a binary image where the two
levels are assigned to pixels that are below or above the specified threshold value. In this method the selection
of initial threshold value is depends upon the histogram of an image and the gray scale of an image.
IV. AIRCRAFT DETECTION
An Aircraft from the satellite images are detected using templates matching. It is a technique in digital
image processing for finding small parts of an image which match a template image. A sliding window over
other image sequences is used to indicate the possible presence of the reference target. A regional feature
matching operator is applied to find the similarity between the target model and the pixels within the window.
The lebelled component from segmentation module will be applied to extract the region features to describe its
characteristics. Here correlation coefficient will be used to measure the similarity between two different objects
for target detection and tracking.
Aircraft Recognition in High Resolution Satellite Images
www.theijes.com The IJES Page 24
C.Correlation Coefficient: It is used to find the similarity between two different objects with their region
features. It will be described by,
Cor_coef = [sum(sum(u1.*u2))] /[sqrt(sum(sum(u1.*u1))*sum(sum(u2.*u2)))];
Where, u1 = F1 – mean of F1, u2 = F2 – mean of F2
F1 – Feature set1 and F2 – Features set2
V. EXPERIMENTAL RESULTS
The detection and tracking system for aircraft recognition based on templates. Here for experiments,
the selected templates with different shape model and it is shown that are,
Fig2. Templates with different shapes
From the segmented regions of input image, the local object descriptors are evaluated to characterize
the shape of an object. Each object features are matched with available templates descriptors to detect the
location to track the target, the obtained results are listed as below,
(a) (b)
(c) (d)
Fig3. Segmentation (a) and (b) are taken image, (c) and (d) are otsu segmented image
Aircraft Recognition in High Resolution Satellite Images
www.theijes.com The IJES Page 25
Fig4. Aircrafts tracking
These experiments for aircraft recognition were implemented with the help of MATLAB software and image
processing toolbox.
VI. CONCLUSION
The project presented the aircraft recognition from satellites images for surveillance application with an
Otsu segmentation and template matching model. The tracking system provides the result with low
computational complexity and better accuracy. Morphological and connected component analysis was utilized
effectively for enhancing a segmented regions and tracking target objects. Finally the simulated result was
shown that better efficiency achieved with chosen techniques and methodologies.
REFERENCES
[1] A. Yilmaz, O. Javed, and M. Shah, “Object tracking: A survey,” ACM Comput. Surv., vol. 38, Dec. 2006.
[2] S. Hinz, R. Bamler, and U. Stilla, “Theme issue: Airborne and space borne traffic monitoring,” ISPRS J. Photogramm. Remote
Sens., vol. 61, no. 3–4, pp. 135–280, 2006.
[3] I. Szottka and M. Butenuth, “Tracking multiple vehicles in airborne image sequences of complex urban environments,” in Proc.
2011 Joint Urban Remote Sensing Event (JURSE), Apr. 2011, pp. 13–16.
[4] K. Palaniappan, F. Bunyak, P. Kumar, I. Ersoy, S. Jaeger, K. Ganguli, A. Haridas, J. Fraser, R. Rao, and G. Seetharaman,
“Efficient feature extraction and likelihood fusion for vehicle tracking in low frame rate airborne video,” in Proc. 13th Conf.
Information Fusion (FUSION),Jul. 2010, pp. 1–8.
[5] D. Lenhart, S. Hinz, J. Leitloff, and U. Stilla, “Automatic traffic monitoring based on aerial image sequences,” Pattern Recognit.
Image Anal., vol. 18, pp. 400–405, 2008.
[6] J. Kerekes, M. Muldowney, K. Strackerhan, L. Smith, and B. Leahy, “Vehicle tracking with multi-temporal hyperspectral
imagery,” in Proc. SPIE, 2006, vol. 6233, p. 62330C.
[7] A. Liu, C. Peng, and S. Chang, “Wavelet analysis of satellite images for coastal watch,” IEEE J. Ocean. Eng., vol. 22, no. 1, pp. 9–
17, Jan.1997.
[8] A. Tsai, A. Yezzi, W. Wells, C. Tempany, D. Tucker, A. Fan, W. E. Grimson, and A. Willsky, “A shape-based approach to the
segmentation of medical imagery using level sets,” IEEE Trans. Med. Imag.vol. 22, no. 2, pp. 137–154, Feb. 2003.
[9] M. Rousson and D. Cremers, “Efficient kernel density estimation of shape and intensity priors for level set segmentation,” in Proc.
MICCAI, 2005, vol. 1, pp. 757–764.
[10] Y. Shuai, H. Sun, and G. Xu, “SAR image segmentation based on level set with stationary global minimum,” IEEE Geosci.
Remote Sens. Lett, vol. 5, no. 4, pp. 644–648, Oct. 2008.
[11] H. Ma and Y. Yang, “Two specific multiple-level-set models for high resolution remote-sensing image classification,” IEEE
Geosci. Remote Sens. Lett, vol. 6, no. 3, pp. 558–561, Jul. 2009.
[12] Q. Xu, B. Li, Z. He, and C. Ma, “Multiscale contour extraction using a level set method in optical satellite images,” IEEE Geosci.
Remote Sens. Lett., vol. 8, no. 5, pp. 854–858, Sep. 2011.

Weitere ähnliche Inhalte

Was ist angesagt?

Image Segmentation Using Two Weighted Variable Fuzzy K Means
Image Segmentation Using Two Weighted Variable Fuzzy K MeansImage Segmentation Using Two Weighted Variable Fuzzy K Means
Image Segmentation Using Two Weighted Variable Fuzzy K Means
Editor IJCATR
 
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
ijcisjournal
 

Was ist angesagt? (18)

GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACHGRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
GRAY SCALE IMAGE SEGMENTATION USING OTSU THRESHOLDING OPTIMAL APPROACH
 
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
Image Segmentation using Otsu's Method - Computer Graphics (UCS505) Project R...
 
Otsu binarization
Otsu binarizationOtsu binarization
Otsu binarization
 
Object extraction using edge, motion and saliency information from videos
Object extraction using edge, motion and saliency information from videosObject extraction using edge, motion and saliency information from videos
Object extraction using edge, motion and saliency information from videos
 
Building extraction from remote sensing imageries by data fusion techniques
Building extraction from remote sensing imageries by data fusion techniquesBuilding extraction from remote sensing imageries by data fusion techniques
Building extraction from remote sensing imageries by data fusion techniques
 
Lec11: Active Contour and Level Set for Medical Image Segmentation
Lec11: Active Contour and Level Set for Medical Image SegmentationLec11: Active Contour and Level Set for Medical Image Segmentation
Lec11: Active Contour and Level Set for Medical Image Segmentation
 
Self Organizing Maps
Self Organizing MapsSelf Organizing Maps
Self Organizing Maps
 
A STOCHASTIC STATISTICAL APPROACH FOR TRACKING HUMAN ACTIVITY
A STOCHASTIC STATISTICAL APPROACH FOR TRACKING HUMAN ACTIVITYA STOCHASTIC STATISTICAL APPROACH FOR TRACKING HUMAN ACTIVITY
A STOCHASTIC STATISTICAL APPROACH FOR TRACKING HUMAN ACTIVITY
 
3 video segmentation
3 video segmentation3 video segmentation
3 video segmentation
 
PPT s10-machine vision-s2
PPT s10-machine vision-s2PPT s10-machine vision-s2
PPT s10-machine vision-s2
 
Image Segmentation Using Two Weighted Variable Fuzzy K Means
Image Segmentation Using Two Weighted Variable Fuzzy K MeansImage Segmentation Using Two Weighted Variable Fuzzy K Means
Image Segmentation Using Two Weighted Variable Fuzzy K Means
 
32
3232
32
 
K25047051
K25047051K25047051
K25047051
 
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
 
Graph Image Segmentation
Graph Image SegmentationGraph Image Segmentation
Graph Image Segmentation
 
AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING
AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING
AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING
 
Region-based Semi-supervised Clustering Image Segmentation
Region-based Semi-supervised Clustering Image SegmentationRegion-based Semi-supervised Clustering Image Segmentation
Region-based Semi-supervised Clustering Image Segmentation
 
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
 

Andere mochten auch

Andere mochten auch (19)

A0334001007
A0334001007A0334001007
A0334001007
 
B03302007012
B03302007012B03302007012
B03302007012
 
E03401029034
E03401029034E03401029034
E03401029034
 
The International Journal of Engineering and Science (The IJES)
 The International Journal of Engineering and Science (The IJES) The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
A03250105
A03250105A03250105
A03250105
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
The International Journal of Engineering and Science (The IJES)
 The International Journal of Engineering and Science (The IJES) The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
The International Journal of Engineering and Science (The IJES)
 The International Journal of Engineering and Science (The IJES) The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
D03302030036
D03302030036D03302030036
D03302030036
 
N021203094099
N021203094099N021203094099
N021203094099
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
I0333043049
I0333043049I0333043049
I0333043049
 
E0325022040
E0325022040E0325022040
E0325022040
 
L0333057062
L0333057062L0333057062
L0333057062
 
G0325053063
G0325053063G0325053063
G0325053063
 

Ähnlich wie E0333021025

Super Resolution of Image
Super Resolution of ImageSuper Resolution of Image
Super Resolution of Image
Satheesh K
 
Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...
Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...
Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...
CSCJournals
 
Research Paper v2.0
Research Paper v2.0Research Paper v2.0
Research Paper v2.0
Kapil Tiwari
 
NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...
NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...
NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...
paperpublications3
 

Ähnlich wie E0333021025 (20)

Super Resolution of Image
Super Resolution of ImageSuper Resolution of Image
Super Resolution of Image
 
AUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGES
AUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGESAUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGES
AUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGES
 
AUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGES
AUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGESAUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGES
AUTOMATIC THRESHOLDING TECHNIQUES FOR SAR IMAGES
 
Segmentation and Classification of MRI Brain Tumor
Segmentation and Classification of MRI Brain TumorSegmentation and Classification of MRI Brain Tumor
Segmentation and Classification of MRI Brain Tumor
 
Rigorous Pack Edge Detection Fuzzy System
Rigorous Pack Edge Detection Fuzzy SystemRigorous Pack Edge Detection Fuzzy System
Rigorous Pack Edge Detection Fuzzy System
 
Design and implementation of video tracking system based on camera field of view
Design and implementation of video tracking system based on camera field of viewDesign and implementation of video tracking system based on camera field of view
Design and implementation of video tracking system based on camera field of view
 
J017426467
J017426467J017426467
J017426467
 
Unit II & III_uncovered topics.doc notes
Unit II & III_uncovered topics.doc notesUnit II & III_uncovered topics.doc notes
Unit II & III_uncovered topics.doc notes
 
Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...
Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...
Stereo Correspondence Algorithms for Robotic Applications Under Ideal And Non...
 
Research Paper v2.0
Research Paper v2.0Research Paper v2.0
Research Paper v2.0
 
Ay33292297
Ay33292297Ay33292297
Ay33292297
 
Ay33292297
Ay33292297Ay33292297
Ay33292297
 
K25047051
K25047051K25047051
K25047051
 
Sensitivity of Support Vector Machine Classification to Various Training Feat...
Sensitivity of Support Vector Machine Classification to Various Training Feat...Sensitivity of Support Vector Machine Classification to Various Training Feat...
Sensitivity of Support Vector Machine Classification to Various Training Feat...
 
Hybrid medical image compression method using quincunx wavelet and geometric ...
Hybrid medical image compression method using quincunx wavelet and geometric ...Hybrid medical image compression method using quincunx wavelet and geometric ...
Hybrid medical image compression method using quincunx wavelet and geometric ...
 
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTSDETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
 
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTSDETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
 
Detection of Dense, Overlapping, Geometric Objects
Detection of Dense, Overlapping, Geometric Objects Detection of Dense, Overlapping, Geometric Objects
Detection of Dense, Overlapping, Geometric Objects
 
NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...
NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...
NUMBER PLATE IMAGE DETECTION FOR FAST MOTION VEHICLES USING BLUR KERNEL ESTIM...
 
AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING
AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING
AN ADAPTIVE MESH METHOD FOR OBJECT TRACKING
 

Kürzlich hochgeladen

"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
Health
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
HenryBriggs2
 

Kürzlich hochgeladen (20)

"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Bridge Jacking Design Sample Calculation.pptx
Bridge Jacking Design Sample Calculation.pptxBridge Jacking Design Sample Calculation.pptx
Bridge Jacking Design Sample Calculation.pptx
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal load
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
Air Compressor reciprocating single stage
Air Compressor reciprocating single stageAir Compressor reciprocating single stage
Air Compressor reciprocating single stage
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 

E0333021025

  • 1. The International Journal Of Engineering And Science (IJES) || Volume || 3 || Issue || 3 || Pages || 21-25 || 2014 || ISSN (e): 2319 – 1813 ISSN (p): 2319 – 1805 www.theijes.com The IJES Page 21 Aircraft Recognition in High Resolution Satellite Images 1 P.C.Hemalatha, 2, Mrs.M.Anitha M.E., 1 M.E-Applied Electronics, 2 Assistant Professor, Department of ECE, Sri Muthukumaran Institute of Technology, Chennai, India, --------------------------------------------------------ABSTRACT-------------------------------------------------- The project presents recognize of an aircraft in satellite image using template matching for accurate detection and tracking. High resolution multispectral satellite images with multi-angular look capability have tremendous potential applications. Here the system involves an object tracking algorithm with three-step processing that includes moving object estimation, target modelling, and target matching. Potentially moving objects are first identified on the time-series images. The target is then modelled by extracting both spectral and spatial features. In the target matching procedure, template will be used as matching model to recognize with each frame by frame for accurate detection. Here, normalized cross correlation and spatial features are used as features model for recognition. This recognition model will be continued for all sequence of satellite images. Keywords: aircraft matching. Segmentation, template matching --------------------------------------------------------------------------------------------------------------------------------------- Date of Submission: 27 February 2014 Date of Acceptance: 25 March 2014 --------------------------------------------------------------------------------------------------------------------------------------- I. INTRODUCTION The identification of objects in an image. This process would probably start with image processing techniques such as noise removal, followed by (low-level) feature extraction to locate lines, regions and possibly areas with certain textures. However, automatic aircraft recognition is not a simple problem. Besides the complex structure, different aircraft differ in size, shape, and color, and even for one kind of aircraft, the texture and intensity are usually dissimilar in different scenarios. Moreover, recognition often suffers from various disturbances such as clutter, different contrasts, and intensity inhomogeneity. Thus, the robustness and resistance to disturbance are highly required for the method. The clever bit is to interpret collections of these shapes as single objects, e.g. cars on a road, boxes on a conveyor belt or cancerous cells on a microscope slide. One reason this is an AI problem is that an object can appear very different when viewed from different angles or under different lighting. Another problem is deciding what features belong to what object and which are background or shadows etc. The human visual system performs these tasks mostly unconsciously but a computer requires skilful programming and lots of processing power to approach human performance. Manipulating data in the form of an image through several possible techniques. An image is usually interpreted as a two-dimensional array of brightness values, and is most familiarly represented by such patterns as those of a photographic print, slide, television screen, or movie screen. An image can be processed optically or digitally with a computer. II. PRINCIPAL COMPONENT ANALYSIS PCA is a mathematical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components. The number of principal components is less than or equal to the number of original variables. This transformation is defined in such a way that the first principal component has the largest possible variance (that is, accounts for as much of the variability in the data as possible), and each succeeding component in turn has the highest variance possible under the constraint that it be orthogonal to (i.e., uncorrelated with) the preceding components. Principal components are guaranteed to be independent only if the data set is jointly normally distributed. PCA is sensitive to the relative scaling of the original variables. Depending on the field of application, it is also named the discrete Karhunen–Loève transform (KLT), the Hotelling transform or proper orthogonal decomposition (POD).
  • 2. Aircraft Recognition in High Resolution Satellite Images www.theijes.com The IJES Page 22 A.Algorithm Flow: Fig1. Flow of band reduction process B.PCA steps: 1) Input. 2) Subtract the mean 3) Calculate the covariance matrix 4) Calculate the eigenvectors and eigen values of the covariance matrix 5) Choosing components and forming a feature vector 6) Deriving the new data set. The singular value decomposition of X is X = WΣVT , where the m × m matrix W is the matrix of eigenvectors of the covariance matrix XXT , the matrix Σ is an m × n rectangular diagonal matrix with nonnegative real numbers on the diagonal, and the n × n matrix V is the matrix of eigenvectors of XT X. The PCA transformation that preserves dimensionality (that is, gives the same number of principal components as original variables) is then given by: YT = XT W = V ∑T WT W =V ∑T V is not uniquely defined in the usual case when m < n − 1, but Y will usually still be uniquely defined. Since W (by definition of the SVD of a real matrix) is an orthogonal matrix, each row of YT is simply a rotation of the corresponding row of XT . The first column of YT is made up of the "scores" of the cases with respect to the "principal" component, the next column has the scores with respect to the "second principal" component. III. IMAGE SEGMENTATION Image segmentation is a process of partitioning an image into nonintersecting regions such that each region is homogeneous and the union of two adjacent regions is not homogeneous. Thresholding based methods can be classified according to global or local thresholding and also as either bi-level thresholding or multi thresholding. For the aforementioned facts, we decided to consider the nonparametric and unsupervised Otsu’s thresholding method.
  • 3. Aircraft Recognition in High Resolution Satellite Images www.theijes.com The IJES Page 23 The Otsu’s thresholding method may be recommended as the simplest and standard method for automatic threshold selection, which can be applied to various practical problems. Although the Otsu’s thresholding method is usually applied to images with a bimodal histogram, it may also provide a meaningful result for unmoral or multimodal histograms where a precise delineation of the objects present on the scene is not a requirement. The key concept behind this method is to obtain an optimal threshold that maximizes a function of the threshold level. The optimal threshold is selected by a discriminant criterion, in order to maximize the separability of the resultant classes in gray levels. The procedure utilizes only the zeroth- and the first-order cumulative moments of the gray level histogram. The equations involved are as follows: The threshold is selected that minimizes the intra-class variance (within class variance), defined as a weighted sum of variances of the two classes and between class variance are, σ B = ωB ( μ0 – μ1 ) 2 + ωB ( μ1 – μr ) 2 σ B = ω0 σ 0 + ω1 σ1 Where, σB – Between class variance and σW – Within class variance σ0 , σ1 , σT are variances for target, background and images. μ0 , μ1 , μT are mean for target, background and image. P(i) is the probability W0, W1 are the probabilities of target and background The means are determined by, μ0 μ1 ω0 I = ω(k) ω0 I = ω(k) Thresholding is a very simple form of segmentation. A threshold is defined, and then every pixel in an image is compared with this threshold. If the pixel lies above the threshold it will be marked as foreground, and if it is below the threshold as background. The threshold will most often be intensity or color value. Other forms of thresholding exist where the threshold is allowed to vary across the image, but thresholding is a primitive technique, and will only work for very simple segmentation tasks. Thresholding is a non-linear operation that converts a gray-scale image into a binary image where the two levels are assigned to pixels that are below or above the specified threshold value. In this method the selection of initial threshold value is depends upon the histogram of an image and the gray scale of an image. IV. AIRCRAFT DETECTION An Aircraft from the satellite images are detected using templates matching. It is a technique in digital image processing for finding small parts of an image which match a template image. A sliding window over other image sequences is used to indicate the possible presence of the reference target. A regional feature matching operator is applied to find the similarity between the target model and the pixels within the window. The lebelled component from segmentation module will be applied to extract the region features to describe its characteristics. Here correlation coefficient will be used to measure the similarity between two different objects for target detection and tracking.
  • 4. Aircraft Recognition in High Resolution Satellite Images www.theijes.com The IJES Page 24 C.Correlation Coefficient: It is used to find the similarity between two different objects with their region features. It will be described by, Cor_coef = [sum(sum(u1.*u2))] /[sqrt(sum(sum(u1.*u1))*sum(sum(u2.*u2)))]; Where, u1 = F1 – mean of F1, u2 = F2 – mean of F2 F1 – Feature set1 and F2 – Features set2 V. EXPERIMENTAL RESULTS The detection and tracking system for aircraft recognition based on templates. Here for experiments, the selected templates with different shape model and it is shown that are, Fig2. Templates with different shapes From the segmented regions of input image, the local object descriptors are evaluated to characterize the shape of an object. Each object features are matched with available templates descriptors to detect the location to track the target, the obtained results are listed as below, (a) (b) (c) (d) Fig3. Segmentation (a) and (b) are taken image, (c) and (d) are otsu segmented image
  • 5. Aircraft Recognition in High Resolution Satellite Images www.theijes.com The IJES Page 25 Fig4. Aircrafts tracking These experiments for aircraft recognition were implemented with the help of MATLAB software and image processing toolbox. VI. CONCLUSION The project presented the aircraft recognition from satellites images for surveillance application with an Otsu segmentation and template matching model. The tracking system provides the result with low computational complexity and better accuracy. Morphological and connected component analysis was utilized effectively for enhancing a segmented regions and tracking target objects. Finally the simulated result was shown that better efficiency achieved with chosen techniques and methodologies. REFERENCES [1] A. Yilmaz, O. Javed, and M. Shah, “Object tracking: A survey,” ACM Comput. Surv., vol. 38, Dec. 2006. [2] S. Hinz, R. Bamler, and U. Stilla, “Theme issue: Airborne and space borne traffic monitoring,” ISPRS J. Photogramm. Remote Sens., vol. 61, no. 3–4, pp. 135–280, 2006. [3] I. Szottka and M. Butenuth, “Tracking multiple vehicles in airborne image sequences of complex urban environments,” in Proc. 2011 Joint Urban Remote Sensing Event (JURSE), Apr. 2011, pp. 13–16. [4] K. Palaniappan, F. Bunyak, P. Kumar, I. Ersoy, S. Jaeger, K. Ganguli, A. Haridas, J. Fraser, R. Rao, and G. Seetharaman, “Efficient feature extraction and likelihood fusion for vehicle tracking in low frame rate airborne video,” in Proc. 13th Conf. Information Fusion (FUSION),Jul. 2010, pp. 1–8. [5] D. Lenhart, S. Hinz, J. Leitloff, and U. Stilla, “Automatic traffic monitoring based on aerial image sequences,” Pattern Recognit. Image Anal., vol. 18, pp. 400–405, 2008. [6] J. Kerekes, M. Muldowney, K. Strackerhan, L. Smith, and B. Leahy, “Vehicle tracking with multi-temporal hyperspectral imagery,” in Proc. SPIE, 2006, vol. 6233, p. 62330C. [7] A. Liu, C. Peng, and S. Chang, “Wavelet analysis of satellite images for coastal watch,” IEEE J. Ocean. Eng., vol. 22, no. 1, pp. 9– 17, Jan.1997. [8] A. Tsai, A. Yezzi, W. Wells, C. Tempany, D. Tucker, A. Fan, W. E. Grimson, and A. Willsky, “A shape-based approach to the segmentation of medical imagery using level sets,” IEEE Trans. Med. Imag.vol. 22, no. 2, pp. 137–154, Feb. 2003. [9] M. Rousson and D. Cremers, “Efficient kernel density estimation of shape and intensity priors for level set segmentation,” in Proc. MICCAI, 2005, vol. 1, pp. 757–764. [10] Y. Shuai, H. Sun, and G. Xu, “SAR image segmentation based on level set with stationary global minimum,” IEEE Geosci. Remote Sens. Lett, vol. 5, no. 4, pp. 644–648, Oct. 2008. [11] H. Ma and Y. Yang, “Two specific multiple-level-set models for high resolution remote-sensing image classification,” IEEE Geosci. Remote Sens. Lett, vol. 6, no. 3, pp. 558–561, Jul. 2009. [12] Q. Xu, B. Li, Z. He, and C. Ma, “Multiscale contour extraction using a level set method in optical satellite images,” IEEE Geosci. Remote Sens. Lett., vol. 8, no. 5, pp. 854–858, Sep. 2011.