Interface ImageOp<T>

Type Parameters:
T - the image type.
All Known Implementing Classes:
FlipOp, GrayscaleOp, ResizeOp, RotateOp, SobelOp
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ImageOp<T>
Represents a functional operation on an image.
Since:
2.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Method Summary

    Modifier and Type
    Method
    Description
    process(T input)
    Applies the operation to the input image.
  • Method Details

    • process

      T process(T input)
      Applies the operation to the input image.
      Parameters:
      input - the input image.
      Returns:
      the processed image.