SlideShare uma empresa Scribd logo
1 de 28
RECOGNITION
AS
GRAPH MATCHING
Presented By-
Vishakha Agarwal
(Research Scholar)
M.Tech, Final Year
Department of Computer Science and Information Technology
OUTLINE
 Introduction
 Pattern recognition approaches
 Graphs in pattern recognition
 Graph matching taxonomy
 Graph matching algorithms
 Graph based recognition: Application taxonomy
 Graph based recognition: Application
 Discussions and conclusions
 References
INTRODUCTION
 In many practical problems, there is a need to make some
decision about the content of an image or about the
classification of an object that it contains.
 For example, the user of a notebook computer may be able to
give input using hand printed characters.
 The classification process might actually fail, either because
the character is badly made, or because the person invented
a new character.
 Recognition means “To Know Again.”
 A recognition system must contain some memory of the
objects that it is to recognize.
PATTERN RECOGNITION
APPROACHES
 Traditional subdivision of pattern recognition:
PATTERN RECOGNITION
APPROACHES: STATISTICAL
APPROACH
 Advantages:
 Theoretically well
founded.
 Many powerful
algorithms available.
 Disadvantages
 Dimension of feature
vector fixed.
 Only unary feature
values, but no relations
can be modeled.
PATTERN RECOGNITION
APPROACHES: STRUCTURAL
APPROACH
 Advantages
 Representation size is
variable.
 Higher representation
power.
 Disadvantages:
 Lack of mathematical
structure in the graph
domain.
 Lack of algorithmic tools.
GRAPHS IN PATTERN RECOGNITION
 In pattern recognition and computer vision, it is
required to measure the similarity of objects.
 When graphs are used for the representation of
structured objects, then the problem of measuring object
similarity turns into the problem of computing the
similarity of graphs, which is also known as graph
matching.
 If graphs are used for object representation this problem
turns into determining the similarity of graphs.
GRAPHS IN PATTERN RECOGNITION
 Standard concepts in graph matching include graph
isomorphism, subgraph isomorphism, and maximum
common subgraph.
 However, in real world applications we can’t always
expect a perfect match between the input and one of
the graphs in the database.
 Therefore, what is needed is an algorithm for error-
tolerant matching, or equivalently , a method that
computes a measure of similarity between two given
graphs.
GRAPH MATCHING TAXONOMY
 In graph matching, we used to consider directed and
labeled graphs, which are sometimes synonymously
referred to as (attributed) relational graphs, or
relational structures.
 If we delete some nodes from a graph, together with
their incident edges, we obtain a subgraph g’ ⊆ g.
GRAPH MATCHING TAXONOMY
 Graph matching can be done by-
 Graph Isomorphism- In this, the exact structural
correspondence is sought: there must be a bijective mapping
between the nodes of the two graphs that preserves the
edges of both graphs.
GRAPH MATCHING TAXONOMY
• Subgraph Isomorphism- It requires the existence of an
isomorphism between one of the graphs and a subgraph of
the other. In other words, one of the graphs may have extra
nodes and extra edges linking these new nodes to the rest.
GRAPH MATCHING TAXONOMY
• Monomorphism- In monomorphism, extra edges in the
larger graph are allowed also between nodes that do have a
correspondent in the smaller graph.
GRAPH MATCHING TAXONOMY
 Maximum Common Subgraph- It is the largest
subgraph of one of the two graphs that is isomorphic to a
subgraph of the other. This kind of matching allows both
graphs to have extra nodes and edges, but is also
significantly more expensive from a computational
viewpoint.
 Weighted graph matching- Here the edges of the
graphs have a weight, and the goal is to find the common
subgraph with the largest total weight.
GRAPH MATCHING TAXONOMY
 Graph Edit Distance- It measures the similarity of two
graphs by computing the minimum-cost set of edit
operations needed to transform one of the graphs into the
other.
 The sequence of edit operations that transform g into g’
implies an error-correcting mapping from the nodes of g to
the nodes of g’.
GRAPH MATCHING ALGORITHMS
 The standard algorithm for graph and subgraph isomorphism detection
is the one by Ullman , in which Maximum common subgraph detection
has been addressed.
 Most of these algorithms are particular versions of the A* search
procedure, i.e., they rely on some kind of tree search incorporating
various heuristic look-ahead techniques in order to prune the search
space.
 Other approaches are based on neural networks such as the Hopfield
network or the Kohonen map.
 Also genetic algorithms have been used in many approximate method
based on maximum flow . However, all of these approximate methods
may get tracked in local minima and miss the optimal solution.
GRAPH BASED RECOGNITION:
APPLICATION TAXONOMY
 At least six application areas in which graph matching
techniques have been successfully employed can be
individuated:
 2D and 3D image analysis and processing
 Document processing
 Biometric identification
 Image databases
 Video analysis
 Biological and biomedical applications
GRAPH BASED RECOGNITION:
APPLICATION
Automatic Transcription of Handwritten Medieval
Text
Digitization of historical documents has become a focus
of intensive research.
GRAPH BASED RECOGNITION:
APPLICATION
Challenges in the Transcription of Handwritten
Historical Documents
Layout analysis and extraction of text
 Decorations
 Decay of paper or parchment
 Faded ink
 Bleed through
 Various other artifacts
Lack of language model etc.
GRAPH BASED RECOGNITION:
APPLICATION
GRAPH BASED RECOGNITION:
APPLICATION
 Problems with the conventional approach-
 Two dimensional shape of the characters is not
adequately modeled; no structural relations.
 Possible Solution:
 Use skeletons to represent the handwriting by a graph.
 Transform the graph of a handwritten text into a
sequence of feature vectors.
 Apply HMMs and RNNs to sequence of feature vectors.
GRAPH BASED RECOGNITION:
APPLICATION
 Graph Extraction-
 Apply a thinning operator to generate the skeleton of the
image.
 Nodes:
 Key points: crossings, junctions, end points, left-most points of
circular arcs.
 Secondary points: equidistant points on the skeleton between
key points; distance d is a parameter.
 Edges:
 Nodes that are neighbors on the skeleton are connected by
edges.
GRAPH BASED RECOGNITION:
APPLICATION
GRAPH BASED RECOGNITION:
APPLICATION
 Comments-
 In this application, graph-matching based feature
extraction could reduce the error rate by about 50%
compared to a standard set of features.
 Because the graphs are rather small, the additional
computational cost is moderate (compared to HMM
decoding)
 Recent experiments with alternative graph distance
measures have given good results.
DISCUSSIONS AND CONCLUSIONS
 Recognition and learning of patterns are subjects of
considerable depth and interest to cognitive psychology,
pattern recognition, and computer vision.
 A wide spectrum of graph matching algorithms have
become available meanwhile.
 They range from deterministic approaches, suitable for
finding optimal solutions to problems involving graphs
with a limited number of nodes and edges, to approximate
methods that are applicable to large-scale problems.
DISCUSSIONS AND CONCLUSIONS
 It is conjectured that there are many applications in
pattern recognition and computer vision where the full
representational power of graphs may not be needed.
 Restricting the focus on special subclasses of graphs may
result in more efficient matching procedures.
 Other promising areas of future research include the
automatic inference of edit costs from a set of sample
graphs, and the combination of optimal and approximate
graph matching methods.
REFERENCES
 http://www.cse.nd.edu/Fu_Prize_Seminars/bunke/slides.pdf.
 Valiente G.,et. al,An Image Similarity for Graph Matching,0-
7695-0746-8/00 ©2010 IEEE.
 http://www.nptel.ac.in/courses/117104069/chapter_1/1_10.html.
 Wachinger C.,et.al, Structural Image Representation for Image
Registration , 978-1-4244-7028-0/10/ ©2010 IEEE.
 Conte D.,et.al, Graph Matching Application in Pattern Recognition
and Image Processing, 0-7803-7750-8/03 ©2003 IEEE.
 Bunke H.,et.al,Graph Matching: Theoritical foundations,
Algorithms ,and Applications.
REFERENCES
 Wiskott L.,et.al,Face Recognition by Elastic Bunch graph
Matching,7th intern conference, on Computer Analysis on
Images and Patterns, Keil, Germany, September 1997.
 International Master of Research in Computer Science: Computer
Aided Decision Support, Graph for Pattern Recognition, Author:
Romain Raveaux , Zeina Abu-Aisheh, in the RFAI groups at the
University of Tours ,October 2013.
 Caetano T.,et.al,Learning Graph Matching,IEEE Transactions on
Pattern Analysis and Machine Intelligence, VOL 31, NO. 6, June
2009.
THANK YOU
FOR
YOUR
ATTENTION!

Mais conteúdo relacionado

Mais procurados

Chapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woodsChapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woodsasodariyabhavesh
 
Image Restoration
Image RestorationImage Restoration
Image RestorationPoonam Seth
 
Introduction to Image Processing:Image Modalities
Introduction to Image Processing:Image ModalitiesIntroduction to Image Processing:Image Modalities
Introduction to Image Processing:Image ModalitiesKalyan Acharjya
 
Chapter 3 image enhancement (spatial domain)
Chapter 3 image enhancement (spatial domain)Chapter 3 image enhancement (spatial domain)
Chapter 3 image enhancement (spatial domain)asodariyabhavesh
 
Image segmentation
Image segmentation Image segmentation
Image segmentation Amnaakhaan
 
Digital Image Processing - Image Enhancement
Digital Image Processing  - Image EnhancementDigital Image Processing  - Image Enhancement
Digital Image Processing - Image EnhancementMathankumar S
 
Features image processing and Extaction
Features image processing and ExtactionFeatures image processing and Extaction
Features image processing and ExtactionAli A Jalil
 
Mathematical operations in image processing
Mathematical operations in image processingMathematical operations in image processing
Mathematical operations in image processingAsad Ali
 
Color Image Processing
Color Image ProcessingColor Image Processing
Color Image Processingkiruthiammu
 
1.arithmetic & logical operations
1.arithmetic & logical operations1.arithmetic & logical operations
1.arithmetic & logical operationsmukesh bhardwaj
 
Digital Image Processing: Image Enhancement in the Frequency Domain
Digital Image Processing: Image Enhancement in the Frequency DomainDigital Image Processing: Image Enhancement in the Frequency Domain
Digital Image Processing: Image Enhancement in the Frequency DomainMostafa G. M. Mostafa
 
Enhancement in frequency domain
Enhancement in frequency domainEnhancement in frequency domain
Enhancement in frequency domainAshish Kumar
 
Image proccessing slide share
Image proccessing slide shareImage proccessing slide share
Image proccessing slide shareSyedShaiby
 

Mais procurados (20)

Chapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woodsChapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woods
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
image compression ppt
image compression pptimage compression ppt
image compression ppt
 
Image Restoration
Image RestorationImage Restoration
Image Restoration
 
Hit and-miss transform
Hit and-miss transformHit and-miss transform
Hit and-miss transform
 
Introduction to Image Processing:Image Modalities
Introduction to Image Processing:Image ModalitiesIntroduction to Image Processing:Image Modalities
Introduction to Image Processing:Image Modalities
 
Canny Edge Detection
Canny Edge DetectionCanny Edge Detection
Canny Edge Detection
 
Sharpening spatial filters
Sharpening spatial filtersSharpening spatial filters
Sharpening spatial filters
 
Chapter 3 image enhancement (spatial domain)
Chapter 3 image enhancement (spatial domain)Chapter 3 image enhancement (spatial domain)
Chapter 3 image enhancement (spatial domain)
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
Digital Image Processing - Image Enhancement
Digital Image Processing  - Image EnhancementDigital Image Processing  - Image Enhancement
Digital Image Processing - Image Enhancement
 
Lzw coding technique for image compression
Lzw coding technique for image compressionLzw coding technique for image compression
Lzw coding technique for image compression
 
Features image processing and Extaction
Features image processing and ExtactionFeatures image processing and Extaction
Features image processing and Extaction
 
Mathematical operations in image processing
Mathematical operations in image processingMathematical operations in image processing
Mathematical operations in image processing
 
Mathematical tools in dip
Mathematical tools in dipMathematical tools in dip
Mathematical tools in dip
 
Color Image Processing
Color Image ProcessingColor Image Processing
Color Image Processing
 
1.arithmetic & logical operations
1.arithmetic & logical operations1.arithmetic & logical operations
1.arithmetic & logical operations
 
Digital Image Processing: Image Enhancement in the Frequency Domain
Digital Image Processing: Image Enhancement in the Frequency DomainDigital Image Processing: Image Enhancement in the Frequency Domain
Digital Image Processing: Image Enhancement in the Frequency Domain
 
Enhancement in frequency domain
Enhancement in frequency domainEnhancement in frequency domain
Enhancement in frequency domain
 
Image proccessing slide share
Image proccessing slide shareImage proccessing slide share
Image proccessing slide share
 

Destaque

Lighthouse: Large-scale graph pattern matching on Giraph
Lighthouse: Large-scale graph pattern matching on GiraphLighthouse: Large-scale graph pattern matching on Giraph
Lighthouse: Large-scale graph pattern matching on GiraphIoan Toma
 
From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...
From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...
From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...Open University in the Netherlands
 
Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...
Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...
Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...Luca Costabello
 
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks DataWorks Summit/Hadoop Summit
 
Cp 101 2015-nd-cp-20102015
Cp 101 2015-nd-cp-20102015Cp 101 2015-nd-cp-20102015
Cp 101 2015-nd-cp-20102015Mèo Hoang
 
"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim
"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim
"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrimValdības māja
 
Kts c2-dai so boole
Kts c2-dai so booleKts c2-dai so boole
Kts c2-dai so booleWang Ruan
 
About profession
About professionAbout profession
About professionChris Chang
 
Bxd 1331 qd-bxd-05112014.signed
Bxd 1331 qd-bxd-05112014.signedBxd 1331 qd-bxd-05112014.signed
Bxd 1331 qd-bxd-05112014.signedMèo Hoang
 
Gr 140615023548-phpapp01
Gr 140615023548-phpapp01Gr 140615023548-phpapp01
Gr 140615023548-phpapp01Carmela Timbre
 
Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...
Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...
Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...Accelify
 
PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...
PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...
PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...Accelify
 
Bxd 20 2014-tt-bxd-29122014_qcvn.signed
Bxd 20 2014-tt-bxd-29122014_qcvn.signedBxd 20 2014-tt-bxd-29122014_qcvn.signed
Bxd 20 2014-tt-bxd-29122014_qcvn.signedMèo Hoang
 
ADME And Toxicity Optimization Services
ADME And Toxicity Optimization ServicesADME And Toxicity Optimization Services
ADME And Toxicity Optimization Servicesthomas shaw
 

Destaque (18)

Graph Based Pattern Recognition
Graph Based Pattern RecognitionGraph Based Pattern Recognition
Graph Based Pattern Recognition
 
Lighthouse: Large-scale graph pattern matching on Giraph
Lighthouse: Large-scale graph pattern matching on GiraphLighthouse: Large-scale graph pattern matching on Giraph
Lighthouse: Large-scale graph pattern matching on Giraph
 
From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...
From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...
From Ontology to Wiki: Automating Generation of Semantic Wiki Interfaces from...
 
Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...
Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...
Error-Tolerant RDF Subgraph Matching for Adaptive Presentation of Linked Data...
 
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
 
BioniceMe
BioniceMeBioniceMe
BioniceMe
 
Cp 101 2015-nd-cp-20102015
Cp 101 2015-nd-cp-20102015Cp 101 2015-nd-cp-20102015
Cp 101 2015-nd-cp-20102015
 
"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim
"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim
"Baltijas ceļa 25. gadadienas" pasākumu kalendārs septembrim
 
Kts c2-dai so boole
Kts c2-dai so booleKts c2-dai so boole
Kts c2-dai so boole
 
About profession
About professionAbout profession
About profession
 
Bxd 1331 qd-bxd-05112014.signed
Bxd 1331 qd-bxd-05112014.signedBxd 1331 qd-bxd-05112014.signed
Bxd 1331 qd-bxd-05112014.signed
 
About strategy
About strategyAbout strategy
About strategy
 
Gr 140615023548-phpapp01
Gr 140615023548-phpapp01Gr 140615023548-phpapp01
Gr 140615023548-phpapp01
 
Hex Series
Hex SeriesHex Series
Hex Series
 
Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...
Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...
Better Goals for Better Outcomes: Best Practices for Writing Measurable, Effe...
 
PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...
PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...
PreK, Policy, and Prevention: How High Quality PreK Can Have a Profound Impac...
 
Bxd 20 2014-tt-bxd-29122014_qcvn.signed
Bxd 20 2014-tt-bxd-29122014_qcvn.signedBxd 20 2014-tt-bxd-29122014_qcvn.signed
Bxd 20 2014-tt-bxd-29122014_qcvn.signed
 
ADME And Toxicity Optimization Services
ADME And Toxicity Optimization ServicesADME And Toxicity Optimization Services
ADME And Toxicity Optimization Services
 

Semelhante a Recognition as Graph Matching

M.E Computer Science Image Processing Projects
M.E Computer Science Image Processing ProjectsM.E Computer Science Image Processing Projects
M.E Computer Science Image Processing ProjectsVijay Karan
 
M.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing ProjectsM.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing ProjectsVijay Karan
 
M.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing ProjectsM.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing ProjectsVijay Karan
 
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEWGRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEWDrm Kapoor
 
Laplacian-regularized Graph Bandits
Laplacian-regularized Graph BanditsLaplacian-regularized Graph Bandits
Laplacian-regularized Graph Banditslauratoni4
 
Graph Matching Algorithm-Through Isomorphism Detection
Graph Matching Algorithm-Through Isomorphism DetectionGraph Matching Algorithm-Through Isomorphism Detection
Graph Matching Algorithm-Through Isomorphism Detectionijbuiiir1
 
Learning Graph Representation for Data-Efficiency RL
Learning Graph Representation for Data-Efficiency RLLearning Graph Representation for Data-Efficiency RL
Learning Graph Representation for Data-Efficiency RLlauratoni4
 
STIC-D: algorithmic techniques for efficient parallel pagerank computation on...
STIC-D: algorithmic techniques for efficient parallel pagerank computation on...STIC-D: algorithmic techniques for efficient parallel pagerank computation on...
STIC-D: algorithmic techniques for efficient parallel pagerank computation on...Subhajit Sahu
 
IRJET- Object Detection using Hausdorff Distance
IRJET-  	  Object Detection using Hausdorff DistanceIRJET-  	  Object Detection using Hausdorff Distance
IRJET- Object Detection using Hausdorff DistanceIRJET Journal
 
IRJET - Object Detection using Hausdorff Distance
IRJET -  	  Object Detection using Hausdorff DistanceIRJET -  	  Object Detection using Hausdorff Distance
IRJET - Object Detection using Hausdorff DistanceIRJET Journal
 
Parallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower BoundsParallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower BoundsSubhajit Sahu
 
Parallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower BoundsParallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower BoundsSubhajit Sahu
 
Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3
Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3
Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3Subhajit Sahu
 
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining ApproachBugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining ApproachMangaiK4
 
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining ApproachBugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining ApproachMangaiK4
 
IEEE Pattern analysis and machine intelligence 2016 Title and Abstract
IEEE Pattern analysis and machine intelligence 2016 Title and AbstractIEEE Pattern analysis and machine intelligence 2016 Title and Abstract
IEEE Pattern analysis and machine intelligence 2016 Title and Abstracttsysglobalsolutions
 
Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...
Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...
Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...IOSR Journals
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Learning to rank image tags with limited training examples
Learning to rank image tags with limited training examplesLearning to rank image tags with limited training examples
Learning to rank image tags with limited training examplesCloudTechnologies
 

Semelhante a Recognition as Graph Matching (20)

M.E Computer Science Image Processing Projects
M.E Computer Science Image Processing ProjectsM.E Computer Science Image Processing Projects
M.E Computer Science Image Processing Projects
 
M.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing ProjectsM.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing Projects
 
M.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing ProjectsM.Phil Computer Science Image Processing Projects
M.Phil Computer Science Image Processing Projects
 
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEWGRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
GRAPH PARTITIONING FOR IMAGE SEGMENTATION USING ISOPERIMETRIC APPROACH: A REVIEW
 
Laplacian-regularized Graph Bandits
Laplacian-regularized Graph BanditsLaplacian-regularized Graph Bandits
Laplacian-regularized Graph Bandits
 
Graph Matching Algorithm-Through Isomorphism Detection
Graph Matching Algorithm-Through Isomorphism DetectionGraph Matching Algorithm-Through Isomorphism Detection
Graph Matching Algorithm-Through Isomorphism Detection
 
Learning Graph Representation for Data-Efficiency RL
Learning Graph Representation for Data-Efficiency RLLearning Graph Representation for Data-Efficiency RL
Learning Graph Representation for Data-Efficiency RL
 
STIC-D: algorithmic techniques for efficient parallel pagerank computation on...
STIC-D: algorithmic techniques for efficient parallel pagerank computation on...STIC-D: algorithmic techniques for efficient parallel pagerank computation on...
STIC-D: algorithmic techniques for efficient parallel pagerank computation on...
 
IRJET- Object Detection using Hausdorff Distance
IRJET-  	  Object Detection using Hausdorff DistanceIRJET-  	  Object Detection using Hausdorff Distance
IRJET- Object Detection using Hausdorff Distance
 
IRJET - Object Detection using Hausdorff Distance
IRJET -  	  Object Detection using Hausdorff DistanceIRJET -  	  Object Detection using Hausdorff Distance
IRJET - Object Detection using Hausdorff Distance
 
Parallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower BoundsParallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
 
Parallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower BoundsParallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
Parallel Batch-Dynamic Graphs: Algorithms and Lower Bounds
 
Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3
Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3
Exploring optimizations for dynamic pagerank algorithm based on CUDA : V3
 
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining ApproachBugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
 
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining ApproachBugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
BugLoc: Bug Localization in Multi Threaded Application via Graph Mining Approach
 
Ijetcas14 314
Ijetcas14 314Ijetcas14 314
Ijetcas14 314
 
IEEE Pattern analysis and machine intelligence 2016 Title and Abstract
IEEE Pattern analysis and machine intelligence 2016 Title and AbstractIEEE Pattern analysis and machine intelligence 2016 Title and Abstract
IEEE Pattern analysis and machine intelligence 2016 Title and Abstract
 
Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...
Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...
Implementation of Fuzzy Logic for the High-Resolution Remote Sensing Images w...
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Learning to rank image tags with limited training examples
Learning to rank image tags with limited training examplesLearning to rank image tags with limited training examples
Learning to rank image tags with limited training examples
 

Último

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
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
 
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
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
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
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 

Último (20)

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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
 
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
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
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
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
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
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 

Recognition as Graph Matching

  • 1. RECOGNITION AS GRAPH MATCHING Presented By- Vishakha Agarwal (Research Scholar) M.Tech, Final Year Department of Computer Science and Information Technology
  • 2. OUTLINE  Introduction  Pattern recognition approaches  Graphs in pattern recognition  Graph matching taxonomy  Graph matching algorithms  Graph based recognition: Application taxonomy  Graph based recognition: Application  Discussions and conclusions  References
  • 3. INTRODUCTION  In many practical problems, there is a need to make some decision about the content of an image or about the classification of an object that it contains.  For example, the user of a notebook computer may be able to give input using hand printed characters.  The classification process might actually fail, either because the character is badly made, or because the person invented a new character.  Recognition means “To Know Again.”  A recognition system must contain some memory of the objects that it is to recognize.
  • 4. PATTERN RECOGNITION APPROACHES  Traditional subdivision of pattern recognition:
  • 5. PATTERN RECOGNITION APPROACHES: STATISTICAL APPROACH  Advantages:  Theoretically well founded.  Many powerful algorithms available.  Disadvantages  Dimension of feature vector fixed.  Only unary feature values, but no relations can be modeled.
  • 6. PATTERN RECOGNITION APPROACHES: STRUCTURAL APPROACH  Advantages  Representation size is variable.  Higher representation power.  Disadvantages:  Lack of mathematical structure in the graph domain.  Lack of algorithmic tools.
  • 7. GRAPHS IN PATTERN RECOGNITION  In pattern recognition and computer vision, it is required to measure the similarity of objects.  When graphs are used for the representation of structured objects, then the problem of measuring object similarity turns into the problem of computing the similarity of graphs, which is also known as graph matching.  If graphs are used for object representation this problem turns into determining the similarity of graphs.
  • 8. GRAPHS IN PATTERN RECOGNITION  Standard concepts in graph matching include graph isomorphism, subgraph isomorphism, and maximum common subgraph.  However, in real world applications we can’t always expect a perfect match between the input and one of the graphs in the database.  Therefore, what is needed is an algorithm for error- tolerant matching, or equivalently , a method that computes a measure of similarity between two given graphs.
  • 9. GRAPH MATCHING TAXONOMY  In graph matching, we used to consider directed and labeled graphs, which are sometimes synonymously referred to as (attributed) relational graphs, or relational structures.  If we delete some nodes from a graph, together with their incident edges, we obtain a subgraph g’ ⊆ g.
  • 10. GRAPH MATCHING TAXONOMY  Graph matching can be done by-  Graph Isomorphism- In this, the exact structural correspondence is sought: there must be a bijective mapping between the nodes of the two graphs that preserves the edges of both graphs.
  • 11. GRAPH MATCHING TAXONOMY • Subgraph Isomorphism- It requires the existence of an isomorphism between one of the graphs and a subgraph of the other. In other words, one of the graphs may have extra nodes and extra edges linking these new nodes to the rest.
  • 12. GRAPH MATCHING TAXONOMY • Monomorphism- In monomorphism, extra edges in the larger graph are allowed also between nodes that do have a correspondent in the smaller graph.
  • 13. GRAPH MATCHING TAXONOMY  Maximum Common Subgraph- It is the largest subgraph of one of the two graphs that is isomorphic to a subgraph of the other. This kind of matching allows both graphs to have extra nodes and edges, but is also significantly more expensive from a computational viewpoint.  Weighted graph matching- Here the edges of the graphs have a weight, and the goal is to find the common subgraph with the largest total weight.
  • 14. GRAPH MATCHING TAXONOMY  Graph Edit Distance- It measures the similarity of two graphs by computing the minimum-cost set of edit operations needed to transform one of the graphs into the other.  The sequence of edit operations that transform g into g’ implies an error-correcting mapping from the nodes of g to the nodes of g’.
  • 15. GRAPH MATCHING ALGORITHMS  The standard algorithm for graph and subgraph isomorphism detection is the one by Ullman , in which Maximum common subgraph detection has been addressed.  Most of these algorithms are particular versions of the A* search procedure, i.e., they rely on some kind of tree search incorporating various heuristic look-ahead techniques in order to prune the search space.  Other approaches are based on neural networks such as the Hopfield network or the Kohonen map.  Also genetic algorithms have been used in many approximate method based on maximum flow . However, all of these approximate methods may get tracked in local minima and miss the optimal solution.
  • 16. GRAPH BASED RECOGNITION: APPLICATION TAXONOMY  At least six application areas in which graph matching techniques have been successfully employed can be individuated:  2D and 3D image analysis and processing  Document processing  Biometric identification  Image databases  Video analysis  Biological and biomedical applications
  • 17. GRAPH BASED RECOGNITION: APPLICATION Automatic Transcription of Handwritten Medieval Text Digitization of historical documents has become a focus of intensive research.
  • 18. GRAPH BASED RECOGNITION: APPLICATION Challenges in the Transcription of Handwritten Historical Documents Layout analysis and extraction of text  Decorations  Decay of paper or parchment  Faded ink  Bleed through  Various other artifacts Lack of language model etc.
  • 20. GRAPH BASED RECOGNITION: APPLICATION  Problems with the conventional approach-  Two dimensional shape of the characters is not adequately modeled; no structural relations.  Possible Solution:  Use skeletons to represent the handwriting by a graph.  Transform the graph of a handwritten text into a sequence of feature vectors.  Apply HMMs and RNNs to sequence of feature vectors.
  • 21. GRAPH BASED RECOGNITION: APPLICATION  Graph Extraction-  Apply a thinning operator to generate the skeleton of the image.  Nodes:  Key points: crossings, junctions, end points, left-most points of circular arcs.  Secondary points: equidistant points on the skeleton between key points; distance d is a parameter.  Edges:  Nodes that are neighbors on the skeleton are connected by edges.
  • 23. GRAPH BASED RECOGNITION: APPLICATION  Comments-  In this application, graph-matching based feature extraction could reduce the error rate by about 50% compared to a standard set of features.  Because the graphs are rather small, the additional computational cost is moderate (compared to HMM decoding)  Recent experiments with alternative graph distance measures have given good results.
  • 24. DISCUSSIONS AND CONCLUSIONS  Recognition and learning of patterns are subjects of considerable depth and interest to cognitive psychology, pattern recognition, and computer vision.  A wide spectrum of graph matching algorithms have become available meanwhile.  They range from deterministic approaches, suitable for finding optimal solutions to problems involving graphs with a limited number of nodes and edges, to approximate methods that are applicable to large-scale problems.
  • 25. DISCUSSIONS AND CONCLUSIONS  It is conjectured that there are many applications in pattern recognition and computer vision where the full representational power of graphs may not be needed.  Restricting the focus on special subclasses of graphs may result in more efficient matching procedures.  Other promising areas of future research include the automatic inference of edit costs from a set of sample graphs, and the combination of optimal and approximate graph matching methods.
  • 26. REFERENCES  http://www.cse.nd.edu/Fu_Prize_Seminars/bunke/slides.pdf.  Valiente G.,et. al,An Image Similarity for Graph Matching,0- 7695-0746-8/00 ©2010 IEEE.  http://www.nptel.ac.in/courses/117104069/chapter_1/1_10.html.  Wachinger C.,et.al, Structural Image Representation for Image Registration , 978-1-4244-7028-0/10/ ©2010 IEEE.  Conte D.,et.al, Graph Matching Application in Pattern Recognition and Image Processing, 0-7803-7750-8/03 ©2003 IEEE.  Bunke H.,et.al,Graph Matching: Theoritical foundations, Algorithms ,and Applications.
  • 27. REFERENCES  Wiskott L.,et.al,Face Recognition by Elastic Bunch graph Matching,7th intern conference, on Computer Analysis on Images and Patterns, Keil, Germany, September 1997.  International Master of Research in Computer Science: Computer Aided Decision Support, Graph for Pattern Recognition, Author: Romain Raveaux , Zeina Abu-Aisheh, in the RFAI groups at the University of Tours ,October 2013.  Caetano T.,et.al,Learning Graph Matching,IEEE Transactions on Pattern Analysis and Machine Intelligence, VOL 31, NO. 6, June 2009.

Notas do Editor

  1. The notion of a statistic is intimately connected to the concept of a probability distribution, generally the distribution of signal amplitudes.