From 0ae1492e43d2ca9df9dbb4a6a116ab5a2fcc9c5c Mon Sep 17 00:00:00 2001 From: Alice Knag Date: Sat, 18 Nov 2023 03:13:02 -0700 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 6a04b92..fc9ff89 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,11 @@ Plugin akarin ============= +Various tools for video processing via vapoursynth. Each function is designed for specific video manipulation or analysis tasks. CAMBI ----- +CAMBI (Contrast Aware Multiscale Banding Index) is Netflix's detector for banding (aka contouring) artifacts. For an introduction to CAMBI, please refer to the [tech blog](https://netflixtechblog.com/cambi-a-banding-artifact-detector-96777ae12fe2). + `akarin.Cambi(clip clip[, int window_size = 63, float topk = 0.6, float tvi_threshold = 0.019, bint scores = False, float scaling = 1.0/window_size])` Computes the CAMBI banding score as `CAMBI` frame property. Unlike [VapourSynth-VMAF](https://github.com/HomeOfVapourSynthEvolution/VapourSynth-VMAF), this filter is online (no need to batch process the whole video) and provides raw cambi scores (when `scores == True`).