ImageFileType.java

  1. package neureka.devices.file;

  2. import neureka.Tensor;
  3. import neureka.dtype.NumericType;

  4. import java.util.Objects;

  5. interface ImageFileType extends FileType
  6. {
  7.     default int numberOfChannels() { return this.imageType().numberOfChannels; }

  8.     default NumericType<?,?,?,?> numericTypeRepresentation() {
  9.         return ( (NumericType<?,?,?,?>) Objects.requireNonNull( imageType().dataType.getTypeClassInstance(NumericType.class) ) );
  10.     }

  11.     default Class<?> targetedValueType() {
  12.         return this.numericTypeRepresentation().targetType();
  13.     }

  14.     Tensor.ImageType imageType();

  15.     String imageTypeName();
  16. }