Uses of Class
QueryProcessor.SF.QuerySF

Packages that use QuerySF
IndexManager The Index Manager (IM) contains the classes managing the feature indices for performing similarity searches over the image/region features. 
QueryProcessor.SF Contains algorithms for solving k-NN queries with a scoring function. 
QueryProcessor.SF.ImgIdx Contains classes for connecting with the WINDSURF/M-tree DLL in order to solve SF-based queries on images. 
QueryProcessor.SF.kNNset Contains the index-based algorithm (k-NN-set) for a k-NN query. 
 

Uses of QuerySF in IndexManager
 

Methods in IndexManager that return QuerySF
abstract  QuerySF ImgIndexManager.createQuery(Image image)
          Creates a new k-NN query based on the given image using this index.
 QuerySF ImgIndexManagerMtree.createQuery(Image image)
          Creates a new k-NN query based on the given image using this index.
 

Uses of QuerySF in QueryProcessor.SF
 

Subclasses of QuerySF in QueryProcessor.SF
 class QuerySFSequential
          Solves a query with a scoring function by sequentially accessing all DB images.
 

Uses of QuerySF in QueryProcessor.SF.ImgIdx
 

Subclasses of QuerySF in QueryProcessor.SF.ImgIdx
 class QuerySFIndex
          Abstract class representing a query with a scoring function to be solved with an index.
 class WindsurfQuerySFMtree
          Class representing a query for Windsurf with a scoring function to be solved with a M-tree.
 

Uses of QuerySF in QueryProcessor.SF.kNNset
 

Subclasses of QuerySF in QueryProcessor.SF.kNNset
 class kNNset
          Class implementing the k-NN-set algorithm for solving a query with a scoring function.