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
It was also necessary to change this: edge_confidence = edge_confidence[..., 1:]
to this: edge_confidence = edge_confidence[..., lines>=0].
I believe the former assumes the first confidence map corresponds to the parent of all parents. In cycles no such parent exists, so all the confidence maps should be shown. I'm sure you will have more elegant solutions to this problem. Please let me know if you have some ideas. Thanks!
The text was updated successfully, but these errors were encountered:
When the pose graph is cyclic (e.g. A->B->C->A), the while loop in
graph_to_edges
is infinite. I solved this in my fork by detecting cycles and giving them all their own edge group label.It was also necessary to change this:
edge_confidence = edge_confidence[..., 1:]
to this:
edge_confidence = edge_confidence[..., lines>=0]
.I believe the former assumes the first confidence map corresponds to the parent of all parents. In cycles no such parent exists, so all the confidence maps should be shown. I'm sure you will have more elegant solutions to this problem. Please let me know if you have some ideas. Thanks!
The text was updated successfully, but these errors were encountered: