How can I find the max distance in multiple points
How can I find the max distance in multiple points? The result should be including the two points and the distance. Is there a function to do this in opencv OR I have to implement one by my own?
can you try to improve your question ? the result of what ?
it's very unclear, what you're talking about.
I am guessing you are having a set of points. From those set, take one point, calculate the Euclidean distance to every other point and do this for every point out there. Then take the max value of those distances and find the two points leading to that. Not that difficult right? But it indeed will need some programming of yourself!