0
votes
1answer
135 views

Proper similarity measure for clustering

I have problems in finding a proper similarity measure for clustering. I have around 3000 arrays of sets, where each set contains features of certain domain (e.g., number, color, days, alphabets, ...
0
votes
0answers
246 views

How to use Euclidean Distance to find distance between each descriptor with others in one image

I have an image and applied SIFT on the image and get descriptors and locations. now i want to use Euclidean Distance to find distance between each descriptor with others in one image. and continue ...
1
vote
1answer
393 views

Hausdorff Distance between Points of two meshes

I have to implement the Hausdorff distance for 2 meshes. The meshes are different segmentation results of an human organ and I have to compare them, one mesh is a gold seg. and the second one the ...
5
votes
3answers
6k views

How to calculate Euclidean length of a matrix without loops?

It seems like the answer to this should be simple, but I am stumped. I have a matrix of Nx3 matrix where there 1st 2nd and 3rd columns are the X Y and Z coordinates of the nth item. I want to ...
1
vote
1answer
3k views

Find distance between two points using MKMapKit

I'm attempting to find the euclidean distance in meters between two points on an MKMapView using iPhone OS 3.2. The problem is that I have these coordinates in terms of latitude and longitude, which, ...
2
votes
2answers
272 views

For each element A[i] of array A, find the closest j such that A[j] > A[i]

Given : An array A[1..n] of real numbers. Goal : An array D[1..n] such that D[i] = min{ distance(i,j) : A[j] > A[i] } or some default value (like 0) when there is no higher-valued element. ...
4
votes
6answers
2k views

Using Numpy to find the average distance in a set of points

I have an array of points in unknown dimensional space, such as: data=numpy.array( [[ 115, 241, 314], [ 153, 413, 144], [ 535, 2986, 41445]]) and I would like to find the average euclidean distance ...