The euclidean-distance tag has no wiki summary.
0
votes
3answers
838 views
Euclidean Distance
I have some problem with euclidean distance. I have two different entities and I want to measure the similarity between these entities.
Lets suppose that entity 1 has 2 feature vectors and entity 2 ...
3
votes
1answer
956 views
Problem on Similarity Measurement between Color Image (OpenCV)
I'm a newbie on using OpenCV and i urgently need help about an application that i'm doing.
I'm working with a CBIR(Content-based Image Retrieval) project which will draw RGB histogram of images and ...
2
votes
1answer
88 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 ...
1
vote
1answer
87 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
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
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
35 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, ...
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
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 ...
1
vote
0answers
183 views
Creating an Ordered Euclidean Coordinate List through the similarity between points.. how?
I would like to somehow construct a list in which I have euclidean points with X,Y and Zone properties so that the points with the most similarity (AKA the closest in distance) are also ordered nearby ...
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 ...
0
votes
0answers
72 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 | ...
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
0answers
226 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 ...
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 ...
0
votes
0answers
145 views
What is the best distance equation used to calculate minimum distance between two sets of quantative information?
There are multiple distance equations to calculate the distance between two sets. But I don't know the differences between all and generally knows that all are used to calculate distance between them. ...
-1
votes
0answers
38 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, ...