VBench Motion Smoothness — AMT-S frame interpolation quality.
Takes every-other frame, uses AMT-S to interpolate the missing middle frames, then compares interpolated vs actual frames. Score = (255 - mean_pixel_diff) / 255. Higher = smoother motion.
Classes
fastvideo.eval.metrics.vbench.motion_smoothness.metric.MotionSmoothnessMetric
Bases: BaseMetric
Source code in fastvideo/eval/metrics/vbench/motion_smoothness/metric.py
| def __init__(self) -> None:
super().__init__()
self._model: Any = None
self._embt: Any = None
self._chunk_size = 8
|
Functions: