cupyx.scipy.ndimage.binary_propagation#

cupyx.scipy.ndimage.binary_propagation(input, structure=None, mask=None, output=None, border_value=0, origin=0)[source]#

Multidimensional binary propagation with the given structuring element.

Parameters:
  • input (cupy.ndarray) – Binary image to be propagated inside mask.

  • structure (cupy.ndarray, optional) – Structuring element used in the successive dilations. The output may depend on the structuring element, especially if mask has several connex components. If no structuring element is provided, an element is generated with a squared connectivity equal to one.

  • mask (cupy.ndarray, optional) – Binary mask defining the region into which input is allowed to propagate.

  • output (cupy.ndarray, optional) – Array of the same shape as input, into which the output is placed. By default, a new array is created.

  • border_value (int, optional) – Value at the border in the output array. The value is cast to 0 or 1.

  • origin (int or tuple of ints, optional) – Placement of the filter.

Returns:

Binary propagation of input inside mask.

Return type:

cupy.ndarray

Warning

This function may synchronize the device.