39 #define LANCZOS_RESOLUTION 256
92 #define OFFSET(x) offsetof(LensfunContext, x)
93 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
107 {
"focal_length",
"focal length of video (zoom; constant for the duration of the use of this filter)",
OFFSET(focal_length),
AV_OPT_TYPE_FLOAT, {.dbl=18}, 0.0, DBL_MAX,
FLAGS },
108 {
"aperture",
"aperture (constant for the duration of the use of this filter)",
OFFSET(aperture),
AV_OPT_TYPE_FLOAT, {.dbl=3.5}, 0.0, DBL_MAX,
FLAGS },
109 {
"focus_distance",
"focus distance (constant for the duration of the use of this filter)",
OFFSET(focus_distance),
AV_OPT_TYPE_FLOAT, {.dbl=1000.0f}, 0.0, DBL_MAX,
FLAGS },
111 {
"target_geometry",
"target geometry of the lens correction (only when geometry correction is enabled)",
OFFSET(target_geometry),
AV_OPT_TYPE_INT, {.i64=LF_RECTILINEAR}, 0, INT_MAX,
FLAGS,
"lens_geometry" },
112 {
"rectilinear",
"rectilinear lens (default)", 0,
AV_OPT_TYPE_CONST, {.i64=LF_RECTILINEAR}, 0, 0,
FLAGS,
"lens_geometry" },
114 {
"panoramic",
"panoramic (cylindrical)", 0,
AV_OPT_TYPE_CONST, {.i64=LF_PANORAMIC}, 0, 0,
FLAGS,
"lens_geometry" },
115 {
"equirectangular",
"equirectangular", 0,
AV_OPT_TYPE_CONST, {.i64=LF_EQUIRECTANGULAR}, 0, 0,
FLAGS,
"lens_geometry" },
116 {
"fisheye_orthographic",
"orthographic fisheye", 0,
AV_OPT_TYPE_CONST, {.i64=LF_FISHEYE_ORTHOGRAPHIC}, 0, 0,
FLAGS,
"lens_geometry" },
117 {
"fisheye_stereographic",
"stereographic fisheye", 0,
AV_OPT_TYPE_CONST, {.i64=LF_FISHEYE_STEREOGRAPHIC}, 0, 0,
FLAGS,
"lens_geometry" },
118 {
"fisheye_equisolid",
"equisolid fisheye", 0,
AV_OPT_TYPE_CONST, {.i64=LF_FISHEYE_EQUISOLID}, 0, 0,
FLAGS,
"lens_geometry" },
119 {
"fisheye_thoby",
"fisheye as measured by thoby", 0,
AV_OPT_TYPE_CONST, {.i64=LF_FISHEYE_THOBY}, 0, 0,
FLAGS,
"lens_geometry" },
120 {
"reverse",
"Does reverse correction (regular image to lens distorted)",
OFFSET(reverse),
AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1,
FLAGS },
134 const lfCamera **cameras;
135 const lfLens **lenses;
138 if ((lensfun->
db_path ? lf_db_load_path(db, lensfun->
db_path) : lf_db_load(db)) != LF_NO_ERROR) {
146 const lfCamera *
const *cameras = lf_db_get_cameras(db);
150 for (
int i = 0; cameras && cameras[
i];
i++)
155 const lfLens *
const *lenses = lf_db_get_lenses(db);
159 for (
int i = 0; lenses && lenses[
i];
i++)
165 lensfun->
lens = lf_lens_create();
166 lensfun->
camera = lf_camera_create();
168 cameras = lf_db_find_cameras(db, lensfun->
make, lensfun->
model);
169 if (cameras && *cameras) {
170 lf_camera_copy(lensfun->
camera, *cameras);
181 if (lenses && *lenses) {
182 lf_lens_copy(lensfun->
lens, *lenses);
200 }
else if (x > -2.0
f && x < 2.0
f) {
218 lensfun->
camera->CropFactor,
224 lf_modifier_enable_distortion_correction(lensfun->
modifier);
226 lf_modifier_enable_scaling(lensfun->
modifier, lensfun->
scale);
229 lf_modifier_enable_tca_correction(lensfun->
modifier);
243 lf_modifier_apply_subpixel_geometry_distortion(lensfun->
modifier,
249 lf_modifier_apply_subpixel_distortion(lensfun->
modifier,
259 lf_modifier_apply_geometry_distortion(lensfun->
modifier,
287 const int slice_start =
thread_data->height * jobnr / nb_jobs;
290 lf_modifier_apply_color_modification(
thread_data->modifier,
310 const int slice_start =
thread_data->height * jobnr / nb_jobs;
313 int x, y,
i, j, rgb_index;
314 float interpolated, new_x, new_y,
d, norm;
315 int new_x_int, new_y_int;
316 for (y = slice_start; y <
slice_end; ++y)
318 for (rgb_index = 0; rgb_index < 3; ++rgb_index) {
323 new_x_int =
thread_data->distortion_coords[x * 2 * 3 + y *
thread_data->width * 2 * 3 + rgb_index * 2] + 0.5f;
324 new_y_int =
thread_data->distortion_coords[x * 2 * 3 + y *
thread_data->width * 2 * 3 + rgb_index * 2 + 1] + 0.5f;
325 if (new_x_int < 0 || new_x_int >=
thread_data->width || new_y_int < 0 || new_y_int >=
thread_data->height) {
337 if (new_x_int < 0 || new_x_int + 1 >=
thread_data->width || new_y_int < 0 || new_y_int + 1 >=
thread_data->height) {
341 thread_data->data_in[ new_x_int * 3 + rgb_index + new_y_int *
thread_data->linesize_in] * (new_x_int + 1 - new_x) * (new_y_int + 1 - new_y)
342 +
thread_data->data_in[(new_x_int + 1) * 3 + rgb_index + new_y_int *
thread_data->linesize_in] * (new_x - new_x_int) * (new_y_int + 1 - new_y)
343 +
thread_data->data_in[ new_x_int * 3 + rgb_index + (new_y_int + 1) *
thread_data->linesize_in] * (new_x_int + 1 - new_x) * (new_y - new_y_int)
344 +
thread_data->data_in[(new_x_int + 1) * 3 + rgb_index + (new_y_int + 1) *
thread_data->linesize_in] * (new_x - new_x_int) * (new_y - new_y_int);
354 for (j = 0; j < 4; ++j)
355 for (
i = 0;
i < 4; ++
i) {
356 if (new_x_int +
i - 2 < 0 || new_x_int +
i - 2 >=
thread_data->width || new_y_int + j - 2 < 0 || new_y_int + j - 2 >=
thread_data->height)
358 d =
square(new_x - (new_x_int +
i - 2)) *
square(new_y - (new_y_int + j - 2));
363 interpolated +=
thread_data->data_in[(new_x_int +
i - 2) * 3 + rgb_index + (new_y_int + j - 2) *
thread_data->linesize_in] *
d;
368 interpolated /= norm;
369 thread_data->data_out[x * 3 + rgb_index + y *
thread_data->linesize_out] = interpolated < 0.0f ? 0.0f : interpolated > 255.0f ? 255.0f : interpolated;
379 if (new_x_int < 0 || new_x_int >=
thread_data->width || new_y_int < 0 || new_y_int >=
thread_data->height) {
391 if (new_x_int < 0 || new_x_int + 1 >=
thread_data->width || new_y_int < 0 || new_y_int + 1 >=
thread_data->height) {
395 thread_data->data_in[ new_x_int * 3 + rgb_index + new_y_int *
thread_data->linesize_in] * (new_x_int + 1 - new_x) * (new_y_int + 1 - new_y)
396 +
thread_data->data_in[(new_x_int + 1) * 3 + rgb_index + new_y_int *
thread_data->linesize_in] * (new_x - new_x_int) * (new_y_int + 1 - new_y)
397 +
thread_data->data_in[ new_x_int * 3 + rgb_index + (new_y_int + 1) *
thread_data->linesize_in] * (new_x_int + 1 - new_x) * (new_y - new_y_int)
398 +
thread_data->data_in[(new_x_int + 1) * 3 + rgb_index + (new_y_int + 1) *
thread_data->linesize_in] * (new_x - new_x_int) * (new_y - new_y_int);
408 for (j = 0; j < 4; ++j)
409 for (
i = 0;
i < 4; ++
i) {
410 if (new_x_int +
i - 2 < 0 || new_x_int +
i - 2 >=
thread_data->width || new_y_int + j - 2 < 0 || new_y_int + j - 2 >=
thread_data->height)
412 d =
square(new_x - (new_x_int +
i - 2)) *
square(new_y - (new_y_int + j - 2));
417 interpolated +=
thread_data->data_in[(new_x_int +
i - 2) * 3 + rgb_index + (new_y_int + j - 2) *
thread_data->linesize_in] *
d;
422 interpolated /= norm;
423 thread_data->data_out[x * 3 + rgb_index + y *
thread_data->linesize_out] = interpolated < 0.0f ? 0.0f : interpolated > 255.0f ? 255.0f : interpolated;
456 .data_in = in->
data[0],
463 &vignetting_thread_data,
NULL,
479 .data_in = in->
data[0],
480 .data_out =
out->data[0],
482 .linesize_out =
out->linesize[0],
484 .mode = lensfun->
mode,
489 &distortion_correction_thread_data,
NULL,
504 lf_camera_destroy(lensfun->
camera);
506 lf_lens_destroy(lensfun->
lens);
508 lf_modifier_destroy(lensfun->
modifier);
524 .description =
NULL_IF_CONFIG_SMALL(
"Apply correction to an image based on info derived from the lensfun database."),
531 .priv_class = &lensfun_class,