男孩,我需要一些帮助!
我需要遍历检测到的关键点来访问每个关键点的 x、y 和 size 字段。我使用的代码几乎都是从教程中复制的。
这是我遇到问题的代码部分。
// Draw detected blobs as red circles.
Mat im_with_keypoints;
drawKeypoints( im, keypoints, im_with_keypoints, Scalar(0,0,255), DrawMatchesFlags::DRAW_RICH_KEYPOINTS );
// Show blobs
imshow("keypoints", im_with_keypoints );
vector<KeyPoint>::const_iterator it = keypoints.begin(), end = keypoints.end();
cout << "num keypts: " << keypoints.size() << "\n";
for( ; it != end; ++it ) {
cout << " kpt x " << it->pt.x << ", y " << it->pt.y << ", size " << it->size << "\n";
}
waitKey(0);
和我得到的输出。
num keypts: 12
kpt x -1.#IND, y -1.#IND, size 2.20732
kpt x 1232.18, y 573.16, size 2.01719
kpt x 1469.27, y 569.461, size 2.77548
kpt x 1706.66, y 566.156, size 3.7563
kpt x 1946.15, y 561.098, size 3.2482
kpt x 2189.41, y 557.673, size 3.83277
kpt x 31.4306, y 372.063, size 3.01084
kpt x 982.995, y 359.899, size 3.33982
kpt x 1218.8, y 355.892, size 3.8553
kpt x 1699.99, y 348.004, size 3.38391
kpt x 1935.74, y 122.263, size 2.75298
kpt x 2181.73, y 117.866, size 4.08995
我得到12个关键点。imshow 看起来正确并显示了 12 个关键点。但是,查看第一个关键点的 cout,x 和 y 值是软 NAN。第一个尺寸是正确的。接下来的 11 个 x、y 和 size 值都是正确的。
为什么第一个关键点 x 和 y 值是 NAN?我可能错误地访问了它们,但我尝试过的一切都给出了相同的结果。
谢谢你的帮助。巴里。