open3d.registration.PoseGraphEdgeVector

class open3d.registration.PoseGraphEdgeVector

Vector of PoseGraphEdge

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: open3d.pybind.registration.PoseGraphEdgeVector) -> None

  2. __init__(self: open3d.pybind.registration.PoseGraphEdgeVector, arg0: open3d.pybind.registration.PoseGraphEdgeVector) -> None

Copy constructor

  1. __init__(self: open3d.pybind.registration.PoseGraphEdgeVector, arg0: iterable) -> None

append(self: open3d.pybind.registration.PoseGraphEdgeVector, x: open3d.pybind.registration.PoseGraphEdge) → None

Add an item to the end of the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: open3d.pybind.registration.PoseGraphEdgeVector, L: open3d.pybind.registration.PoseGraphEdgeVector) -> None

Extend the list by appending all the items in the given list

  1. extend(self: open3d.pybind.registration.PoseGraphEdgeVector, L: iterable) -> None

Extend the list by appending all the items in the given list

insert(self: open3d.pybind.registration.PoseGraphEdgeVector, i: int, x: open3d.pybind.registration.PoseGraphEdge) → None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: open3d.pybind.registration.PoseGraphEdgeVector) -> open3d.pybind.registration.PoseGraphEdge

Remove and return the last item

  1. pop(self: open3d.pybind.registration.PoseGraphEdgeVector, i: int) -> open3d.pybind.registration.PoseGraphEdge

Remove and return the item at index i