#include <memory>
#include <string>
#include <Eigen/Dense>
#include <glog/logging.h>
#include <opencv2/core/core.hpp>
#include <opencv2/core/eigen.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
Go to the source code of this file.
|
| template<typename T > |
| void | bsfm::OpenCVToEigenMat (const cv::Mat &cv_mat, Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &eigen_mat) |
| |
| template<typename T > |
| void | bsfm::EigenMatToOpenCV (const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &eigen_mat, cv::Mat &cv_mat) |
| |