File: MVPTree.java

package info (click to toggle)
libphash 0.9.4-1.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,168 kB
  • sloc: sh: 18,059; cpp: 11,339; php: 1,870; xml: 619; java: 173; cs: 139; makefile: 74; awk: 70; ansic: 44
file content (13 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.phash;
public class MVPTree
{
	protected String mvpFile;
	public 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);
}