SlideShare a Scribd company logo
1 of 71
RECOGNITION OF
OBJECTS
Group Members
ASHA SAJU LIYA C ANTO SANIYA CORREYA TINU PAUL
Jasmine Jasmine (name)
Jasmine (street)
Jasmine(flower)
Recognition problem hard with computer
For human being it is easy to recognize the objects by color, texture and
appearance.
A spontaneous, natural activity for humans and other biological systems.
People know about millions of different objects, yet they can easily
distinguish among them.
But in the case of computers they are not able to recognize just with
appearance. There must be detailed screening to be done to identify a
object.
A FLOWER
Main problems faced by computer while
detecting objects
Scale and shape of the imaged object varies
with viewpoint
Occlusion (self- or by a foreground object)
Lighting changes
Background “clutter”
Occlusion
Rotation
Lighting Changes
Scaled Image
Pixel Representation
• Just pixels is a bad representation
• Pixel intensities are affected by a lot of
different things like
Why pixel matching is not a good method??
Rotation
 scaling
 perspective
Illumination changes
 Reordering of scenes
– starting from an image of an object of interest (the query), search
through an image dataset to obtain (or retrieve) those images that
contain the target object.
OBJECT RECOGNITION
Definition
• Object recognition is a task of finding and
identifying object in an image or video sequence.
• The goal of instance-level recognition is to match
(recognize) a specific object or scene.
Object Recognition Process
Query Image
Divide it into grids
Find key points
How to Detect Key points
Key points are the features or points in an image
that doesn’t change their positions in the original
image even if the image is scaled, rotated or
translated.
These points remains fixed in all these cases.
Descriptors
 Each key point has many descriptions.
 Lowe's method for image feature generation transforms an image
into a large collection of feature vectors, each of which is
invariant to image translation,
invariant to scaling,
invariant to rotation.
How can we find descriptors??
Commonly used methods
SIFT
SURF
SIFT Descriptors
Scale Invariant Feature Transform
Compute regions in each image independently
“Label” each region by a vector of descriptors
Find corresponding regions by matching to closest descriptor
vector
Score each frame in the database by the number of matches
Difference of Gaussians function is applied in scale space to a
series of smoothed and re-sampled images.
(a)233x189 image
(b) 832 DOG extrema
• Consider a certain threshold value.
Discard points that are not within the range of this threshold.
729 left after peak value threshold
Dominant orientations are assigned.
These steps ensure that the key points are more stable for matching and recognition.
536 left after testing ratio of principle curvatures
SIFT vector formation
SIFT descriptors are then obtained by considering pixels around
the radius of a key location
Create array of orientation histograms
SURF
 Speeded Up Robust Features
It is a high-performance scale and rotation-invariant
detector / descriptor
The standard version of SURF is several times faster than
SIFT and claimed by its authors to be more robust against
different image transformations than SIFT.
Feature matching using Nearest Neighbor
Next we will use the descriptor computed over each
detection to match the detections between images.
We will use the simplest matching scheme- the nearest
neighbor of descriptors
 The nearest neighbors are defined as the keypoints with
minimum Euclidean distance from the given descriptor
vector.
Nearest Neighbor Ratio
The probability that a match is correct can be determined by
taking the ratio of distance from the closest neighbor to the
distance of the second closest.
where d1 and d2 are the nearest and second nearest neighbor
distances
The value of the resultant ratio varies from 0.1 to 0.9. best value
is 0.8.
Represent each region by SIFT descriptor (128-
vector)
Clustering
There will be thousands of points. How to group them ?
The answer is use clustering method.
When clusters of features are found for an object, the
probability of the interpretation being correct is much
higher than for any single feature.
Towards Large Scale Retrieval
Large Scale Retrieval
 In large scale retrieval the goal is to match a query image to a large database of
images (for example the WWW or Wikipedia).
 The quality of a match is measured as the number of geometrically verified
feature correspondences between the query and a database image.
 While the techniques discussed in Part I and II are sufficient to do this, in practice
they require too much memory to store the SIFT descriptors for all the detections
in all the database images
 We explore next two key ideas: one to reduce the memory; the other to speed up
image retrieval.
1. CREATING VISUAL WORDS
2. INVERTED INDEX
Object
Bag of ‘words’
CREATE VOCABULARY
Vocabulary of
words
Visual
words
Bag of features
• First, take a bunch of images, extract features, and build up a “dictionary”
or “visual vocabulary” – a list of common features
• Visual words are the representation of the whole features extracted
Bag of features: outline
1. Extract features
Bag of features:
1. Extract features
2. Learn “visual vocabulary”
Bag of features:
1. Extract features
2. Learn “visual vocabulary”
3. Quantize features using visual vocabulary
Bag of features:
1. Extract features
2. Learn “visual vocabulary”
3. Quantize features using visual vocabulary
4. Represent images by frequencies of
“visual words”
Inverted index
 Indexing all the feature vectors extracted from the database.
 In this work, each of the visual descriptors is hierarchically quantized by hierarchical K-
means clustering.
 Here, K defines the branch factor of the tree rather than the final number of clusters
 we kept an inverted file associated with each leaf node—a representative descriptor
(visual word)—in the vocabulary tree.
 However, we recorded not only the visual instances that contain the word, but also those
word IDs.
 Can quickly use the inverted file to compute similarity between a new image and all the
images in the database
 Only consider database images whose bins overlap the query image
Advantage of Indexing
 One merit of the adaptive vocabulary tree is that the tree needs not to be re-built when
the database slightly changes.
 Moreover, the tree grows based on a measure that encourages splitting those nodes that
become too ambiguous and pruning nodes that are not active for the current set of
tasks.
word 1
word 2
word i id2 id2 id8 id9
id1 id9 id9
word 1
word 2
word i id2 id8 id9
id1 id9
Easily implemented with Matlab
using sparse matrices/vectors
f1 f9
f2 if8 f9
Can easily incorporate meta
Information per descriptor
APPLICATIONS
 Digital watermarking
 Face detection
 OCR
 Quality control and assembly in industrial plants.
 Robot localization and navigation.
 Monitoring and surveillance.
 Automatic exploration of image databases
 Appearance Recognition
Digital watermarking
A digital watermark is a kind of marker embedded in a noise-
tolerant signal such as an audio, video or image data.
It is typically used to identify ownership of the copyright of
such signal.
 "Watermarking" is the process of hiding digital information in
a carrier signal; the hidden information should, but does not
need to, contain a relation to the carrier signal.
Face detection
Face detection is a computer technology being used in a variety of
applications that identifies human faces in digital images. Face
detection also refers to the psychological process by which humans
locate and attend to faces in a visual scene.
Face Detection
EE465: Introduction to Digital Image Processing Copyright Xin Li'2003
59
OCR
 Optical character recognition (optical character reader) (OCR)
is the mechanical or electronic conversion of images of typed,
handwritten or printed text into machine-encoded text.
 It is widely used as a form of data entry from printed paper
data records, etc.
 It is a common method of digitizing printed texts so that it can
be electronically edited, searched, stored more compactly,
displayed on-line, and used in machine processes such as
machine translation, text-to-speech, key data and text mining.
Robot localization and navigation.
Vehicle Detection
 Intelligent vehicles aim at improving the driving safety by machine vision
techniques
EE465: Introduction to Digital Image Processing Copyright Xin Li'2003
63
Quality control and assembly in industrial
plants
Pedestrian Detection
 Why do we need to detect pedestrians?
 Security monitoring
 Intelligent vehicles
 Video database search
 Challenges
 Uncertainty with pedestrian profile, viewing
distance and angle, deformation of human limb
EE465: Introduction to Digital Image Processing Copyright Xin Li'2003
65
Learning-based Pedestrian Detection
EE465: Introduction to Digital Image Processing Copyright Xin Li'2003
66
Represent an object by the set of its possible
appearances (i.e., under all possible viewpoints and
illumination conditions).
Identifying an object implies finding the closest stored
image.
Upload or provide url for image, and find visually similar
photos
Site :-http://www.stevesdigicams.com/BYO.jpg
Conclusion
 Any information can be retrieved from the system
with accurate results.
 Many applications such as face detection, pattern
recognition is based on the technique object
recognition
QUESTIONS??

More Related Content

What's hot

Digital image processing
Digital image processingDigital image processing
Digital image processingtushar05
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation pptGichelle Amon
 
Image pre processing
Image pre processingImage pre processing
Image pre processingAshish Kumar
 
Presentation on Digital Image Processing
Presentation on Digital Image ProcessingPresentation on Digital Image Processing
Presentation on Digital Image ProcessingSalim Hosen
 
Image processing fundamentals
Image processing fundamentalsImage processing fundamentals
Image processing fundamentalsA B Shinde
 
Fundamental Steps of Digital Image Processing & Image Components
Fundamental Steps of Digital Image Processing & Image ComponentsFundamental Steps of Digital Image Processing & Image Components
Fundamental Steps of Digital Image Processing & Image ComponentsKalyan Acharjya
 
Image Processing and Computer Vision
Image Processing and Computer VisionImage Processing and Computer Vision
Image Processing and Computer VisionSilicon Mentor
 
Mathematical operations in image processing
Mathematical operations in image processingMathematical operations in image processing
Mathematical operations in image processingAsad Ali
 
DIGITAL IMAGE PROCESSING - LECTURE NOTES
DIGITAL IMAGE PROCESSING - LECTURE NOTESDIGITAL IMAGE PROCESSING - LECTURE NOTES
DIGITAL IMAGE PROCESSING - LECTURE NOTESEzhilya venkat
 
Image filtering in Digital image processing
Image filtering in Digital image processingImage filtering in Digital image processing
Image filtering in Digital image processingAbinaya B
 
Introduction to object detection
Introduction to object detectionIntroduction to object detection
Introduction to object detectionBrodmann17
 

What's hot (20)

Watershed
WatershedWatershed
Watershed
 
Object recognition
Object recognitionObject recognition
Object recognition
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
Computer Vision
Computer VisionComputer Vision
Computer Vision
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation ppt
 
Image pre processing
Image pre processingImage pre processing
Image pre processing
 
Presentation on Digital Image Processing
Presentation on Digital Image ProcessingPresentation on Digital Image Processing
Presentation on Digital Image Processing
 
Image processing fundamentals
Image processing fundamentalsImage processing fundamentals
Image processing fundamentals
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Computer Vision Introduction
Computer Vision IntroductionComputer Vision Introduction
Computer Vision Introduction
 
Object Recognition
Object RecognitionObject Recognition
Object Recognition
 
Edge detection
Edge detectionEdge detection
Edge detection
 
IMAGE SEGMENTATION.
IMAGE SEGMENTATION.IMAGE SEGMENTATION.
IMAGE SEGMENTATION.
 
Fundamental Steps of Digital Image Processing & Image Components
Fundamental Steps of Digital Image Processing & Image ComponentsFundamental Steps of Digital Image Processing & Image Components
Fundamental Steps of Digital Image Processing & Image Components
 
Image processing Presentation
Image processing PresentationImage processing Presentation
Image processing Presentation
 
Image Processing and Computer Vision
Image Processing and Computer VisionImage Processing and Computer Vision
Image Processing and Computer Vision
 
Mathematical operations in image processing
Mathematical operations in image processingMathematical operations in image processing
Mathematical operations in image processing
 
DIGITAL IMAGE PROCESSING - LECTURE NOTES
DIGITAL IMAGE PROCESSING - LECTURE NOTESDIGITAL IMAGE PROCESSING - LECTURE NOTES
DIGITAL IMAGE PROCESSING - LECTURE NOTES
 
Image filtering in Digital image processing
Image filtering in Digital image processingImage filtering in Digital image processing
Image filtering in Digital image processing
 
Introduction to object detection
Introduction to object detectionIntroduction to object detection
Introduction to object detection
 

Viewers also liked

Object recognition
Object recognitionObject recognition
Object recognitionakkichester
 
Anil Thomas - Object recognition
Anil Thomas - Object recognitionAnil Thomas - Object recognition
Anil Thomas - Object recognitionIntel Nervana
 
AAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognitionAAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognitionzukun
 
Object Detection and Recognition
Object Detection and Recognition Object Detection and Recognition
Object Detection and Recognition Intel Nervana
 
Object recognition
Object recognitionObject recognition
Object recognition22yash
 
Object recognition seminar S2006E01
Object recognition seminar S2006E01Object recognition seminar S2006E01
Object recognition seminar S2006E01wolf
 
Identity Management Manifesto
Identity Management ManifestoIdentity Management Manifesto
Identity Management ManifestoTrendbüro
 
Mit6870 orsu lecture2
Mit6870 orsu lecture2Mit6870 orsu lecture2
Mit6870 orsu lecture2zukun
 
Urs Köster Presenting at RE-Work DL Summit in Boston
Urs Köster Presenting at RE-Work DL Summit in BostonUrs Köster Presenting at RE-Work DL Summit in Boston
Urs Köster Presenting at RE-Work DL Summit in BostonIntel Nervana
 
Constellation Models and Unsupervised Learning for Object Class Recognition
Constellation Models and Unsupervised Learning for Object Class RecognitionConstellation Models and Unsupervised Learning for Object Class Recognition
Constellation Models and Unsupervised Learning for Object Class Recognitionwolf
 
cvpr2011: human activity recognition - part 1: introduction
cvpr2011: human activity recognition - part 1: introductioncvpr2011: human activity recognition - part 1: introduction
cvpr2011: human activity recognition - part 1: introductionzukun
 
MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)
MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)
MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)npinto
 
Identity Management: What Solution is Right for You?
Identity Management: What Solution is Right for You?Identity Management: What Solution is Right for You?
Identity Management: What Solution is Right for You?C/D/H Technology Consultants
 
Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)nikhilus85
 
Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3
Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3
Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3STM Journals
 
Image representation
Image representationImage representation
Image representationRahul Dadwal
 
Human activity recognition
Human activity recognitionHuman activity recognition
Human activity recognitionRandhir Gupta
 

Viewers also liked (20)

Object recognition
Object recognitionObject recognition
Object recognition
 
Anil Thomas - Object recognition
Anil Thomas - Object recognitionAnil Thomas - Object recognition
Anil Thomas - Object recognition
 
AAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognitionAAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognition
 
Object Detection and Recognition
Object Detection and Recognition Object Detection and Recognition
Object Detection and Recognition
 
Object recognition
Object recognitionObject recognition
Object recognition
 
Object recognition seminar S2006E01
Object recognition seminar S2006E01Object recognition seminar S2006E01
Object recognition seminar S2006E01
 
Identity Management Manifesto
Identity Management ManifestoIdentity Management Manifesto
Identity Management Manifesto
 
Pc Seminar Jordi
Pc Seminar JordiPc Seminar Jordi
Pc Seminar Jordi
 
Mit6870 orsu lecture2
Mit6870 orsu lecture2Mit6870 orsu lecture2
Mit6870 orsu lecture2
 
Urs Köster Presenting at RE-Work DL Summit in Boston
Urs Köster Presenting at RE-Work DL Summit in BostonUrs Köster Presenting at RE-Work DL Summit in Boston
Urs Köster Presenting at RE-Work DL Summit in Boston
 
Constellation Models and Unsupervised Learning for Object Class Recognition
Constellation Models and Unsupervised Learning for Object Class RecognitionConstellation Models and Unsupervised Learning for Object Class Recognition
Constellation Models and Unsupervised Learning for Object Class Recognition
 
cvpr2011: human activity recognition - part 1: introduction
cvpr2011: human activity recognition - part 1: introductioncvpr2011: human activity recognition - part 1: introduction
cvpr2011: human activity recognition - part 1: introduction
 
MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)
MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)
MIT 6.870 - Template Matching and Histograms (Nicolas Pinto, MIT)
 
Identity Management: What Solution is Right for You?
Identity Management: What Solution is Right for You?Identity Management: What Solution is Right for You?
Identity Management: What Solution is Right for You?
 
Part1
Part1Part1
Part1
 
Representation image
Representation imageRepresentation image
Representation image
 
Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)
 
Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3
Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3
Journal of Image Processing & Pattern Recognition Progress vol 3 issue 3
 
Image representation
Image representationImage representation
Image representation
 
Human activity recognition
Human activity recognitionHuman activity recognition
Human activity recognition
 

Similar to Object recognition

Makine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine Learning
Makine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine LearningMakine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine Learning
Makine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine LearningAli Alkan
 
APPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEY
APPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEYAPPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEY
APPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEYcscpconf
 
Applications of spatial features in cbir a survey
Applications of spatial features in cbir  a surveyApplications of spatial features in cbir  a survey
Applications of spatial features in cbir a surveycsandit
 
Secure System based on Dynamic Features of IRIS Recognition
Secure System based on Dynamic Features of IRIS RecognitionSecure System based on Dynamic Features of IRIS Recognition
Secure System based on Dynamic Features of IRIS Recognitionijsrd.com
 
Currency recognition on mobile phones
Currency recognition on mobile phonesCurrency recognition on mobile phones
Currency recognition on mobile phoneshabeebsab
 
CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...
CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...
CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...Editor IJMTER
 
Face recognition using laplacianfaces
Face recognition using laplacianfaces Face recognition using laplacianfaces
Face recognition using laplacianfaces StudsPlanet.com
 
Rotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET Transform
Rotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET TransformRotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET Transform
Rotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET TransformIRJET Journal
 
IRJET- Wearable AI Device for Blind
IRJET- Wearable AI Device for BlindIRJET- Wearable AI Device for Blind
IRJET- Wearable AI Device for BlindIRJET Journal
 
Spot the Dog: An overview of semantic retrieval of unannotated images in the ...
Spot the Dog: An overview of semantic retrieval of unannotated images in the ...Spot the Dog: An overview of semantic retrieval of unannotated images in the ...
Spot the Dog: An overview of semantic retrieval of unannotated images in the ...Jonathon Hare
 
A Review on Matching For Sketch Technique
A Review on Matching For Sketch TechniqueA Review on Matching For Sketch Technique
A Review on Matching For Sketch TechniqueIOSR Journals
 
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object TrackingIntegrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object Trackingijsrd.com
 
Introduction talk to Computer Vision
Introduction talk to Computer Vision Introduction talk to Computer Vision
Introduction talk to Computer Vision Chen Sagiv
 
Logo Detection Using AI ML
Logo Detection Using AI MLLogo Detection Using AI ML
Logo Detection Using AI MLIRJET Journal
 

Similar to Object recognition (20)

Makine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine Learning
Makine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine LearningMakine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine Learning
Makine Öğrenmesi ile Görüntü Tanıma | Image Recognition using Machine Learning
 
APPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEY
APPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEYAPPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEY
APPLICATIONS OF SPATIAL FEATURES IN CBIR : A SURVEY
 
Applications of spatial features in cbir a survey
Applications of spatial features in cbir  a surveyApplications of spatial features in cbir  a survey
Applications of spatial features in cbir a survey
 
Secure System based on Dynamic Features of IRIS Recognition
Secure System based on Dynamic Features of IRIS RecognitionSecure System based on Dynamic Features of IRIS Recognition
Secure System based on Dynamic Features of IRIS Recognition
 
SVD Based Blind Video Watermarking Algorithm
SVD Based Blind Video Watermarking AlgorithmSVD Based Blind Video Watermarking Algorithm
SVD Based Blind Video Watermarking Algorithm
 
Currency recognition on mobile phones
Currency recognition on mobile phonesCurrency recognition on mobile phones
Currency recognition on mobile phones
 
Image Processing as a Part of Big Data Initiatives
Image Processing as a Part of Big Data InitiativesImage Processing as a Part of Big Data Initiatives
Image Processing as a Part of Big Data Initiatives
 
CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...
CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...
CONTENT RECOVERY AND IMAGE RETRIVAL IN IMAGE DATABASE CONTENT RETRIVING IN TE...
 
Face recognition using laplacianfaces
Face recognition using laplacianfaces Face recognition using laplacianfaces
Face recognition using laplacianfaces
 
Rotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET Transform
Rotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET TransformRotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET Transform
Rotation Invariant Face Recognition using RLBP, LPQ and CONTOURLET Transform
 
IRJET- Wearable AI Device for Blind
IRJET- Wearable AI Device for BlindIRJET- Wearable AI Device for Blind
IRJET- Wearable AI Device for Blind
 
Spot the Dog: An overview of semantic retrieval of unannotated images in the ...
Spot the Dog: An overview of semantic retrieval of unannotated images in the ...Spot the Dog: An overview of semantic retrieval of unannotated images in the ...
Spot the Dog: An overview of semantic retrieval of unannotated images in the ...
 
A Review on Matching For Sketch Technique
A Review on Matching For Sketch TechniqueA Review on Matching For Sketch Technique
A Review on Matching For Sketch Technique
 
F42062732
F42062732F42062732
F42062732
 
pydataPointCloud.pptx
pydataPointCloud.pptxpydataPointCloud.pptx
pydataPointCloud.pptx
 
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object TrackingIntegrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
 
Ai use cases
Ai use casesAi use cases
Ai use cases
 
06_features_slides.pdf
06_features_slides.pdf06_features_slides.pdf
06_features_slides.pdf
 
Introduction talk to Computer Vision
Introduction talk to Computer Vision Introduction talk to Computer Vision
Introduction talk to Computer Vision
 
Logo Detection Using AI ML
Logo Detection Using AI MLLogo Detection Using AI ML
Logo Detection Using AI ML
 

More from saniacorreya

Students academic performance using clustering technique
Students academic performance using clustering techniqueStudents academic performance using clustering technique
Students academic performance using clustering techniquesaniacorreya
 
PROJECT REPORT ON CRYPTOGRAPHIC ALGORITHM
PROJECT REPORT ON CRYPTOGRAPHIC ALGORITHMPROJECT REPORT ON CRYPTOGRAPHIC ALGORITHM
PROJECT REPORT ON CRYPTOGRAPHIC ALGORITHMsaniacorreya
 
Smartcards and Authentication Tokens
Smartcards and Authentication TokensSmartcards and Authentication Tokens
Smartcards and Authentication Tokenssaniacorreya
 
Color and human vision
Color and human visionColor and human vision
Color and human visionsaniacorreya
 
Manipulator robot for crack detection and welding
Manipulator robot for crack detection and weldingManipulator robot for crack detection and welding
Manipulator robot for crack detection and weldingsaniacorreya
 

More from saniacorreya (8)

Students academic performance using clustering technique
Students academic performance using clustering techniqueStudents academic performance using clustering technique
Students academic performance using clustering technique
 
Sania rtp
Sania rtpSania rtp
Sania rtp
 
PROJECT REPORT ON CRYPTOGRAPHIC ALGORITHM
PROJECT REPORT ON CRYPTOGRAPHIC ALGORITHMPROJECT REPORT ON CRYPTOGRAPHIC ALGORITHM
PROJECT REPORT ON CRYPTOGRAPHIC ALGORITHM
 
Smartcards and Authentication Tokens
Smartcards and Authentication TokensSmartcards and Authentication Tokens
Smartcards and Authentication Tokens
 
Color and human vision
Color and human visionColor and human vision
Color and human vision
 
Manipulator robot for crack detection and welding
Manipulator robot for crack detection and weldingManipulator robot for crack detection and welding
Manipulator robot for crack detection and welding
 
Windows 10 ppt
Windows 10 pptWindows 10 ppt
Windows 10 ppt
 
Li fi
Li fiLi fi
Li fi
 

Recently uploaded

MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
FILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinoFILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinojohnmickonozaleda
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 

Recently uploaded (20)

FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
FILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinoFILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipino
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 

Object recognition

  • 2. Group Members ASHA SAJU LIYA C ANTO SANIYA CORREYA TINU PAUL
  • 3. Jasmine Jasmine (name) Jasmine (street) Jasmine(flower)
  • 4.
  • 5. Recognition problem hard with computer For human being it is easy to recognize the objects by color, texture and appearance. A spontaneous, natural activity for humans and other biological systems. People know about millions of different objects, yet they can easily distinguish among them. But in the case of computers they are not able to recognize just with appearance. There must be detailed screening to be done to identify a object. A FLOWER
  • 6. Main problems faced by computer while detecting objects Scale and shape of the imaged object varies with viewpoint Occlusion (self- or by a foreground object) Lighting changes Background “clutter”
  • 7.
  • 12. Pixel Representation • Just pixels is a bad representation • Pixel intensities are affected by a lot of different things like
  • 13. Why pixel matching is not a good method?? Rotation  scaling  perspective Illumination changes  Reordering of scenes
  • 14. – starting from an image of an object of interest (the query), search through an image dataset to obtain (or retrieve) those images that contain the target object. OBJECT RECOGNITION
  • 15. Definition • Object recognition is a task of finding and identifying object in an image or video sequence. • The goal of instance-level recognition is to match (recognize) a specific object or scene.
  • 18. Divide it into grids
  • 20. How to Detect Key points Key points are the features or points in an image that doesn’t change their positions in the original image even if the image is scaled, rotated or translated. These points remains fixed in all these cases.
  • 21. Descriptors  Each key point has many descriptions.  Lowe's method for image feature generation transforms an image into a large collection of feature vectors, each of which is invariant to image translation, invariant to scaling, invariant to rotation.
  • 22. How can we find descriptors?? Commonly used methods SIFT SURF
  • 23. SIFT Descriptors Scale Invariant Feature Transform Compute regions in each image independently “Label” each region by a vector of descriptors Find corresponding regions by matching to closest descriptor vector Score each frame in the database by the number of matches Difference of Gaussians function is applied in scale space to a series of smoothed and re-sampled images.
  • 24.
  • 26. • Consider a certain threshold value. Discard points that are not within the range of this threshold. 729 left after peak value threshold
  • 27. Dominant orientations are assigned. These steps ensure that the key points are more stable for matching and recognition. 536 left after testing ratio of principle curvatures
  • 28. SIFT vector formation SIFT descriptors are then obtained by considering pixels around the radius of a key location
  • 29. Create array of orientation histograms
  • 30. SURF  Speeded Up Robust Features It is a high-performance scale and rotation-invariant detector / descriptor The standard version of SURF is several times faster than SIFT and claimed by its authors to be more robust against different image transformations than SIFT.
  • 31.
  • 32. Feature matching using Nearest Neighbor Next we will use the descriptor computed over each detection to match the detections between images. We will use the simplest matching scheme- the nearest neighbor of descriptors  The nearest neighbors are defined as the keypoints with minimum Euclidean distance from the given descriptor vector.
  • 33. Nearest Neighbor Ratio The probability that a match is correct can be determined by taking the ratio of distance from the closest neighbor to the distance of the second closest. where d1 and d2 are the nearest and second nearest neighbor distances The value of the resultant ratio varies from 0.1 to 0.9. best value is 0.8.
  • 34. Represent each region by SIFT descriptor (128- vector)
  • 35.
  • 36. Clustering There will be thousands of points. How to group them ? The answer is use clustering method. When clusters of features are found for an object, the probability of the interpretation being correct is much higher than for any single feature.
  • 37.
  • 38.
  • 39. Towards Large Scale Retrieval
  • 40. Large Scale Retrieval  In large scale retrieval the goal is to match a query image to a large database of images (for example the WWW or Wikipedia).  The quality of a match is measured as the number of geometrically verified feature correspondences between the query and a database image.  While the techniques discussed in Part I and II are sufficient to do this, in practice they require too much memory to store the SIFT descriptors for all the detections in all the database images  We explore next two key ideas: one to reduce the memory; the other to speed up image retrieval.
  • 41. 1. CREATING VISUAL WORDS 2. INVERTED INDEX
  • 42. Object Bag of ‘words’ CREATE VOCABULARY Vocabulary of words Visual words
  • 43. Bag of features • First, take a bunch of images, extract features, and build up a “dictionary” or “visual vocabulary” – a list of common features • Visual words are the representation of the whole features extracted
  • 44. Bag of features: outline 1. Extract features
  • 45.
  • 46. Bag of features: 1. Extract features 2. Learn “visual vocabulary”
  • 47.
  • 48. Bag of features: 1. Extract features 2. Learn “visual vocabulary” 3. Quantize features using visual vocabulary
  • 49.
  • 50. Bag of features: 1. Extract features 2. Learn “visual vocabulary” 3. Quantize features using visual vocabulary 4. Represent images by frequencies of “visual words”
  • 51.
  • 52.
  • 53.
  • 54. Inverted index  Indexing all the feature vectors extracted from the database.  In this work, each of the visual descriptors is hierarchically quantized by hierarchical K- means clustering.  Here, K defines the branch factor of the tree rather than the final number of clusters  we kept an inverted file associated with each leaf node—a representative descriptor (visual word)—in the vocabulary tree.  However, we recorded not only the visual instances that contain the word, but also those word IDs.  Can quickly use the inverted file to compute similarity between a new image and all the images in the database  Only consider database images whose bins overlap the query image
  • 55. Advantage of Indexing  One merit of the adaptive vocabulary tree is that the tree needs not to be re-built when the database slightly changes.  Moreover, the tree grows based on a measure that encourages splitting those nodes that become too ambiguous and pruning nodes that are not active for the current set of tasks. word 1 word 2 word i id2 id2 id8 id9 id1 id9 id9 word 1 word 2 word i id2 id8 id9 id1 id9 Easily implemented with Matlab using sparse matrices/vectors f1 f9 f2 if8 f9 Can easily incorporate meta Information per descriptor
  • 56. APPLICATIONS  Digital watermarking  Face detection  OCR  Quality control and assembly in industrial plants.  Robot localization and navigation.  Monitoring and surveillance.  Automatic exploration of image databases  Appearance Recognition
  • 57. Digital watermarking A digital watermark is a kind of marker embedded in a noise- tolerant signal such as an audio, video or image data. It is typically used to identify ownership of the copyright of such signal.  "Watermarking" is the process of hiding digital information in a carrier signal; the hidden information should, but does not need to, contain a relation to the carrier signal.
  • 58. Face detection Face detection is a computer technology being used in a variety of applications that identifies human faces in digital images. Face detection also refers to the psychological process by which humans locate and attend to faces in a visual scene.
  • 59. Face Detection EE465: Introduction to Digital Image Processing Copyright Xin Li'2003 59
  • 60. OCR  Optical character recognition (optical character reader) (OCR) is the mechanical or electronic conversion of images of typed, handwritten or printed text into machine-encoded text.  It is widely used as a form of data entry from printed paper data records, etc.  It is a common method of digitizing printed texts so that it can be electronically edited, searched, stored more compactly, displayed on-line, and used in machine processes such as machine translation, text-to-speech, key data and text mining.
  • 61. Robot localization and navigation.
  • 62.
  • 63. Vehicle Detection  Intelligent vehicles aim at improving the driving safety by machine vision techniques EE465: Introduction to Digital Image Processing Copyright Xin Li'2003 63
  • 64. Quality control and assembly in industrial plants
  • 65. Pedestrian Detection  Why do we need to detect pedestrians?  Security monitoring  Intelligent vehicles  Video database search  Challenges  Uncertainty with pedestrian profile, viewing distance and angle, deformation of human limb EE465: Introduction to Digital Image Processing Copyright Xin Li'2003 65
  • 66. Learning-based Pedestrian Detection EE465: Introduction to Digital Image Processing Copyright Xin Li'2003 66
  • 67. Represent an object by the set of its possible appearances (i.e., under all possible viewpoints and illumination conditions). Identifying an object implies finding the closest stored image.
  • 68. Upload or provide url for image, and find visually similar photos Site :-http://www.stevesdigicams.com/BYO.jpg
  • 69. Conclusion  Any information can be retrieved from the system with accurate results.  Many applications such as face detection, pattern recognition is based on the technique object recognition
  • 70.