私は、次のコードを実行している問題を抱えている:Aruco機能estimatePoseSingleMarkers()エラー
Mat cameraMatrix, distCoeffs;
cameraMatrix = (Mat1f(3, 3) << 462.71, 0, 338.630, 0, 465.97, 177.780, 0, 0, 1);
distCoeffs = (Mat1f(4, 1) << 0.133013, -0.322199, -0.001524, 0.004866);
//skip
Mat color(Size(color_information.width, color_information.height), CV_8UC3, (void*)color_data.planes[0], color_data.pitches[0]/sizeof(uchar));
Mat imageCopy;
double tick = (double)getTickCount();
vector<int>ids;
vector<vector<Point2f>>corners, rejected;
vector<Mat>rvecs, tvecs;
aruco::detectMarkers(color, dictionary, corners, ids, detectorParams, rejected);
double currentTime = ((double)getTickCount() - tick)/getTickFrequency();
// draw results
color.copyTo(imageCopy);
if (ids.size() > 0)
{
aruco::drawDetectedMarkers(imageCopy, corners, ids);
vector<Mat>rvecs, tvecs;
estimatePoseSingleMarkers(corners, 20, cameraMatrix, distCoeffs, rvecs, tvecs);
for (int i = 0; i<ids.size(); i++)
drawAxis(imageCopy, cameraMatrix, distCoeffs, rvecs[i], tvecs[i],0.1);
}
プログラムはestimatePoseSingleMarkers(corners, 20, cameraMatrix, distCoeffs, rvecs, tvecs);
に実行したときに問題がある、私は、エラーメッセージがこれを気に入ってしまった: OpenCV Error: Assertion failed (0 <= i && i < (int)v.size()) in cv::_InputArray::getMat_, file C:\opencv-3.0\source\opencv\modules\core\src\matrix.cpp, line 1253
これは間違った変数形式によって引き起こされますか? (cameraMartix & distCoeffs)
私は何がうまくいかないのか理解するために助けが必要です。ありがとうございました。