Object categorization from image search

Object categorization from image search

In computer vision, the problem of object categorization from image search is the problem of training a classifier to recognize categories of objects, using only the images retrieved automatically with an Internet search engine. Ideally, automatic image collection would allow classifiers to be trained with nothing but the category names as input. This problem is closely related to that of content-based image retrieval (CBIR), where the goal is to return better image search results rather than training a classifier for image recognition.

Traditionally, classifiers are trained using sets of images that are labeled by hand. Collecting such a set of images is often a very time-consuming and laborious process. The use of Internet search engines to automate the process of acquiring large sets of labeled images has been described as a potential way of greatly facilitating computer vision research.[1]

Contents

Challenges

Unrelated images

One problem with using Internet image search results as a training set for a classifier is the high percentage of unrelated images within the results. It has been estimated that, when a search engine such as Google images is queried with the name of an object category (such as airplane?, up to 85% of the returned images are unrelated to the category.[1]

Intra-class variability

Another challenge posed by using Internet image search results as training sets for classifiers is that there is a high amount of variability within object categories, when compared with categories found in hand-labeled datasets such as Caltech 101 and Pascal. Images of objects can vary widely in a number of important factors, such as scale, pose, lighting, number of objects, and amount of occlusion.

pLSA approach

In a 2005 paper by Fergus et al.[1], pLSA (probabilistic latent semantic analysis) and extensions of this model were applied to the problem of object categorization from image search. pLSA was originally developed for document classification, but has since been applied to computer vision. It makes the assumption that images are documents that fit the bag of words model.

Model

Just as text documents are made up of words, each of which may be repeated within the document and across documents, images can be modeled as combinations of visual words. Just as the entire set of text words are defined by a dictionary, the entire set of visual words is defined in a codeword dictionary.

pLSA divides documents into topics as well. Just as knowing the topic(s) of an article allows you to make good guesses about the kinds of words that will appear in it, the distribution of words in an image is dependent on the underlying topics. The pLSA model tells us the probability of seeing each word w given the category \displaystyle d in terms of topics \displaystyle z:

\displaystyle P(w|d) = \sum_{z=1}^Z P(w|z)P(z|d)

An important assumption made in this model is that \displaystyle w and \displaystyle d are conditionally independent given \displaystyle z. Given a topic, the probability of a certain word appearing as part of that topic is independent of the rest of the image.[2]

Training this model involves finding \displaystyle P(w|z) and \displaystyle P(z|d) that maximizes the likelihood of the observed words in each document. To do this, the expectation maximization algorithm is used, with the following objective function:

\displaystyle L = \prod_{d=1}^D \prod_{w=1}^W P(w|d)^{n(w|d)}

Application

ABS-pLSA

Absolute position pLSA (ABS-pLSA) attaches location information to each visual word by localizing it to one of X 揵ins?in the image. Here, \displaystyle x represents which of the bins the visual word falls into. The new equation is:

\displaystyle P(w|d) = \sum_{z=1}^Z P(w,x|z)P(z|d)

\displaystyle P(w,x|z) and \displaystyle P(d) can be solved for in a manner similar to the original pLSA problem, using the EM algorithm

A problem with this model is that it is not translation or scale invariant. Since the positions of the visual words are absolute, changing the size of the object in the image or moving it would have a significant impact on the spatial distribution of the visual words into different bins.

TSI-pLSA

Translation and scale invariant pLSA (TSI-pLSA). This model extends pLSA by adding another latent variable, which describes the spatial location of the target object in an image. Now, the position \displaystyle x of a visual word is given relative to this object location, rather than as an absolute position in the image. The new equation is:

\displaystyle P(w,x|d) = \sum_{z=1}^Z \sum_{c=1}^C P(w,x|c,z)P(c)P(z|d)

Again, the parameters \displaystyle P(w,x|c,z) and \displaystyle P(d) can be solved using the EM algorithm. \displaystyle P(c) can be assumed to be a uniform distribution.

Implementation

Selecting words

Words in an image were selected using 4 different feature detectors:[1]

Using these 4 detectors, approximately 700 features were detected per image. These features were then encoded as Scale-invariant feature transform descriptors, and vector quantized to match one of 350 words contained in a codebook. The codebook was precomputed from features extracted from a large number of images spanning numerous object categories.

Possible object locations

One important question in the TSI-pLSA model is how to determine the values that the random variable \displaystyle C can take on. It is a 4-vector, whose components describe the object抯 centroid as well as x and y scales that define a bounding box around the object, so the space of possible values it can take on is enormous. To limit the number of possible object locations to a reasonable number, normal pLSA is first carried out on the set of images, and for each topic a Gaussian mixture model is fit over the visual words, weighted by \displaystyle P(w|z). Up to \displaystyle K Gaussians are tried (allowing for multiple instances of an object in a single image), where \displaystyle K is a constant.

Performance

The authors of the Fergus et al. paper compared performance of the three pLSA algorithms (pLSA, ABS-pLSA, and TSI-pLSA) on handpicked datasets and images returned from Google searches. Performance was measured as the error rate when classifying images in a test set as either containing the image or containing only background.

As expected, training directly on Google data gives higher error rates than training on prepared data.?[1] In about half of the object categories tested do ABS-pLSA and TSI-pLSA perform significantly better than regular pLSA, and in only 2 categories out of 7 does TSI-pLSA perform better than the other two models.

OPTIMOL

OPTIMOL (automatic Online Picture collection via Incremental MOdel Learning) approaches the problem of learning object categories from online image searches by addressing model learning and searching simultaneously. OPTIMOL is an iterative model that updates its model of the target object category while concurrently retrieving more relevant images.[3]

General framework

OPTIMOL was presented as a general iterative framework that is independent of the specific model used for category learning. The algorithm is as follows:

  • Download a large set of images from the Internet by searching for a keyword
  • Initialize the dataset with seed images
  • While more images needed in the dataset:
    • Learn the model with most recently added dataset images
    • Classify downloaded images using the updated model
    • Add accepted images to the dataset

Note that only the most recently added images are used in each round of learning. This allows the algorithm to run on an arbitrarily large number of input images.

Model

The two categories (target object and background) are modeled as Hierarchical Dirichlet processes (HDPs). As in the pLSA approach, it is assumed that the images can be described with the bag of words model. HDP models the distributions of an unspecified number of topics across images in a category, and across categories. The distribution of topics among images in a single category is modeled as a Dirichlet process (a type of non-parametric probability distribution). To allow the sharing of topics across classes, each of these Dirichlet processes is modeled as a sample from another 損arent?Dirichlet process. HDP was first described by Teh et al. in 2005.[4]

Implementation

Initialization

The dataset must be initialized, or seeded with an original batch of images which serve as good exemplars of the object category to be learned. These can be gathered automatically, using the first page or so of images returned by the search engine (which tend to be better than the subsequent images). Alternatively, the initial images can be gathered by hand.

Model learning

To learn the various parameters of the HDP in an incremental manner, Gibbs sampling is used over the latent variables. It is carried out after each new set of images is incorporated into the dataset. Gibbs sampling involves repeatedly sampling from a set of random variables in order to approximate their distributions. Sampling involves generating a value for the random variable in question, based on the state of the other random variables on which it is dependent. Given sufficient samples, a reasonable approximation of the value can be achieved.

Classification

At each iteration, \displaystyle P(z|c) and \displaystyle P(x|z,c) can be obtained from model learned after the previous round of Gibbs sampling, where \displaystyle z is a topic, \displaystyle c is a category, and \displaystyle x is a single visual word. The likelihood of an image being in a certain class, then, is:

\displaystyle P(I|c) = \prod_i \sum_j P(x_i|z_j,c)P(z_j|c)

This is computed for each new candidate image per iteration. The image is classified as belonging to the category with the highest likelihood.

Addition to the dataset and "cache set"

In order to qualify for incorporation into the dataset, however, an image must satisfy a stronger condition:

\displaystyle \frac{P(I|c_f)}{P(I|c_b)} > \frac{\lambda_{Ac_b} - \lambda_{Rc_b}}{\lambda_{Rc_f} - \lambda_{Ac_f}}\frac{P(c_b)}{P(c_f)}

Where \displaystyle c_f and \displaystyle c_b are foreground (object) and background categories, respectively, and the ratio of constants describes the risk of accepting false positives and false negatives. They are adjusted automatically at every iteration, with the cost of a false positive set higher than that of a false negative. This ensures that a better dataset is collected.

Once an image is accepted by meeting the above criterion and incorporated into the dataset, however, it needs to meet another criterion before it is incorporated into the 揷ache set敆the set of images to be used for training. This set is intended to be a diverse subset of the set of accepted images. If the model were trained on all accepted images, it might become more and more highly specialized, only accepting images very similar to previous ones.

Performance

Performance of the OPTIMOL method is defined by three factors:

  • Ability to collect images: OPTIMOL, it is found, can automatically collect large numbers of good images from the web. The size of the OPTIMOL-retrieved image sets surpass that of large human-labeled image sets for the same categories, such as those found in Caltech 101.
  • Classification accuracy: Classification accuracy was compared to the accuracy displayed by the classifier yielded by the pLSA methods discussed earlier. It was discovered that OPTIMOL achieved slightly higher accuracy, obtaining 74.8% accuracy on 7 object categories, as compared to 72.0%.
  • Comparison with batch learning: An important question to address is whether OPTIMOL's incremental learning gives it an advantage over traditional batch learning methods, when everything else about the model is held constant. When the classifier learns incrementally, by selecting the next images based on what it learned from the previous ones, three important results are observed:
    • Incremental learning allows OPTIMOL to collect a better dataset
    • Incremental learning allows OPTIMOL to learn faster (by discarding irrelevant images)
    • Incremental learning does not negatively affect the ROC curve of the classifier; in fact, incremental learning yielded an improvement

Object categorization in content-based image retrieval

Typically, image searches only make use of text associated with images. The problem of content-based image retrieval is that of improving search results by taking into account visual information contained in the images themselves. Several CBIR methods make use of classifiers trained on image search results, to refine the search. In other words, object categorization from image search is one component of the system. OPTIMOL, for example, uses a classifier trained on images collected during previous iterations to select additional images for the returned dataset.

Examples of CBIR methods that model object categories from image search are:

  • Fergus et al., 2004 [5]
  • Berg and Forsyth, 2006 [6]
  • Yanai and Barnard, 2006 [7]

References

  1. ^ a b c d e Fergus, R.; Fei-Fei, L.; Perona, P.; Zisserman,A.; (2005). "Learning Object Categories from Google抯 Image Search". Proc. IEEE International Conference on Computer Vision. http://vision.cs.princeton.edu/documents/FergusFei-FeiPeronaZisserman_ICCV05.pdf. 
  2. ^ Hofmann, Thomas (1999). "Probabilistic Latent Semantic Analysis". Uncertainty in Artificial Intelligence. http://www.cs.brown.edu/~th/papers/Hofmann-UAI99.pdf. 
  3. ^ Li, Li-Jia; Wang, Gang; Fei-Fei, Li; (2007). "OPTIMOL: automatic Online Picture collection via Incremental MOdel Learning". Proc. IEEE Conference on Computer Vision and Pattern Recognition. http://vision.cs.princeton.edu/documents/LiWangFei-Fei_CVPR2007.pdf. 
  4. ^ Teh, Yw; Jordan, MI; Beal, MJ; Blei,David (2006). "Hierarchical Dirichlet Processes". Journal of the American Statistical Association 101 (476): 1566. doi:10.1198/016214506000000302. http://www.cs.berkeley.edu/~jordan/papers/hdp.pdf. 
  5. ^ Fergus, R.; Perona,P.; Zisserman,A.; (2004). "A visual category filter for Google images". Proc. 8th European Conf. on Computer Vision. http://www.robots.ox.ac.uk/~fergus/papers/Fergus_ECCV4.pdf. 
  6. ^ Berg, T.; Forsyth, D. (2006). "Animals on the web". Proc. Computer Vision and Pattern Recognition. http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=1640929. 
  7. ^ Yanai, K; Barnard, K. (2005). "Probabilistic web image gathering". ACM SIGMM workshop on Multimedia information retrival. http://portal.acm.org/citation.cfm?id=1101838. 

External links

See also


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Object recognition (computer vision) — Feature detection Output of a typical corner detection algorithm …   Wikipedia

  • Concept Search — A concept search (or conceptual search) is an automated information retrieval method that is used to search electronically stored unstructured text (for example, digital archives, email, scientific literature, etc.) for information that is… …   Wikipedia

  • Bag of words model in computer vision — This is an article introducing the Bag of words model (BoW) in computer vision, especially for object categorization. From now, the BoW model refers to the BoW model in computer vision unless explicitly declared.Before introducing the BoW model,… …   Wikipedia

  • Scale-invariant feature transform — Feature detection Output of a typical corner detection algorithm …   Wikipedia

  • Constellation model — The constellation model is a probabilistic, generative model for category level object recognition in computer vision. Like other part based models, the constellation model attempts to represent an object class by a set of N parts under mutual… …   Wikipedia

  • Technical features new to Windows Vista — This article is part of a series on Windows Vista New features Overview Technical and core system Security and safety Networking technologies I/O technologies Management and administration Removed features …   Wikipedia

  • Computer vision — is the field concerned with automated imaging and automated computer based processing of images to extract and interpret information. It is the science and technology of machines that see. Here see means the machine is able to extract information …   Wikipedia

  • Lighting — Not to be confused with lightning. For other uses, see lighting (disambiguation). Low intensity lighting and haze in a concert hall allows laser effects to be visible …   Wikipedia

  • Cetacean intelligence — denotes the cognitive capabilities of the Cetacea order of mammals, which includes whales, porpoises, and dolphins. Contents 1 Brain size 2 Brain structure 3 Problem solving ability …   Wikipedia

  • Wikipedia:Manual of Style/Medicine-related articles — For advice on choosing and using reliable sources, see Wikipedia:Reliable sources (medicine related articles). This guideline is a part of the English Wikipedia s Manual of Style. Use common sense in applying it; it will have occasional… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”