open3d.ml.torch.ops.continuous_conv_transpose#

open3d.ml.torch.ops.continuous_conv_transpose(filters, out_positions, out_importance, extents, offset, inp_positions, inp_features, inp_neighbors_index, inp_neighbors_importance_sum, inp_neighbors_row_splits, neighbors_index, neighbors_importance, neighbors_row_splits, align_corners=False, coordinate_mapping='ball_to_cube_radial', normalize=False, interpolation='linear', max_temp_mem_MB=64)#

Continuous tranpose convolution of two pointclouds.

align_corners:

If True the outer voxel centers of the filter grid are aligned with the boundary of the spatial shape.

coordinate_mapping:

Defines how the relative positions of the neighbors are mapped before computing filter indices. For all mappings relative coordinates will be scaled with the inverse extent, i.e. the extent becomes a unit cube. After that one of the following mappings will be applied:

‘ball_to_cube_radial’: maps a unit ball to a unit cube by radial stretching. ‘ball_to_cube_volume_preserving’: maps a unit ball to a unit cube preserving the volume. ‘identity’: the identity mapping.

Use ‘ball_to_cube_radial’ for a spherical or ellipsoidal filter window and ‘identity’ for a rectangular filter window.

normalize:

If True the input feature values will be normalized using ‘inp_neighbors_importance_sum’.

interpolation:

If interpolation is ‘linear’ then each filter value lookup is a trilinear interpolation. If interpolation is ‘nearest_neighbor’ only the spatially closest value is considered. This makes the filter and therefore the convolution discontinuous.

max_temp_mem_MB:

Defines the maximum temporary memory in megabytes to be used for the GPU implementation. More memory means fewer kernel invocations. Note that the a minimum amount of temp memory will always be allocated even if this variable is set to 0.

filters:

The filter parameters. The shape of the filter is [depth, height, width, in_ch, out_ch]. The dimensions ‘depth’, ‘height’, ‘width’ define the spatial resolution of the filter. The spatial size of the filter is defined by the parameter ‘extents’.

out_positions:

A 2D tensor with the 3D point positions of each output point. The coordinates for each point is a vector with format [x,y,z].

out_positions:

A 1D tensor with the 3D point positions of each output point. The coordinates for each point is a vector with format [x,y,z].

out_importance:

An optional scalar importance for each output point. The output features of each point will be multiplied with the corresponding value. The shape is [num input points]. Use a zero length Tensor to disable.

extents:

The extent defines the spatial size of the filter for each input point. It is a 2D vector of the form [[x_size, y_size, z_size], ..]. For ‘ball to cube’ coordinate mappings the extent defines the bounding box of the ball. Broadcasting is supported for all axes. E.g. providing only the extent for a single point as well as only providing ‘x_size’ is valid.

offset:

A 1D tensor which defines the offset in voxel units to shift the input points. Offsets will be ignored if align_corners is True.

inp_positions:

A 2D tensor with the 3D point positions of each input point. The coordinates for each point is a vector with format [x,y,z].

inp_features:

A 2D tensor which stores a feature vector for each input point.

inp_neighbors_index:

The inp_neighbors_index stores a list of indices of neighbors for each input point as nested lists. The start and end of each list can be computed using ‘inp_neighbors_row_splits’.

inp_neighbors_importance_sum:

1D tensor of the same length as ‘inp_positions’ or zero length if neighbors_importance is empty. This is the sum of the values in ‘neighbors_importance’ for each input point.

inp_neighbors_row_splits:

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

neighbors_index:

The neighbors_index stores a list of indices of neighbors for each output point as nested lists. The start and end of each list can be computed using ‘neighbors_row_splits’.

neighbors_importance:

Tensor of the same shape as ‘neighbors_index’ with a scalar value that is used to scale the features of each neighbor.

neighbors_row_splits:

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

output_type: The type for the output.

out_features:

A Tensor with the output feature vectors for each output point.