Package com.banuba.sdk.effect_player
Interface FrameDurationListener
public interface FrameDurationListener
Callback interface to receive FPS timings.
-
Method Summary
Modifier and Type Method Description void
onCameraFrameDurationChanged(float instant, float averaged)
FPS information about camera images push.void
onRecognizerFrameDurationChanged(float instant, float averaged)
FPS information about recognition engine.void
onRenderFrameDurationChanged(float instant, float averaged)
FPS of Effect Player drawing.
-
Method Details
-
onRecognizerFrameDurationChanged
void onRecognizerFrameDurationChanged(float instant, float averaged)FPS information about recognition engine. -
onCameraFrameDurationChanged
void onCameraFrameDurationChanged(float instant, float averaged)FPS information about camera images push.- See Also:
EffectPlayer.pushFrame
-
onRenderFrameDurationChanged
void onRenderFrameDurationChanged(float instant, float averaged)FPS of Effect Player drawing.
-