Class ProcessorConfiguration.CppProxy

    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void _djinni_private_destroy()  
      static ProcessorConfiguration create()
      Create with default params
      protected void finalize()  
      void setUseFutureFilter​(boolean value)
      Use future frame to filter prediction, improves anti-jitter, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ...
      void setUseFutureInterpolate​(boolean value)
      Use future frame to interpolate prediction, improves performance, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ...
      void setUseOfflineMode​(boolean value)
      Use offline NN's for processing, improces accuracy in exchange to performance Cannot be used together with other configurations Default: false
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • _djinni_private_destroy

        public void _djinni_private_destroy()
      • finalize

        protected void finalize()
                         throws java.lang.Throwable
        Overrides:
        finalize in class java.lang.Object
        Throws:
        java.lang.Throwable
      • setUseFutureFilter

        public void setUseFutureFilter​(boolean value)
        Description copied from interface: ProcessorConfiguration
        Use future frame to filter prediction, improves anti-jitter, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ... Cannot be used together with other configurations Default: true
        Specified by:
        setUseFutureFilter in interface ProcessorConfiguration
      • setUseFutureInterpolate

        public void setUseFutureInterpolate​(boolean value)
        Description copied from interface: ProcessorConfiguration
        Use future frame to interpolate prediction, improves performance, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ... Cannot be used together with other configurations Default: false
        Specified by:
        setUseFutureInterpolate in interface ProcessorConfiguration
      • setUseOfflineMode

        public void setUseOfflineMode​(boolean value)
        Description copied from interface: ProcessorConfiguration
        Use offline NN's for processing, improces accuracy in exchange to performance Cannot be used together with other configurations Default: false
        Specified by:
        setUseOfflineMode in interface ProcessorConfiguration