Class InputInfo


  • public class InputInfo
    extends Wrapper
    Class holding preprocessing information for one input

    From preprocessing pipeline perspective, each input can be represented as:

    • User's input parameter info (tensor())
    • Preprocessing steps applied to user's input (preprocess())
    • Model's input info, which is a final input's info after preprocessing (model())
      • Constructor Summary

        Constructors 
        Constructor Description
        InputInfo​(long addr)  
      • Constructor Detail

        • InputInfo

          public InputInfo​(long addr)
      • Method Detail

        • preprocess

          public PreProcessSteps preprocess()
          Get current input preprocess information with ability to add more preprocessing steps
          Returns:
          Reference to current preprocess steps structure
        • tensor

          public InputTensorInfo tensor()
          Get current input tensor information with ability to change specific data
          Returns:
          Reference to current input tensor structure
        • model

          public InputModelInfo model()
          Get current input model information with ability to change original model's input data
          Returns:
          Reference to current model's input information structure
        • delete

          protected void delete​(long nativeObj)
          Overrides:
          delete in class Wrapper