[FFmpeg-cvslog] avfilter/vf_lenscorrection: add bilinear interpolation

Paul B Mahol git at videolan.org
Mon Jan 25 01:49:58 EET 2021


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Jan 24 23:43:11 2021 +0100| [e41a92910ad3b2efcb56e1c27f644f99d8ce2a4f] | committer: Paul B Mahol

avfilter/vf_lenscorrection: add bilinear interpolation

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e41a92910ad3b2efcb56e1c27f644f99d8ce2a4f
---

 doc/filters.texi                |  3 ++
 libavfilter/vf_lenscorrection.c | 68 ++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 70 insertions(+), 1 deletion(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index 62734e06e5..bc5c217ee9 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -13440,6 +13440,9 @@ no correction. Default is 0.
 @item k2
 Coefficient of the double quadratic correction term. This value has a range [-1,1].
 0 means no correction. Default is 0.
+ at item i
+Set interpolation type. Can be @code{nearest} or @code{bilinear}.
+Default is @code{nearest}.
 @end table
 
 The formula that generates the correction is:
diff --git a/libavfilter/vf_lenscorrection.c b/libavfilter/vf_lenscorrection.c
index 43260ec4bd..2baf0fb400 100644
--- a/libavfilter/vf_lenscorrection.c
+++ b/libavfilter/vf_lenscorrection.c
@@ -41,7 +41,11 @@ typedef struct LenscorrectionCtx {
     int hsub, vsub;
     int nb_planes;
     double cx, cy, k1, k2;
+    int interpolation;
+
     int32_t *correction[4];
+
+    int (*filter_slice)(AVFilterContext *ctx, void *arg, int job, int nb_jobs);
 } LenscorrectionCtx;
 
 #define OFFSET(x) offsetof(LenscorrectionCtx, x)
@@ -51,6 +55,9 @@ static const AVOption lenscorrection_options[] = {
     { "cy", "set relative center y", OFFSET(cy), AV_OPT_TYPE_DOUBLE, {.dbl=0.5}, 0, 1, .flags=FLAGS },
     { "k1", "set quadratic distortion factor", OFFSET(k1), AV_OPT_TYPE_DOUBLE, {.dbl=0.0}, -1, 1, .flags=FLAGS },
     { "k2", "set double quadratic distortion factor", OFFSET(k2), AV_OPT_TYPE_DOUBLE, {.dbl=0.0}, -1, 1, .flags=FLAGS },
+    { "i",  "set interpolation type", OFFSET(interpolation), AV_OPT_TYPE_INT, {.i64=0}, 0, 64, .flags=FLAGS, "i" },
+    {  "nearest",  "nearest neighbour", 0,                   AV_OPT_TYPE_CONST, {.i64=0},0, 0, .flags=FLAGS, "i" },
+    {  "bilinear", "bilinear",          0,                   AV_OPT_TYPE_CONST, {.i64=1},0, 0, .flags=FLAGS, "i" },
     { NULL }
 };
 
@@ -97,6 +104,62 @@ static int filter_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
     return 0;
 }
 
+static int filter_slice_bilinear(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
+{
+    ThreadData *td = arg;
+    AVFrame *in = td->in;
+    AVFrame *out = td->out;
+
+    const int64_t max = (1 << 24) - 1;
+    const int64_t add = (1 << 23);
+    const int w = td->w, h = td->h;
+    const int xcenter = td->xcenter;
+    const int ycenter = td->ycenter;
+    const int start = (h *  job   ) / nb_jobs;
+    const int end   = (h * (job+1)) / nb_jobs;
+    const int plane = td->plane;
+    const int inlinesize = in->linesize[plane];
+    const int outlinesize = out->linesize[plane];
+    const uint8_t *indata = in->data[plane];
+    uint8_t *outrow = out->data[plane] + start * outlinesize;
+
+    for (int i = start; i < end; i++, outrow += outlinesize) {
+        const int off_y = i - ycenter;
+        uint8_t *out = outrow;
+
+        for (int j = 0; j < w; j++) {
+            const int off_x = j - xcenter;
+            const int64_t radius_mult = td->correction[j + i*w];
+            const int x = xcenter + ((radius_mult * off_x + (1<<23)) >> 24);
+            const int y = ycenter + ((radius_mult * off_y + (1<<23)) >> 24);
+            const char isvalid = x >= 0 && x <= w - 1 && y >= 0 && y <= h - 1;
+
+            if (isvalid) {
+                const int nx = FFMIN(x + 1, w - 1);
+                const int ny = FFMIN(y + 1, h - 1);
+                const int64_t du = off_x >= 0 ? (radius_mult * off_x + add) & max : max - ((radius_mult * -off_x + add) & max);
+                const int64_t dv = off_y >= 0 ? (radius_mult * off_y + add) & max : max - ((radius_mult * -off_y + add) & max);
+                const int64_t p0 = indata[ y * inlinesize +  x];
+                const int64_t p1 = indata[ y * inlinesize + nx];
+                const int64_t p2 = indata[ny * inlinesize +  x];
+                const int64_t p3 = indata[ny * inlinesize + nx];
+                int64_t sum = 0;
+
+                sum += (max - du) * (max - dv) * p0;
+                sum += (      du) * (max - dv) * p1;
+                sum += (max - du) * (      dv) * p2;
+                sum += (      du) * (      dv) * p3;
+
+                out[j] = av_clip_uint8((sum + (1LL << 47)) >> 48);
+            } else {
+                out[j] = 0;
+            }
+        }
+    }
+
+    return 0;
+}
+
 static int query_formats(AVFilterContext *ctx)
 {
     static const enum AVPixelFormat pix_fmts[] = {
@@ -135,6 +198,9 @@ static int config_props(AVFilterLink *outlink)
     outlink->w = rect->width = inlink->w;
     outlink->h = rect->height = inlink->h;
     rect->nb_planes = av_pix_fmt_count_planes(inlink->format);
+    rect->filter_slice = filter_slice;
+    if (rect->interpolation)
+        rect->filter_slice = filter_slice_bilinear;
     return 0;
 }
 
@@ -192,7 +258,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
         }
 
         td.correction = rect->correction[plane];
-        ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(h, ff_filter_get_nb_threads(ctx)));
+        ctx->internal->execute(ctx, rect->filter_slice, &td, NULL, FFMIN(h, ff_filter_get_nb_threads(ctx)));
     }
 
     av_frame_free(&in);



More information about the ffmpeg-cvslog mailing list