- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想对来自 openCV Blob 检测的 110 个关键点进行排序,从上到下,从左到右。但有时会出错。
bool sortRects(const Rect &a, const Rect &b)
{
return ( (a.x + a.y*10) < (b.x + b.y*10) );
}
vector<Rect> convertedKeyPoints;
for(int i = 0; i < detectedLedPositions.size(); i++)
{
Point2f point(detectedLedPositions[i].pt.x+1.f, detectedLedPositions[i].pt.y + 1.f);
Rect keyPointToRect(detectedLedPositions[i].pt, point);
convertedKeyPoints.push_back(keyPointToRect);
}
sort(convertedKeyPoints.begin(), convertedKeyPoints.end(), sortRects);
for(int i = 0; i < convertedKeyPoints.size(); i++)
{
QPointF currentPoint(QPoint(convertedKeyPoints[i].tl().x , convertedKeyPoints[i].tl().y));
ledPosition.push_back(currentPoint);
}
这是将 转换为 QPointF 后调试控制台的输出。
QPointF(133, 138)
QPointF(188, 134)
QPointF(240, 134)
QPointF(290, 135)
QPointF(347, 142)
QPointF(454, 137)
QPointF(398, 144)
QPointF(507, 136)
QPointF(27, 189)
QPointF(191, 191)
**QPointF(138, 199)**
QPointF(244, 191)
QPointF(293, 194)
QPointF(345, 189)
QPointF(400, 194)
QPointF(451, 190)
QPointF(505, 192)
那我做错了什么?
最佳答案
我认为您的排序操作假设 a.x<10,但在您的示例中并非如此。
尝试:
bool sortRects(const Rect &a, const Rect &b)
{
return a.y == b.y ? a.x < b.x : a.y < b.y;
}
这将首先在 Y 轴上排序(从上到下),在两者完全相等的情况下,将返回到在 X 轴上排序(从左到右)。
关于c++ - 使用较少的 STL 运算符对点进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29244129/
我正在使用Visual Studio 2012和Web Essential 2012,而Less生成的css与预期的不一样 //style.less .selector{ max-heig
我创建了一个基于LESS的小型混合器,用于以标准或视网膜格式输出图像。我无法理解将变量包装在与此相伴的一些CSS URL中-当我编译下面的代码时,我最终得到 url('http://sample.co
有人可以帮助我使用 CSS(less)吗,因为我似乎还不能理解它是如何工作的,我已经通过 node.js 安装了它,但现在如何将它链接到我的代码/网页? 由于某种原因,选择框没有输出到网页上,因为很可
我知道大多数算术运算只能使用按位运算符( Add two integers using only bitwise operators? 、 Multiplication of two integers
我需要在 less 中选择一个类的第 n 个子元素,而不是计算特定类的元素。例如,给定: 李 li class="skip_this" 李 李 李 我想让第 n 个 child 在计数时跳过 skip
当我单击一个按钮时,我进行了一个 ajax 调用,该调用将不同的 html 代码加载到一个 ID 为“main”的 div 中。我可以毫无问题地显示 html 代码,但我找不到将 css 和 js 代
我正在使用非常有限的 Shell 开发嵌入式 Linux。内置命令非常少。 我想检查 gpio 端口。这适用于以下内容。但它需要很多 CPU/IO - 电源!!所以我想像 sleep 一样得到短暂的休
我是一名优秀的程序员,十分优秀!