Uses of Class
retrieval.SimilaritySearchResult

Packages that use SimilaritySearchResult
retrieval Classes needed to perform similarity searches in a database and mapping database entries to java classes. 
 

Uses of SimilaritySearchResult in retrieval
 

Fields in retrieval declared as SimilaritySearchResult
private  SimilaritySearchResult SearchThread.result
          the result to hold meta data about the found result.
 

Fields in retrieval with type parameters of type SimilaritySearchResult
private  java.util.PriorityQueue<SimilaritySearchResult> SearchThread.results
          priority queue to store all found results in.
 

Methods in retrieval that return types with arguments of type SimilaritySearchResult
static java.util.PriorityQueue<SimilaritySearchResult> SimilaritySearch.getSimilarities(java.lang.String database, SkeletonObject so, SkeletonObject so_flipped, java.lang.String skeletonfilename, java.lang.String objectfilename, int nosp, double alpha)
          Given a skeleton object, this function searches the database in src/database/database.db, performes PSGM to the input skeleton and all skeletons in the database and saves the results in the order of their similarity in a priority queue.
 

Methods in retrieval with parameters of type SimilaritySearchResult
 int SimilaritySearchResult.compareTo(SimilaritySearchResult o)
          Implementation of Comparable's compareTo.
 

Constructor parameters in retrieval with type arguments of type SimilaritySearchResult
SearchThread(SkeletonObject so, SkeletonObject so_flipped, java.lang.String skeletonfilename1, java.lang.String objectfilename1, java.lang.String skeletonfilename2, java.lang.String objectfilename2, java.lang.String category, int nosp, double alpha, java.util.PriorityQueue<SimilaritySearchResult> results)
          create a new search thread.