簡體   English   中英

斷言使用OpenCV失敗的錯誤

[英]Assertion failed error using opencv

我正在嘗試在apriltags庫中運行示例,並且不斷收到此錯誤:

OpenCV Error: Assertion failed (mtype == type0 || (CV_MAT_CN(mtype) == 1 && ((1 << type0) & fixedDepthMask) != 0)) in create, file /Users/Vijin/PersInq/opencv-3.2.0/modules/core/src/matrix.cpp, line 2559

我將其范圍縮小到一個函數調用

detection.getRelativeTranslationRotation(m_tagSize, m_fx, m_fy, m_px, m_py,
                                         translation, rotation);

我不是opencv的專家,所以我希望對此有所幫助。 一旦檢測到標記,就會引發異常。 否則,它將運行正常。 這是整個功能:

void print_detection(AprilTags::TagDetection& detection) const {

cout << "  Id: " << detection.id
     << " (Hamming: " << detection.hammingDistance << ")";

// recovering the relative pose of a tag:

// NOTE: for this to be accurate, it is necessary to use the
// actual camera parameters here as well as the actual tag size
// (m_fx, m_fy, m_px, m_py, m_tagSize)

Eigen::Vector3d translation;
Eigen::Matrix3d rotation;
try{
detection.getRelativeTranslationRotation(m_tagSize, m_fx, m_fy, m_px, m_py,
                                         translation, rotation);
}
catch (const std::exception& e) 
{
  cout<<"print_detection failing";
}
Eigen::Matrix3d F;
F <<
  1, 0,  0,
  0,  -1,  0,
  0,  0,  1;
Eigen::Matrix3d fixed_rot = F*rotation;
double yaw, pitch, roll;
wRo_to_euler(fixed_rot, yaw, pitch, roll);

cout << "  distance=" << translation.norm()
     << "m, x=" << translation(0)
     << ", y=" << translation(1)
     << ", z=" << translation(2)
     << ", yaw=" << yaw
     << ", pitch=" << pitch
     << ", roll=" << roll
     << endl;

// Also note that for SLAM/multi-view application it is better to
// use reprojection error of corner points, because the noise in
// this relative pose is very non-Gaussian; see iSAM source code
// for suitable factors.

}

較新版本的OpenCV仍然存在此問題。 可以通過將src/TagDetection.cc 第95行cv::Matx33f cameraMatrix(更改為cv::Matx33d cameraMatrix(

注意,這只是從float轉換為double 或者,您可以使用此庫( https://github.com/PrieureDeSion/apriltags-cpp ),我已對它進行了更改並在Ubuntu 16和OpenCV中進行了測試。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM