open3d.registration.PoseGraphEdgeVector¶
-
class
open3d.registration.PoseGraphEdgeVector¶ Vector of PoseGraphEdge
-
__init__(*args, **kwargs)¶ Overloaded function.
__init__(self: open3d.registration.PoseGraphEdgeVector) -> None
__init__(self: open3d.registration.PoseGraphEdgeVector, arg0: open3d.registration.PoseGraphEdgeVector) -> None
Copy constructor
__init__(self: open3d.registration.PoseGraphEdgeVector, arg0: iterable) -> None
-
append(self: open3d.registration.PoseGraphEdgeVector, x: open3d.registration.PoseGraphEdge) → None¶ Add an item to the end of the list
-
extend(*args, **kwargs)¶ Overloaded function.
extend(self: open3d.registration.PoseGraphEdgeVector, L: open3d.registration.PoseGraphEdgeVector) -> None
Extend the list by appending all the items in the given list
extend(self: open3d.registration.PoseGraphEdgeVector, L: iterable) -> None
Extend the list by appending all the items in the given list
-
insert(self: open3d.registration.PoseGraphEdgeVector, i: int, x: open3d.registration.PoseGraphEdge) → None¶ Insert an item at a given position.
-
pop(*args, **kwargs)¶ Overloaded function.
pop(self: open3d.registration.PoseGraphEdgeVector) -> open3d.registration.PoseGraphEdge
Remove and return the last item
pop(self: open3d.registration.PoseGraphEdgeVector, i: int) -> open3d.registration.PoseGraphEdge
Remove and return the item at index
i
-