ArrayTransform

fun interface ArrayTransform

This interface represents a custom transformation of a FloatArray.

It can be helpful for visualization of the result of augmentations applied to the image during training.

Implementations of this interface can be provided to ImageConverter.floatArrayToBufferedImage to transform input FloatArray before constructing BufferedImage.

Functions

invoke
Link copied to clipboard
abstract fun invoke(input: FloatArray): FloatArray

Invoke some transform for an input.