Enum ndarray_ndimage::PadMode [−][src]
pub enum PadMode {
Reflect,
Symmetric,
Wrap,
}Expand description
Method that will be used to select the padded values.
Variants
Pads with the reflection of the vector mirrored on the first and last values of the vector along each axis.
Pads with the reflection of the vector mirrored along the edge of the array.
Pads with the wrap of the vector along the axis. The first values are used to pad the end and the end values are used to pad the beginning.