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