OpenSfM icon indicating copy to clipboard operation
OpenSfM copied to clipboard

Eigen::MappedSparseMatrix

Open ymei opened this issue 3 years ago • 0 comments

Eigen::MappedSparseMatrix is deprecated. It affects opensfm/src/third_party/pybind11. In eigen.h, the following modifications are needed:

-        value = Eigen::MappedSparseMatrix<Scalar, Type::Flags, StorageIndex>(
+        value = Eigen::Map<Eigen::SparseMatrix<Scalar, Type::Flags, StorageIndex> >(

ymei avatar Dec 22 '22 21:12 ymei