The euclidean-distance tag has no wiki summary.
0
votes
2answers
47 views
MATLAB Computing distance from a point to a set of points
Consider a matrix A:
A = magic(5)
17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
I have to compute the ...
1
vote
0answers
27 views
Counting the number of datapoints within a Euclidean distance MS SQL
Have 2 data sets
list of 300 geocordinates
list of over 2million geocordinates
For each entry in list 1, I am trying to count the number of entries from list 2 that lie within 5 mile radius.
I've ...
1
vote
0answers
29 views
Unmatched intersected line coordinates in 2D array coordinate
In the link here I described about this problem as a primary description. That will help me to explain the description of below mentioned problem. Here, I have 2D array with some values , let's say, ...
3
votes
3answers
121 views
euclidean distance between vectors grouped by other variable in SPSS, R or Excel
I have a dataset containing something like this:
case,group,val1,val2,val3,val4
1,1,3,5,6,8
2,1,2,7,5,4
3,2,1,3,6,8
4,2,5,4,3,7
5,1,8,6,5,3
I'm trying to compute programmatically the Euclidean ...
-1
votes
0answers
36 views
Contour Detection change stepwise cityblock shape to euclidean in openCV
I have a problem, while I´m doing contour-detection. I want to get a smoother contour. On the example pictures below you can see my detected contour. I used grabCut on down-scaled image, resized it, ...
2
votes
1answer
86 views
Euclidean Distance Calculation in C
I tried to calculate Euclidean distance in PHP using the following code.But the time it takes is very long. I want to test if I perform the same operation in C if it will be faster. The input datas ...
-2
votes
0answers
33 views
Compute a Matrix of Eucleudian distance for 20 amino acids using physicochemical properties score in python [closed]
I have 20 amino-acids (AAs) and 7 physochemichal properties (RADA880102; FAUJ880103; ZIMJ680104; GRAR740102;CRAJ730103; BURA740101; CHAM820102) and I am trying to write a script in Python to compute ...
1
vote
2answers
90 views
Computing net distance (Euclidean distance) in R
I have asked about and receive great help for computing Euclidean distance in R before. Now, I need to compute the Euclidean distance from the first point relative to all the other points within the ...
3
votes
1answer
76 views
Euclidean distance in R using two variables in a matrix
I am quite new to R and I am trying to compute the gross distance (or the sum of the Euclidean distance on all data points) from two variables in my matrix and net distance (Euclidean distance between ...
0
votes
0answers
17 views
How to find location of descriptors in SIFT after using Eucliden Distance?
I have used SIFT on one image, then I used Euclidean Distance between descriptors to find similar ones, now I want to know what is the location of key-points after applying Euclidean Distance?
I am ...
2
votes
2answers
63 views
Error - Calculating Euclidean distance for PCA in python
I am trying to implement face recognition by Principal Component Analysis (PCA) using python. I am following the steps in this tutorial: ...
0
votes
0answers
70 views
Calculating Euclidean distance in mysql
I have an exe which return an array of 16elements.I have to pass this array to Mysql using php to calculate the Euclidean distance.My table in MySQL is in the form.
id |img_id | ...
1
vote
1answer
82 views
Calculating Squared Euclidean distance
I have an exe which return an array of 16elements.I have to pass this array to Mysql using php to calculate the Euclidean distance.My table in MySQL is in the form.
id |img_id | ...
0
votes
0answers
12 views
change amplitude of euclidean distance
I have two dissimilarity matrix one is euclidean distance with the amplitude of 0 to infinity, another one is between 0 to 1. how to take the mean of these two?
I think I need to change the amplitude ...
0
votes
0answers
25 views
Does padding more zeros to the smaller vector give worse result in finding Euclidean Distance?
I have two sets of numbers for which I want to find the Eucledian distance. If one set has only 3 values and the other has 20 values, will the euclidean distance be proper if I pad 17 zeros to the ...
0
votes
1answer
253 views
How to show 5 images having smallest Euclidean distance with respect to query image
Suppose I have one query image, and a database in matlab that has 10 images. I can read out and show one image which has smallest Euclidean distance with respect to query image. But now, I want to ...
0
votes
1answer
111 views
How to use k-d tree to find nearest neighbor?
I have applied SIFT on one image and got descriptors, then I have used Euclidean distance to find similar descriptors, now I want to use k-d tree to find which descriptors are more similar and ...
1
vote
1answer
135 views
Efficient way to compute multiple euclidean distances Matlab
I am training my own self organizing map to cluster colorvalues. Now I want to make some sort of a U-matrix to show euclidean distances between the nodes and their direct neighbors. My problem now is, ...
1
vote
2answers
151 views
MATLAB - efficient way of computing distances between points in a graph/network using the adjacency matrix and coordinates
I have the network representation in a 2D coordinate space. I have an adjacency matrix Adj(which is sparse) and a coordinate matrix with the x,y values of all the points/nodes/vertices in the graph ...
1
vote
2answers
247 views
Euclidean Distance
I have two points
x1 = (a1,b1,c1,d1,e1); //5 dimensional point
x2 = (a2,b2,c2,d2,e2); //5 dimensional point
So is this right way to calculate the euclidean dist?
d = ...
1
vote
1answer
263 views
How to find heading angle between two points on Earth - straight through the Earth just as if they were two points in Empty space?
I would like to get the formula on how to calculate the Euclidian distance between two geographical co-ordinates on earth and heading angle relative to True North. Say from New York to New Dehli , I ...
2
votes
2answers
344 views
Euclidean distance between two set of 3D points
How can I find the nearest points of two set of 3D points(with different number,set1 includes 400 points and set2 includes 2000 points) and then find the Euclidean distance between set1 and result ...
1
vote
3answers
246 views
Calculate distance, given a set of coordinates
my question is quite trivial, but I'm looking for the vectorized form of it.
My code is:
HubHt = 110; % Hub Height
GridWidth = 150; % Grid length along Y axis
GridHeight = 150; % Grid length ...
0
votes
1answer
132 views
Calculate distance between similar pixels - Euclidean distance - ArcGIS 10.1 - Erdas Imagine
I have an unsigned 1-bit thematic forest cover raster (.img). 1 = forest and 0 = not forest. I want to calculate the distance between forest patches. It appears that the Euclidean Distance tool in ...
0
votes
1answer
143 views
Pycuda Blocks and Grids to work with big datas
I need help to know the size of my blocks and grids.
I'm building a python app to perform metric calculations based on scipy as: Euclidean distance, Manhattan, Pearson, Cosine, joined other.
The ...
-1
votes
1answer
146 views
Euclidean distance definition [closed]
I have a question about it.
I've seen two different definitions of the Euclidean Distance.
The first one is from Wikipedia (http://en.wikipedia.org/wiki/Euclidean_distance):
...
2
votes
1answer
207 views
Fastest way to Calculate the Euclidian distance between 2 sets of vectors using numpy or scipy
OK I have recently discovered that the the scipy.spatial.distance.cdist command is very quick for solving a COMPLETE distance matrix between two vector arrays for source and destination.
see: ...
1
vote
2answers
94 views
How to vectorize the code in MATLAB
I have some Cluster Centers and some Data Points. I want to calculate the distances as below (norm is for Euclidean distance):
costsTmp = zeros(NObjects,NClusters);
lambda = ...
1
vote
1answer
309 views
Calculating euclidean distance between consecutive points of an array with numpy
I have an array which describes a polyline (ordered list of connected straight segments) as follows:
points = ((0,0),
(1,2),
(3,4),
(6,5),
(10,3),
...
0
votes
1answer
354 views
Euclidean Minimum Spanning Tree Without Triangulation
I was looking through some text about finding the EMST (Euclidean MST) using Delaunay triangulation technique, but also read somewhere that the EMST can be found through a sweep line algorithm. Since ...
4
votes
1answer
105 views
NaN distances in Mahout Euclidean implementation
We're using the EuclideanDistanceSimilarity class to calculate the similarity of a bunch of items using Hadoop.
Unfortunately some items are getting zero or very few resulting similar items despite ...
0
votes
1answer
122 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
225 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 ...
3
votes
2answers
552 views
Javascript object color change dynamically?
Here's the code to change color of balls to red when two balls collide.I'm almost there but but i don't seem to find the fault because one ball is not changing the color.Please help me out guys!!
...
0
votes
3answers
315 views
Changing color of Javascript class object dynamically?
I want to change the color of the balls to red when they collide. I tried using my function check() to change the color of the balls when they collide using balls[i].color but how do I know the ...
3
votes
2answers
537 views
GLSL Distance Field transparency
I am after smooth texture based outline effect in OpenGL. So far I tried mostly all kinds of edge detection algorithms which result mostly in crude and jagged outlines. Then I read about Distance ...
1
vote
0answers
1k views
Euclidean Distance or cosine similarity?
I was reading
Similarity Measure
and suddenly my whole world was falling apart. I have implemented a search engine using Clustering Technique. For Clustering , I used K Means which has distance ...
1
vote
2answers
779 views
Quickest way to calculate the Euclidean-Distance between two points in N-Dimensional space
I have to calculate the Euclidean Distance between two points in N-Dimensional space, and speed is crucial. I have two C style float arrays representing the two points in N-Dimensional space.
The ...
1
vote
0answers
118 views
Javascript Clusterfck Metric
So I am converting an old data visualization to a new platform and I am a little bit stuck on their community sorting feature. In the original code, it looks like the author uses agglomerative ...
0
votes
1answer
62 views
Finding the “tightest” subset in Euclidean space
I am given at of points x_1, x_2, ... x_n \in R^d. I wish to find a subset of k points such that the sum of the distances between these k points is minimal. Naively this is an O(n choose k) problem, ...
1
vote
2answers
352 views
squared-euclidean distance with RealVectors in Apache Commons Math
I'm using Apache Commons RealVector and ArrayRealVector classes in Java. I can calculate the euclidean distance between two vectors v1 and v2 as
double dist = v1.getDistance(v2);
However, I'm ...
0
votes
0answers
177 views
how to compute matrix using delphi
i want to compute euclidean distance of array with this calculation using delphi
pjst array:
1 0 0 0 1 0 0 1 0 0
0 1 1 1 1 0 0 1 0 0
0 0 1 0 0 1 0 1 0 0
0 0 1 0 1 0 0 1 0 0
0 1 0 0 0 1 0 1 0 0
1 0 1 ...
2
votes
1answer
543 views
Calculate squared Euclidean distance matrix on GPU
Let p be a matrix of first set of locations where each row gives the coordinates of a particular point. Similarly, let q be a matrix of second set of locations where each row gives the coordinates of ...
10
votes
5answers
455 views
What is the most efficient way to find the euclidean distance in 3d using mysql?
I have a MySQL table with thousands of data points stored in 3 columns R, G, B. how can I find which data point is closest to a given point (a,b,c) using Euclidean distance?
I'm saving RGB values of ...
1
vote
1answer
369 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 ...
0
votes
1answer
994 views
Given a set of data points, find the one that is “closest”
So we have a reference set of 3D points (let's call it R), and many other sets of 3D points (let's call that set of sets of data points P, and each data set in that Pi).
The task is to return the Pi ...
2
votes
1answer
270 views
Binary Tree using int array as key (Euclidean distances)?
Have written a Binary Search Tree that stores data on ships, the key for the search is their acoustic signature.
When searching the tree I want to return either a ship with the correct signature or ...
1
vote
2answers
190 views
Optimal path from a list of points c++
i have this request:
i have a list of points and for each of these i have X, Y coordinate.
my goal is to find the optimal path between these points (I have to use all the points).
for example:
A ...
0
votes
1answer
527 views
Point on a straight line specific distance away in C
How do I find the point on the straight line that is specific distance away from a given point. I am writing this code in C but I do not get the right answer..Could you anyone guide me on what I am ...
18
votes
2answers
2k views
Compare similarity algorithms
I want to use string similarity functions to find corrupted data in my database.
I came upon several of them:
Jaro,
Jaro-Winkler,
Levenshtein,
Euclidean and
Q-gram,
I wanted to know what is ...
