You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if pose_id == 0:
v_se2.set_fixed(True)
# print(f"Keyframe {vertex_id} set as fixed.")
else:
v_se2.set_fixed(False)
I changed the above code to
v_se2.set_fixed(False)
I'm not sure why the program doesn't report errors this way, I haven't started looking at the results yet, but shouldn't the first few keyframes be fixed?
ubuntu:20.04
python:3.8
Mine is currently running
super().optimize(max_iterations)
The error is as follows
139 (interrupted by signal 11:SIGSEGV)
I would like to be able to implement global optimization under image stitching with g2o code
My related code is as follows
class BundleAdjustment(g2o.SparseOptimizer):
def init(self, ):
super().init()
solver = g2o.BlockSolverSE2(g2o.LinearSolverCholmodSE2())
solver = g2o.OptimizationAlgorithmLevenberg(solver)
super().set_algorithm(solver)
super().set_verbose(True) # 打印信息
class MapMerge():
def init(self):
self.ba = BundleAdjustment()
I reinstalled g2opy with reference 1 and , but it still reports the same error
Any suggestions?
The text was updated successfully, but these errors were encountered: