Class OffscreenSimpleConfig.Builder

java.lang.Object
com.banuba.sdk.offscreen.OffscreenSimpleConfig.Builder
Enclosing class:
OffscreenSimpleConfig

public static class OffscreenSimpleConfig.Builder extends Object
  • Method Details

    • setDebugSaveFrames

      @NonNull public OffscreenSimpleConfig.Builder setDebugSaveFrames(boolean debugSaveFrames)
      Set debug save frames flag.
      Parameters:
      debugSaveFrames - debug save frames flag value.
      Returns:
      OffscreenSimpleConfig.Builder instance.
    • setDebugSaveFramesDivider

      @NonNull public OffscreenSimpleConfig.Builder setDebugSaveFramesDivider(int debugSaveFramesDivider)
      Set debug save frames divider.
      Parameters:
      debugSaveFramesDivider - debug save frames divider value.
      Returns:
      OffscreenSimpleConfig.Builder instance.
    • setRealtimeProcessorMode

      @NonNull public OffscreenSimpleConfig.Builder setRealtimeProcessorMode(com.banuba.sdk.effect_player.RealtimeProcessorMode mode)
      Sets RealtimeProcessor mode. See the definition of RealtimeProcessorMode for details. By default configured to RealtimeProcessorMode.SYNC_WHEN_EFFECT_LOADED. In this mode, the effect player does not wait for new results from the recognizer and renders the data collected for the previously processed frame. This improves the performance and reduces CPU usage.
      Parameters:
      mode - the desired realtime processor mode for the Effect Player.
      Returns:
      OffscreenSimpleConfig.Builder instance.
    • setUseFutureFrameFilter

      @NonNull public OffscreenSimpleConfig.Builder setUseFutureFrameFilter(boolean use)
      Enables the filter of future frames. By default filter is disabled, If enabled, the OEP returns the previous frame for the rendering as an output, but overall reduces the jittering of the face mask via correction of data of the previous frame based on results collected for the current frame.
      Parameters:
      use - if true the future frame filter will be enabled for the Effect Player.
      Returns:
      OffscreenSimpleConfig.Builder instance.
    • build

      @NonNull public OffscreenSimpleConfig build()
      Build the OffscreenSimpleConfig object.
      Returns:
      OffscreenSimpleConfig object.