#include <new>
#include "KdTree.h"
#include "KdUtils.h"
#include "KdPriorityQueue.h"
#include "Helpers/Quicksort.h"
#include "Helpers/BasicFileIO.h"
#include <stdio.h>
#include <float.h>
#include <string.h>
Go to the source code of this file.
Functions | |
static float | CrossCorrelation (const float *pVector1, const float *pVector2, int nDimension) |
static float | SquaredEuclideanDistance (const float *pVector1, const float *pVector2, int nDimension) |
static float CrossCorrelation | ( | const float * | pVector1, |
const float * | pVector2, | ||
int | nDimension | ||
) | [inline, static] |
Definition at line 74 of file KdTree.cpp.
static float SquaredEuclideanDistance | ( | const float * | pVector1, |
const float * | pVector2, | ||
int | nDimension | ||
) | [inline, static] |
Definition at line 61 of file KdTree.cpp.