1
vote
2answers
354 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 ...
3
votes
3answers
1k views

Euclidean distance returning strange results

im writing a program to compare two images against each other based on color and im using the Euclidean distance algorithm however when i run it and pass in two images i get one distance and then when ...
0
votes
1answer
1k views

euclidean algorithm for image comparison

i am going to develop an application for image comparison on java. For this i have choosen euclidean algorithm. This application involves with 2 images. 1. Actual image 2. Part of the actual image. ...