public abstract class ByteNearestNeighbours extends Object implements NearestNeighbours<byte[],float[],IntFloatPair>
Constructor and Description |
---|
ByteNearestNeighbours() |
Modifier and Type | Method and Description |
---|---|
static float |
distanceFunc(byte[] qu,
byte[] pnt)
Static method to find the sum-squared distance between
a query vector and a point.
|
static void |
distanceFunc(byte[] qu,
byte[][] pnts,
float[] dsq_out)
Static method to find the sum-squared distance between
a query vector and each of a set of points.
|
static float |
distanceFunc(ByteFVComparator distance,
byte[] qu,
byte[] pnt)
Static method to find a distance between
a query vector and a point.
|
static void |
distanceFunc(ByteFVComparator distance,
byte[] qu,
byte[][] pnts,
float[] dsq_out)
Static method to find a distance between
a query vector and each of a set of points.
|
abstract int |
numDimensions()
Get the number of dimensions of each vector in the dataset
|
public ByteNearestNeighbours()
public static void distanceFunc(byte[] qu, byte[][] pnts, float[] dsq_out)
qu
- The query vector.pnts
- The points to compare against.dsq_out
- The resultant distances.public static float distanceFunc(byte[] qu, byte[] pnt)
qu
- The query vector.pnt
- The point to compare against.public static float distanceFunc(ByteFVComparator distance, byte[] qu, byte[] pnt)
distance
- the distance measurequ
- The query vector.pnt
- The point to compare against.public static void distanceFunc(ByteFVComparator distance, byte[] qu, byte[][] pnts, float[] dsq_out)
distance
- the distance measurequ
- The query vector.pnts
- The points to compare against.dsq_out
- The resultant distances.public abstract int numDimensions()