Lecture 6: Object Recognition & Line Extraction Flashcards
Concerning the Bag of Words(BoW) approach, what are the 2 questions asked?
Is this image in my database?
Robot: Have I been to this place before?
Concerning the Bag of Words(BoW) approach, what 3 analogies can be used from text retrieval?
Visual words, Vocabulary of Visual Words, “Bag of Words”(BoW) approach
What is the succession order in image retrieval?
Image collection –>Extract features –>Cluster Descriptors
What is image retrieval in BoW?
represents a more general problem of object or place recognition
What can we do with Image Retrieval?
describe a scene as a collection of words and look up in the database for image with a similar collection of words
What if we need to find an object/scene in a database of millions of images?(2 things)
- Build Vocabulary Tree via hierarchical clustering
- Use the Inverted File system: a way of efficient indexing
What is the format of the Inverted File System?
Each node in the tree is associated with a list of images containing an instance of this node.
Concerning Vocabulary trees, what is K-means clustering? What is minimized?
partitioning a point cloud into k clusters, such that each point belongs to one cluster.
the Sum of Squared Euclidean Distances between points and their nearest cluster-centers
What is the algorithm for Vocabulary trees?
- Randomly initialize k cluster centers
Until Convergence, what 2 things do you do in the algorithm for Vocabulary?
-Assign each data-point to its nearest cluster-center
-Re-compute each cluster-center as the means of all points assigned to each cluster
In Vocabulary tree construction, what does each node represent?
a cluster of descriptors
In Vocabulary tree construction, what does each leaf represent?
a visual word
What does an inverted file DB list? Inside it, what does each word point to?
all possible visual words.
a list of images where this word occurs.
What does a Voting array have?
as many cells as the images in the DB - each word in query image votes for an image
what is tf-idf acronym for?
Term
Frequency
-Inverse
Document