open3d.utility.Matrix3dVector#
- class open3d.utility.Matrix3dVector#
Convert float64 numpy array of shape
(n, 3, 3)
to Open3D format.- __init__(*args, **kwargs)#
Overloaded function.
__init__(self: open3d.cpu.pybind.utility.Matrix3dVector) -> None
__init__(self: open3d.cpu.pybind.utility.Matrix3dVector, arg0: open3d.cpu.pybind.utility.Matrix3dVector) -> None
Copy constructor
__init__(self: open3d.cpu.pybind.utility.Matrix3dVector, arg0: Iterable) -> None
- append(self: open3d.cpu.pybind.utility.Matrix3dVector, x: numpy.ndarray[numpy.float64[3, 3]]) None #
Add an item to the end of the list
- clear(self: open3d.cpu.pybind.utility.Matrix3dVector) None #
Clear the contents
- count(self: open3d.cpu.pybind.utility.Matrix3dVector, x: numpy.ndarray[numpy.float64[3, 3]]) int #
Return the number of times
x
appears in the list
- extend(*args, **kwargs)#
Overloaded function.
extend(self: open3d.cpu.pybind.utility.Matrix3dVector, L: open3d.cpu.pybind.utility.Matrix3dVector) -> None
Extend the list by appending all the items in the given list
extend(self: open3d.cpu.pybind.utility.Matrix3dVector, L: Iterable) -> None
Extend the list by appending all the items in the given list
- insert(self: open3d.cpu.pybind.utility.Matrix3dVector, i: int, x: numpy.ndarray[numpy.float64[3, 3]]) None #
Insert an item at a given position.
- pop(*args, **kwargs)#
Overloaded function.
pop(self: open3d.cpu.pybind.utility.Matrix3dVector) -> numpy.ndarray[numpy.float64[3, 3]]
Remove and return the last item
pop(self: open3d.cpu.pybind.utility.Matrix3dVector, i: int) -> numpy.ndarray[numpy.float64[3, 3]]
Remove and return the item at index
i
- remove(self: open3d.cpu.pybind.utility.Matrix3dVector, x: numpy.ndarray[numpy.float64[3, 3]]) None #
Remove the first item from the list whose value is x. It is an error if there is no such item.