open3d.utility.Vector4iVector#

class open3d.utility.Vector4iVector#

Convert int numpy array of shape (n, 4) to Open3D format.

__init__(*args, **kwargs)#

Overloaded function.

  1. __init__(self: open3d.cpu.pybind.utility.Vector4iVector) -> None

  2. __init__(self: open3d.cpu.pybind.utility.Vector4iVector, arg0: numpy.ndarray[numpy.int32]) -> None

  3. __init__(self: open3d.cpu.pybind.utility.Vector4iVector, arg0: open3d.cpu.pybind.utility.Vector4iVector) -> None

Copy constructor

  1. __init__(self: open3d.cpu.pybind.utility.Vector4iVector, arg0: Iterable) -> None

append(self: open3d.cpu.pybind.utility.Vector4iVector, x: numpy.ndarray[numpy.int32[4, 1]]) None#

Add an item to the end of the list

clear(self: open3d.cpu.pybind.utility.Vector4iVector) None#

Clear the contents

count(self: open3d.cpu.pybind.utility.Vector4iVector, x: numpy.ndarray[numpy.int32[4, 1]]) int#

Return the number of times x appears in the list

extend(*args, **kwargs)#

Overloaded function.

  1. extend(self: open3d.cpu.pybind.utility.Vector4iVector, L: open3d.cpu.pybind.utility.Vector4iVector) -> None

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

  1. extend(self: open3d.cpu.pybind.utility.Vector4iVector, L: Iterable) -> None

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

insert(self: open3d.cpu.pybind.utility.Vector4iVector, i: int, x: numpy.ndarray[numpy.int32[4, 1]]) None#

Insert an item at a given position.

pop(*args, **kwargs)#

Overloaded function.

  1. pop(self: open3d.cpu.pybind.utility.Vector4iVector) -> numpy.ndarray[numpy.int32[4, 1]]

Remove and return the last item

  1. pop(self: open3d.cpu.pybind.utility.Vector4iVector, i: int) -> numpy.ndarray[numpy.int32[4, 1]]

Remove and return the item at index i

remove(self: open3d.cpu.pybind.utility.Vector4iVector, x: numpy.ndarray[numpy.int32[4, 1]]) None#

Remove the first item from the list whose value is x. It is an error if there is no such item.