6

在下图中,目标是计算单应矩阵 H,它将点 a1 a2 a3 a4 转换为对应的 b1 b2 b3 b4。那是:

[b1 b2 b3 b4] = H * [a1 a2 a3 a4]

您建议哪种方法是计算 H(3x3) 的最佳方法。a1...b4 是在齐次坐标系中表示的 2D 点(即 [a1_x a1_y 1]', ...)。 编辑:对于这些类型的问题,我们使用 SVD,所以我想看看如何在 Matlab 中简单地完成。

编辑

这是我最初尝试在 Maltlab 中使用 svd (H=Q/P) 解决它的方法。考虑给定示例的以下代码

px=[0 1 1 0];  % a square
py=[1 1 0 0];

qx=[18 18 80 80];    % a random quadrangle
qy=[-20 20 60 -60];
if (DEBUG)
  fill(px,py,'r');
  fill(qx,qy,'r');
end

Q=[qx;qy;ones(size(qx))];
P=[px;py;ones(size(px))];
H=Q/P;
H*P-Q
answer:
   -0.0000         0         0         0         0
  -20.0000   20.0000  -20.0000   20.0000    0.0000
   -0.0000         0         0         0   -0.0000

我期望答案是一个空矩阵,但它不是!...这就是我在 StackOverflow 中问这个问题的原因。现在,我们都知道这是一个射影变换,显然不是欧几里得。但是,很高兴知道在一般情况下是否可以仅使用 4 个点来计算此类矩阵。

矩阵计算

4

5 回答 5

2

您可以尝试cp2tform从控制点对推断空间变换的函数。由于在您的情况下没有保留并行,因此您应该将 设置transformtype为“投影”。更多信息在这里

于 2012-07-30T18:24:16.663 回答
1

为此,您可以使用DLT 算法。在Peter Kovesi 的主页中有 MATLAB 例程可用于执行此操作。

于 2012-07-30T17:40:34.017 回答
1

使用您发布的数据:

P = [px(:) py(:)];
Q = [qx(:) qy(:)];

计算转换:

H = Q/P;

应用转换:

Q2 = H*P;

比较结果:

err = Q2-Q

输出:

err =
   7.1054e-15   7.1054e-15
  -3.5527e-15  -3.5527e-15
  -1.4211e-14  -2.1316e-14
   1.4211e-14   1.4211e-14

对于所有意图和目的而言,这都是零。


编辑:

因此,正如您在评论中指出的那样,上述方法不会计算 3x3 单应矩阵。它只是用提供的点数一样多的方程求解方程组:

H * A = B   -->   H = B*inv(A)   -->   H = B/A (mrdivide)

否则,MATLAB 在图像处理工具箱中有 CP2TFORM 函数。这是一个应用于所示图像的示例:

%# read illustration image
img = imread('http://i.stack.imgur.com/ZvaZK.png');
img = imcomplement(im2bw(img));

%# split into two equal-sized images
imgs{1} = img(:,fix(1:end/2));
imgs{2} = img(:,fix(end/2:end-1));

%# extract the four corner points A and B from both images
C = cell(1,2);
for i=1:2
    %# some processing
    I = imfill(imgs{i}, 'holes');
    I = bwareaopen(imclearborder(I),200);
    I = imfilter(im2double(I), fspecial('gaussian'));

    %# find 4 corners
    C{i} = corner(I, 4);

    %# sort corners in a consistent way (counter-clockwise)
    idx = convhull(C{i}(:,1), C{i}(:,2));
    C{i} = C{i}(idx(1:end-1),:);
end

%# show the two images with the detected corners
figure
for i=1:2
    subplot(1,2,i), imshow(imgs{i})
    line(C{i}(:,1), C{i}(:,2), 'Color','r', 'Marker','*', 'LineStyle','none')
    text(C{i}(:,1), C{i}(:,2), num2str((1:4)'), 'Color','r', ...
        'FontSize',18, 'Horiz','left', 'Vert','bottom')
end

检测到角点后,现在我们可以获得空间变换:

%# two sets of points
[A,B] = deal(C{:});

%# infer projective transformation using CP2TFORM
T = cp2tform(A, B, 'projective');

%# 3x3 Homography matrix
H = T.tdata.T;
Hinv = T.tdata.Tinv;

%# align points in A into B
X = tformfwd(T, A(:,1), A(:,2));

%# show result of transformation
line(X([1:end 1],1), X([1:end 1],2), 'Color','g', 'LineWidth',2)

结果:

>> H = T.tdata.T
H =
      0.74311    -0.055998    0.0062438
      0.44989      -1.0567   -0.0035331
      -293.31       62.704      -1.1742

>> Hinv = T.tdata.Tinv
Hinv =
       -1.924     -0.42859   -0.0089411
      -2.0585      -1.2615   -0.0071501
       370.68       39.695            1

截屏

我们可以自己确认计算:

%# points must be in Homogenous coordinates (x,y,w)
>> Z = [A ones(size(A,1),1)] * H;
>> Z = bsxfun(@rdivide, Z, Z(:,end))   %# divide by w
Z =
          152           57            1
          219          191            1
           62          240            1
           92          109            1

映射到 B 中的点:

%# maximum error
>> max(max( abs(Z(:,1:2)-B) ))
ans =
   8.5265e-14
于 2012-07-30T23:42:50.813 回答
0

将所有坐标组合成向量。在二维情况下,它们是:ax, ay, bx, by;

定义:

A = [ax, ay];
B = [bx, by];
input = [ones(size(A, 1), 1), A];

计算变换矩阵:

H = input \ B;

如果您需要将其应用于新的观察A_new

input_new = [ones(size(A_new, 1), 1), A_new];
B_new = input_new * H;

编辑:您也可以H通过以下方式计算:H = inv(input' * input) * input' * B;\如果安全的话。

于 2012-07-30T19:00:09.587 回答
0

我在回答另一个 SO 问题(包括 MATLAB 解决方案)时讨论了一个相关问题。在链接问题中,输出四边形是一个矩形,但我的回答处理了一般问题。

于 2012-07-30T20:29:46.690 回答