crop2d#

class Crop2d(cropping: ndarray | List | Tuple = ((0, 0), (0, 0)))[source]#

Crop input image by

Crop input to the the rectangle dimensions

Parameters:

cropping – ((top, bottom), (left, right))

forward(binary_input)[source]#

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

get_output_shape(input_shape: Tuple) Tuple[source]#

Retuns the output dimensions

Parameters:

input_shape – (channels, height, width)

Returns:

(channels, height, width)