tidy3d.plugins.autograd.functions.grey_opening#
- class grey_opening[source]#
- Bases: - Perform grey opening on an array. - Parameters:
- array (NDArray) β The input array to perform grey opening on. 
- size (Union[Union[int, Tuple[int, int]], None], optional) β The size of the structuring element. If None, structure must be provided. Default is None. 
- structure (Union[NDArray, None], optional) β The structuring element. If None, size must be provided. Default is None. 
- mode (_pad_modes, optional) β The padding mode to use. Default is βreflectβ. 
- maxval (float, optional) β Value to assume for infinite elements in the kernel. Default is 1e4. 
 
- Returns:
- The result of the grey opening operation. 
- Return type:
- NDArray 
 - Inherited Common Usage