Interface VideoObjectTrackingPredictionParamsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      float getConfidenceThreshold()
      The Model only returns predictions with at least this confidence score.
      int getMaxPredictions()
      The model only returns up to that many top, by confidence score, predictions per frame of the video.
      float getMinBoundingBoxSize()
      Only bounding boxes with shortest edge at least that long as a relative value of video frame size are returned.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getConfidenceThreshold

        float getConfidenceThreshold()
         The Model only returns predictions with at least this confidence score.
         Default value is 0.0
         
        float confidence_threshold = 1;
        Returns:
        The confidenceThreshold.
      • getMaxPredictions

        int getMaxPredictions()
         The model only returns up to that many top, by confidence score,
         predictions per frame of the video. If this number is very high, the
         Model may return fewer predictions per frame. Default value is 50.
         
        int32 max_predictions = 2;
        Returns:
        The maxPredictions.
      • getMinBoundingBoxSize

        float getMinBoundingBoxSize()
         Only bounding boxes with shortest edge at least that long as a relative
         value of video frame size are returned. Default value is 0.0.
         
        float min_bounding_box_size = 3;
        Returns:
        The minBoundingBoxSize.