Class OffscreenEffectPlayerConfig.Builder

    • Constructor Detail

      • Builder

        public Builder​(int width,
                       int height,
                       @Nullable
                       BufferAllocator allocator)
    • Method Detail

      • setRealtimeProcessorMode

        @NonNull
        public OffscreenEffectPlayerConfig.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:
        OffscreenEffectPlayerConfig.Builder instance.
      • setUseFutureFrameFilter

        @NonNull
        public OffscreenEffectPlayerConfig.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:
        OffscreenEffectPlayerConfig.Builder instance.