简体   繁体   中英

Convert std::list to cv::Mat in C++ using OpenCV

I'm trying to solve an equation system using SVD: cv::SVD::solveZ(A, x); , but A needs to be a Matrix. OpenCV doesn't offer any convertion of a std::list to cv::Mat . So my question is, whether there is a smart way to convert it without having to convert the std::list to a std::vector before.

The Matrix A is a 3xN matrix. My list contains N cv::Point3d elements.

My code looks something like this:

std::list<cv::Point3d> points; // length: N
cv::Mat A = cv::Mat(points).reshape(1); // that's how I do it with a std::vector<cv::Point3d>
cv::Mat x;
cv::SVD::solveZ(A, x); // homogeneous linear equation system Ax = 0

If anybody has an idea about it, then please tell me.

cv::Mat can handle only continously stored data, so there are no suitable conversion from std::list . But you can implement it by yourself, as follows:

std::list<cv::Point3d> points;
cv::Mat matPoints(points.size(), 1, CV_64FC3);
int i = 0;
for (auto &p : points) {
    matPoints.at<cv::Vec3d>(i++) = p;
}
matPoints = matPoints.reshape(1);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM