📄 ckr2_regular.m
字号:
function [z, zx1, zx2] = ckr2_regular(y, h, r, ksize)
% [CKR2_REGULAR]
% The second order classic kernel regression function for regularly sampled
% data.
%
% [USAGE]
% [z, zx1, zx2] = ckr2_regular(y, h, r, ksize)
%
% [RETURNS]
% z : the estimated image
% zx1 : the estimated gradient image along the x1 direction (vertical
% direction)
% zx2 : the estimated gradient image along the x2 direction (horizontal
% direction)
%
% [PARAMETERS]
% y : the input image
% h : the global smoothing parameter
% r : the upscaling factor ("r" must be an integer number)
% ksize : the size of the kernel (ksize x ksize, and "ksize" must be
% an odd number)
%
% [HISTORY]
% June 16, 2007 : created by Hiro
% Get the oritinal image size
[N, M] = size(y);
% Initialize the return parameters
z = zeros(N*r, M*r);
zx1 = zeros(N*r, M*r);
zx2 = zeros(N*r, M*r);
% Create the equivalent kernels
radius = (ksize - 1) / 2;
[x2, x1] = meshgrid(-radius-(r-1)/r : 1/r : radius, -radius-(r-1)/r : 1/r : radius);
A = zeros(6, ksize^2, r, r);
for i = 1 : r
for j = 1 : r
xx1 = downsample2(x1(r-i+1:end, r-j+1:end), r);
xx2 = downsample2(x2(r-i+1:end, r-j+1:end), r);
% The feture matrix
Xx = [ones(ksize^2,1), xx1(:), xx2(:), xx1(:).^2, xx1(:).*xx2(:), xx2(:).^2];
% The weight matrix (Gaussian kernel function)
tt = xx1.^2 + xx2.^2;
W = exp(-(0.5/h^2) * tt);
% Equivalent kernel
Xw = [Xx(:,1).*W(:), Xx(:,2).*W(:), Xx(:,3).*W(:),...
Xx(:,4).*W(:), Xx(:,5).*W(:), Xx(:,6).*W(:)];
A(:,:,i,j) = inv(Xx.' * Xw) * (Xw.');
end
end
% Mirroring the input image
y = EdgeMirror(y, [radius, radius]);
% Estimate an image and its first gradients with pixel-by-pixel
for n = 1 : N
for m = 1 : M
% Neighboring samples to be taken account into the estimation
yp = y(n:n+ksize-1, m:m+ksize-1);
for i = 1 : r
nn = (n - 1) * r + i;
for j = 1 : r
mm = (m - 1) * r + j;
% Estimate the pixel values at (nn,mm)
z(nn,mm) = A(1,:,i,j) * yp(:);
zx1(nn,mm) = A(2,:,i,j) * yp(:);
zx2(nn,mm) = A(3,:,i,j) * yp(:);
end
end
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -