Class Vector<InputT,​ValueT>

  • All Implemented Interfaces:
    Serializable

    public abstract class Vector<InputT,​ValueT>
    extends Object
    implements Serializable
    Value class for feature extraction result. Holds both the original input and the result of the feature extraction for the input.
    See Also:
    Serialized Form
    • Constructor Detail

      • Vector

        public Vector()
    • Method Detail

      • input

        public abstract InputT input()
        Input to the feature extraction.
      • value

        public abstract ValueT value()
        Result of the feature extraction.
      • create

        public static <InputT,​ValueT> Vector<InputT,​ValueT> create​(InputT input,
                                                                               ValueT value)
        Create a new feature extraction result.