Distance is a numerical description of how far apart objects are.

learn more… | top users | synonyms

0
votes
0answers
5 views

Find the distance between two Zip Code using Webservices?

Are there any good Webservices apart from Google one which can find me the distance between two Zip Codes? I have ...
1
vote
1answer
38 views

Find the point furthest away from n other points

I am trying to create an algorithm for 'fleeing' and would like to first find points which are 'safe'. That is to say, points where they are relatively distant from other points. This is 2D (not that ...
1
vote
1answer
44 views

distance between two Shapes/Areas in Java?

If I have two java.awt.geom.Area's made out of the union of various simple Shapes (Polygons and Ellipses), is there a method out there to find the distance (i.e. closest distance) between the two ...
2
votes
1answer
28 views

PHP - distance between two locations, approach [closed]

according to : http://sgowtham.net/ramblings/2009/08/04/php-calculating-distance-between-two-locations-given-their-gps-coordinates/ i'm gonna check distance between 2 given locations. My dubt is ...
0
votes
0answers
18 views

UIPanGestureRecognizer move within area smoothly

I have a view, which is fullscreen. Underneath is a view hidden. The top view should be dragged to the top so the underneath one gets visible. The top view should only be able to move from bottom (0) ...
1
vote
0answers
13 views

Geo-location of an object in image [closed]

For a college final project, I'm looking to build an android application which uses the android GPS feature as well as its camera in order to determine the GPS coordinates of an object in the ...
1
vote
1answer
50 views

Calculate distance (disparity) OpenCV

For my project I am using two camera's (stereo vision) to track objects and to calculate the distance. I calibrated them with the sample code of OpenCV and generate a disparity map. I already ...
-1
votes
1answer
11 views

Third point in triangle with two coordinates given

I am not good with math,and i just need someone to point me in the right direction. Latitude Longitude N 36° 13.488' W 095° 54.295' N 36° 13.488' W 095° 53.805' Assume that all three are ...
0
votes
0answers
9 views

How to use DWD R package in order to remove biases and merge two microarray datasets

I am trying to find a way to use distance weighted discrimination method (DWD) to remove biases from multiple microarray datasets. My starting point is this. The problem is that Matlab version runs ...
-1
votes
2answers
10 views

java k-means term clustering using distance matrix

I'm working on the clustering of terms using k-means and NGD (Normalized Google Distance). I have a distance matrix as input of the k-means algorithm. Is it possible to run k-means on this situation? ...
0
votes
0answers
15 views

What distance metric for project source code makes sense?

I want to compare the changes of the source code of two project stages, e.g. the web application source code before it was scalable, and the scalable one. For me it is interesting to show how many ...
0
votes
1answer
44 views

Finding the distance of object from a logitech camera .

I want to find the distance of an object from camera . Note here I am using single camera . Camera autofocuses to focus on planes at particular distance from camera . Is there a way I can find this ...
0
votes
1answer
28 views

Fast way of doing k means clustering on binary vectors in c++

I want to cluster binary vectors (millions of them) into k clusters.I am using hamming distance for finding the nearest neighbors to initial clusters (which is very slow as well). I think K-means ...
2
votes
2answers
32 views

Find all lat/long pairs within a given distance from a lat/long pair

I have a database with millions of lat/long pairs. I would like to implement a function to gather all lat/long pairs within a specified distance from a given lat/long pair. Is there a better way to do ...
-2
votes
1answer
37 views

get the first variable that changes in c++ [closed]

i'm working on a project with Stasm, i've some points and i have the distences between each 2 points and when a faciale expression is changed i want to get the change in the distance between each ...
0
votes
0answers
32 views

How to calculate closest location with ElasticSearch _geo_distance with multiple locations

I successfully got ElasticSearch to return my results sorted on the distance from my given coordinates. Problem is that the distance that is being sorted on is the AVERAGE distance of the available ...
0
votes
0answers
33 views

Matlab: Chi-Square Distance gives zero values

I have one image ImgA of a person, and ten test images. Among these ten, one image is of the same person of ImgA. I calculated the local binary pattern (lbp) histogram of all these images. Then I want ...
-2
votes
0answers
8 views

measuring distance between the object and the sensor [closed]

I need to do a project where i have to calculate the distance between the object and the sensor. Is it better to use sensor or the camera with the light source? Can anyone please help me in getting ...
1
vote
2answers
47 views

Sort Table by distance (latitude and longitude)

I'm getting values by JSON like that: { id = 1; latitude = "-23.0002"; longitude = "-43.2438"; name = Vips; } { id = 2; latitude = "-22.9283"; ...
1
vote
2answers
50 views

cython running slower than numpy for distance calculation

I'm trying to learn cython; however, I must be doing something wrong. This little piece of test code is running about 50 times slower than my vectorized numpy version of it. Can someone please tell me ...
2
votes
1answer
32 views

How to check if one location coordinates fall to another location coordinates radius in android

I have latitude and longitude of a current location. I want to check if target location (latitude and longitude) is close with 50 meter radius to the current location. I am new to android.if anyone ...
0
votes
2answers
27 views

Distance Calculation Not Returning Results

Code from api.php: $lat = $_GET['lat']; $lng = $_GET['lon']; try {$dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);} catch(PDOException ...
0
votes
0answers
38 views

mutual information in kmeans clustering R package

Is there a package in R that we can use/specify Mutual Information in kmeans clustering? Or how can I use this metric in kmeans? Thank you in advance! ...
0
votes
0answers
17 views

Need large amount of road distances

I am working on a travel guide like project and need to connect destinations between each other. The database will contain thousands of locations and need to calculate road distances between them (or ...
1
vote
1answer
24 views

Comparing distances between geopoints fast

I have a (very long) list of points that I display in a map. I need to calculate the distance from each one to a user-inputted point, and sort the list from the nearest to the farthest. Right now I'm ...
-2
votes
0answers
13 views

Medical procedure similarities [closed]

I am trying to cluster the medical claim record by some similarity measurement system between them in a patient. These medical claim records have some attributes like diagnosis code (ICD-9), procedure ...
0
votes
1answer
21 views

Get the distance from the current location to the final destination by road like in Apple's Maps app

I want to set start location and final destination and get how long it actually is via the roads, like in the map app. I don't know what I'm supposed to search for or what it's called. I think Mapkit ...
-3
votes
3answers
55 views

Distance/absolute error between two numbers

What is the cleanest way to get the distance between a maximum and a minimum? Maximum is always bigger than the minimum (more to the right on a 1d axis, not by absolute value). Maximum and minimum ...
0
votes
0answers
40 views

mahalanobis cosine distance measure

Iam trying to apply mahalanobis cosine distance measure but I can't understand how to implement. it is required to calc the similarity between images under log_Gabor transformation. can any one help ...
-1
votes
1answer
31 views

Matlab pdist2 on GPU? [closed]

I'm using this matlab code for finding 3 nearest vectors. m=100000; n=1000; q= rand(1,n); x= rand(m,n); k=3; tic s = pdist2(x,q); [val id]=sort(s); id(1:k) val(1:k) toc Is pdist2 is best(fastest) ...
0
votes
0answers
72 views

OpenCV calculate distance (stereo vision)

For my project I am using parts of the next code: link. To track objects of a specific color I implemented this method: My question is: How can I calculate the distance to the tracked colored ...
0
votes
2answers
37 views

Defining a threshold for Distance between two GEO Locations?

I am getting two GEO locations in my application and I have to calculate distance between them and after distance calculation I have to compare that result with the a defined threshold which is in my ...
-3
votes
0answers
33 views

check whether there are two atoms that are too close to each other in PDB file (based on VW-rays(distance)) [closed]

So far I only find out how to count distances in PBD file, but I have to count if two atoms is not too close each other EDITED the code from the comments - via perltidy` #!/usr/bin/perl use strict; ...
1
vote
2answers
94 views

How to calculate distance or similarity between one item and an item set?

All the dist/similarity functions in packages i have known are designed to calculate the distance/similarity of "every pair of rows" in the matrix. If the input matrix is extremely large, the dist ...
4
votes
1answer
179 views

Calculate Distance between points in fusion tables

My programming knowledge is very limited and I'm working on a college project that includes programming. What I want to do is a map, that shows your current location and the locations of recycling ...
1
vote
3answers
41 views

Calculate km difference from two coordinates

i've to calculate the distance between (40.851774999999996,14.268123999999998) and each coordinates into results of an sql query: $results = $stmt->fetchAll(PDO::FETCH_ASSOC); foreach ...
-4
votes
0answers
23 views

Speed, direction, time and coordinates [closed]

I'm lost on how to convert all these different measures to just one. Starting coords N 52 16.442. W 113 47.988 From them the item was shot 20 degrees SW and flew at 200 kph. Total flying time was ...
0
votes
0answers
39 views

How to find k most similar fixed-sized time series for a given pattern?

All the distance or similarity calculation function i know in R are designed to deal with matrix, such as vegdist{vegan},dist {proxy},dist {stat}. if i have n items in a set, then it will generate a ...
1
vote
1answer
55 views

Using NumPy argsort and take in 2D arrays

The aim is to calculate the distance matrix between two sets of points (set1 and set2), use argsort() to obtain the sorted indexes and take() to extract the sorted array. I know I could do a sort() ...
1
vote
1answer
64 views

Measure distance walked with GeoPoint and displaying distance to user

In my app I am trying to make it possible to calculate the distance a person walks. To do this I have created a LocationHelper class that should get me the current GeoPoint every 30 seconds or 10 ...
0
votes
1answer
71 views

Sphero: How to make it move a given length

I want to make the sphero move a given amount of centimeters ahead but so far i have not managed to get anything to work properly This is the code i have now: EditText distanceText = (EditText) ...
-3
votes
0answers
50 views

CUDA Python implementation of hamming distance [closed]

I am able to calculate the hamming distance between two strings using python but wanted to know if anyone has tried implementing the same in any CUDA based python implementation e.g. using CUDAMat, ...
-1
votes
0answers
15 views

Best way to calculate distance of a set of lat longs

I have a set of lat longs from a gps device with speed, and various events of a vehicle. What will be best way to find the distance traveled if am getting consecutive lat longs. If the vehicle is ...
0
votes
0answers
131 views

get distance between two points ios [closed]

I need to get the distance between two points until, that distance will be less than 2 mts. So, to start, I have a var called positionToGo CLLocation *positionToGo; I set this var in the ...
0
votes
1answer
41 views

c++ trying to find the distance between 2 nodes

I am currently working on a function that has 1 helper function, the main function takes in 2 strings and searches for the first one (which becomes a reference as if it was m_root) and a second one to ...
-1
votes
0answers
57 views

Calculate distance between cities using PHP and MySQL

I have a calculate distance function that allow the user to select from a drop list. The first location then the second location that are retrieved from the database that each location have a ...
0
votes
1answer
28 views

Efficient getting a pair of coordinates with the shortest distance from array of coordinates using Javascript

I have a several x-y coordinates stored in an two arrays, one for source object, one for target : var sourcePoints = [ { x: 20, y: 11 }, { ... }, { x: 10 y: 6 } ]; var ...
0
votes
2answers
58 views

calculating distance did not give the right answer using php because the answers are not real

can anyone tell me if the formula of calculating distance using longitude and latitude is correct?? like the distance between 2 cities as the formula show is more than 135 km and this is not realll ...
0
votes
0answers
39 views

Distance finding using PTZ camera

How to find the distance between two points in a wall using PTZ camera? Any calibration technique needed to find the distance?
0
votes
0answers
20 views

Continue execution after CLLocationManager obtains the location

In my app I want to get the current user location and THEN continue executing the app. I check the newLocation.timestamp and if it's less than 0.02 sec I treat it as the most current location. Once ...

1 2 3 4 5 19