我有一个3点A,B和CI的向量想要根据这些点之间的距离来命令这个向量,比如最大距离在B和C之间,而不是C和A以及最后A和B:
我该怎么办?
std::sort(vectorName.begin(), vectorName.end(),
[](const cv::Point2f &a, const cv::Point2f &b)
{
cv::Point2f diff = a-b;
return cv::sqrt(diff.x*diff.x + diff.y*diff.y); // I know it doesn't make a sense but how can I do this
});
答案 0 :(得分:2)
如果问题被重新定义:获取排序向量中各点之间的所有曼哈顿距离:
#include <algorithm>
#include <vector>
#include <iostream>
struct Point { int x; int y; };
struct ManhattanDistance {
std::size_t a;
std::size_t b;
int value;
ManhattanDistance(std::size_t index_a, const Point& a, std::size_t index_b, const Point& b)
: a(index_a), b(index_b), value(abs(b.x - a.x) + abs(b.y - a.y))
{}
operator int () const { return value; }
};
inline std::ostream& operator << (std::ostream& stream, const ManhattanDistance& x) {
return stream << x.a << " - " << x.b << ": " << x.value;
}
int main()
{
typedef std::pair<std::size_t, std::size_t> Pair;
std::vector<Point> points = { {0,0}, {2,2}, {3,3}, {4,4}, {5,5} };
std::vector<ManhattanDistance> distances;
distances.reserve(points.size() * (points.size() - 1) / 2);
for(std::size_t a = 0; a < points.size() - 1; ++a) {
for(std::size_t b = a + 1; b < points.size(); ++b) {
distances.push_back(ManhattanDistance(a, points[a], b, points[b]));
std::cout << "Add: " << distances.back() << std::endl;
}
}
std::sort(distances.begin(), distances.end(), std::greater<ManhattanDistance>());
for(const auto& d: distances) std::cout << "Sorted: " << d << '\n';
std::cout << std::endl;
return 0;
}