open3d.ml.tf.layers.RadiusSearch

class open3d.ml.tf.layers.RadiusSearch(*args, **kwargs)

Radius search for 3D point clouds.

This layer computes the neighbors for each query point with each query having an individual radius.

Example

This example shows a neighbor search that returns the indices to the found neighbors and the distances.:

import tensorflow as tf
import open3d.ml.tf as ml3d

points = tf.random.normal([20,3])
queries = tf.random.normal([10,3])
radii = tf.random.normal([10], mean=1.0)

nsearch = ml3d.layers.RadiusSearch(return_distances=True)
ans = nsearch(points, queries, radii)
# returns a tuple of neighbors_index, neighbors_row_splits, and neighbors_distance
Parameters
  • metric – Either L1, L2 or Linf. Default is L2.

  • ignore_query_point – If True the points that coincide with the center of the search window will be ignored. This excludes the query point if ‘queries’ and ‘points’ are the same point cloud.

  • return_distances – If True the distances for each neighbor will be returned. If False a zero length Tensor will be returned instead.

  • normalize_distances – If True the returned distances will be normalized with the radii.

__init__(metric='L2', ignore_query_point=False, return_distances=False, normalize_distances=False, **kwargs)
build(inp_shape)

Creates the variables of the layer (optional, for subclass implementers).

This is a method that implementers of subclasses of Layer or Model can override if they need a state-creation step in-between layer instantiation and layer call.

This is typically used to create the weights of Layer subclasses.

Parameters

input_shape – Instance of TensorShape, or list of instances of TensorShape if the layer expects a list of inputs (one instance per input).

call(points, queries, radii, points_row_splits=None, queries_row_splits=None)

This function computes the neighbors within a radius for each query point.

Parameters
  • points – The 3D positions of the input points. This argument must be given as a positional argument!

  • queries – The 3D positions of the query points.

  • radii – A radius for each query point.

  • points_row_splits – Optional 1D vector with the row splits information if points is batched. This vector is [0, num_points] if there is only 1 batch item.

  • queries_row_splits – Optional 1D vector with the row splits information if queries is batched. This vector is [0, num_queries] if there is only 1 batch item.

Returns

3 Tensors in the following order

neighbors_index

The compact list of indices of the neighbors. The corresponding query point can be inferred from the ‘neighbor_count_row_splits’ vector.

neighbors_row_splits

The exclusive prefix sum of the neighbor count for the query points including the total neighbor count as the last element. The size of this array is the number of queries + 1.

neighbors_distance

Stores the distance to each neighbor if ‘return_distances’ is True. Note that the distances are squared if metric is L2. This is a zero length Tensor if ‘return_distances’ is False.