1
0
Files
avidemux_shaders/gopro_8:7/unfish_gopro_8:7.glsl

96 lines
3.0 KiB
Plaintext
Raw Normal View History

2025-09-18 07:37:25 +02:00
#version 130
2025-06-15 16:49:25 +02:00
// Fisheye removal for GoPro 11+, 8:7 ratio, without hypersmooth
2025-09-20 12:53:45 +02:00
// Copyright (C) 2025 Jean-Baptiste Berlioz
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#extension GL_ARB_texture_rectangle: enable
2025-09-18 07:37:25 +02:00
#define rotate_180
//#define debug_borders
2025-09-10 13:56:31 +02:00
2025-09-20 12:53:45 +02:00
#undef highp // defined by Qt-OpenGl
2025-09-18 07:37:25 +02:00
precision highp float;
2025-09-10 13:56:31 +02:00
// uniforms
uniform sampler2DRect myTextureY;
uniform sampler2DRect myTextureU;
uniform sampler2DRect myTextureV;
uniform vec2 myResolution;
uniform float pts;
2025-09-10 13:56:31 +02:00
// parameters
2025-09-18 06:08:05 +02:00
const vec2 sensor_size = vec2(5.949440, 5.205760);
2025-09-20 12:53:45 +02:00
const float equidistant_focal_length = 3.020000;
const float rectilinear_focal_length = 2.232346;
2025-09-10 13:56:31 +02:00
// constants
2025-09-18 06:08:05 +02:00
const int subsampling = 4;
const vec2 subsampling_step = vec2(1.0 / float(subsampling));
const vec2 subsampling_start = subsampling_step * 0.5 - vec2(0.5);
const float subsampling_scale = 1.0 / float(subsampling * subsampling);
2025-09-10 13:56:31 +02:00
// variables
vec2 texture_center;
vec2 texture_to_sensor;
vec2 sensor_to_texture;
void initialize() {
texture_center = myResolution * 0.5;
2025-09-20 12:53:45 +02:00
texture_to_sensor = sensor_size / myResolution;
2025-09-18 07:37:25 +02:00
#ifdef rotate_180
texture_to_sensor *= -1.0;
#endif
2025-09-20 12:53:45 +02:00
sensor_to_texture = myResolution / sensor_size;
}
2025-09-20 12:53:45 +02:00
vec2 equidistant_to_rectilinear(const in vec2 coord) {
2025-09-18 06:08:05 +02:00
float rectilinear_radius = length(coord);
float rectilinear_angle = atan(rectilinear_radius / rectilinear_focal_length);
float equidistant_radius = rectilinear_angle * equidistant_focal_length;
return coord * (equidistant_radius / rectilinear_radius);
}
2025-09-20 12:53:45 +02:00
vec4 sample_texture(const in vec2 coord) {
vec2 rectilinear = equidistant_to_rectilinear((coord - texture_center) * texture_to_sensor);
vec2 y_coord = texture_center + rectilinear * sensor_to_texture;
#ifdef debug_borders
if (y_coord.x < 0.0 || y_coord.y < 0.0 || y_coord.x > myResolution.x || y_coord.y > myResolution.y) {
2025-09-18 07:37:25 +02:00
return vec4(1.0);
}
#endif
2025-09-10 13:56:31 +02:00
vec2 uv_coord = y_coord * 0.5;
return vec4(
2025-09-20 12:53:45 +02:00
texture2DRect(myTextureY, y_coord).x,
texture2DRect(myTextureU, uv_coord).x,
texture2DRect(myTextureV, uv_coord).x,
1.0);
}
void main() {
initialize();
2025-09-10 13:56:31 +02:00
vec2 coord = gl_TexCoord[0].xy;
2025-09-18 07:37:25 +02:00
vec4 pixel = vec4(0.0);
2025-09-10 13:56:31 +02:00
2025-09-18 06:08:05 +02:00
for (int y = 0; y < subsampling; y++) {
for (int x = 0; x < subsampling; x++) {
vec2 offset = subsampling_start + subsampling_step * vec2(x, y);
2025-09-20 12:53:45 +02:00
pixel += sample_texture(coord + offset);
2025-09-10 13:56:31 +02:00
}
}
2025-09-18 06:08:05 +02:00
gl_FragColor = pixel * subsampling_scale;
}