File: MVPTree.java

package info (click to toggle)
libphash 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,984 kB
  • ctags: 389
  • sloc: sh: 10,093; cpp: 5,063; java: 140; makefile: 98; ansic: 44
file content (10 lines) | stat: -rw-r--r-- 265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
public class MVPTree
{
String mvpFile;
MVPTree(String filename) { mvpFile = filename; }
public native boolean create(Hash[] hashes);
public native Hash[] query(Hash hash, float radius, float thresh,
				int maxResults);
public native boolean add(Hash[] hashes);
}