Junkai-Liu
Junkai-Liu
how can i fix that ? @RainerKuemmerle
@FishHe Hey,this method only can solve part of problem, But there still many errors C2280.By the way ,How to fix move constructor problem.For example, D3D11Canvas2D(D3D11Canvas2D&& other) { m_graphics = nullptr;...
@Pengxiang-Li Hi, have u solved this problem?
@LoSealL when i use unique_ptr to modify pointer construction,the compile processing is fine .But when i run the binary file on the dataset of g2o fromat file .output error is...
@LinHuican 老哥 找到解决方案了吗?
@LinHuican 我现在改用新版本的g2o 改了一下程序在运行生成的bin的时候就会报memory corruption这个错,你知道怎么解决吗?
@LoSealL 对阿 是执行文件运行g2o文件时报错 代码就是把指针改成unique_ptr的模板指针 Block::LinearSolverType* linearSolver = new g2o::LinearSolverCholmod(); Block* solver_ptr = new Block( unique_ptr(linearSolver)); g2o::OptimizationAlgorithmLevenberg* solver = new g2o::OptimizationAlgorithmLevenberg( unique_ptr(solver_ptr) ); 因为有需要现在版本的g2o 所以想知道怎么改
@LoSealL 好的 老哥 谢谢 我改改看