Class OffscreenSimpleConfig.Builder

  • Enclosing class:
    OffscreenSimpleConfig

    public static class OffscreenSimpleConfig.Builder
    extends java.lang.Object
    • Method Detail

      • 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.