-
[22] Computation of the Fundamental Matrix FMultiple View Geometry 2021. 6. 12. 18:34
본 포스트는 학습한 것을 정리할 목적으로 작성되었습니다.
해당 포스트의 내용 및 그림, 수식 등은 'Multiple View Geometry in Computer Vision' 책을 참고하였습니다.
(1) Computation of the fundamental matrix F
Fundamental matrix는 다음과 같은 equation으로 정의된다. 아래의 식에서 x, x′은 homogeneous coordinate로 표현된다.x′TFx=0
x′xf11+x′yf12+x′f13+y′xf21+y′yf22+y′f23+xf31+yf32+f33=0
(x′x,x′y,x′,y′x,y′y,y′,x,y,1)f=0
위 식을 n개의 대응점 쌍에 적용하면 다음과 같이 n개의 linear equations로 부터 아래의 식을 얻을 수 있다.
Af=[x′1x1 ⋯ y1 1⋮x′nxn ⋯ yn 1][f11⋮f33]
위 식에서 A의 singular value decomposition을 통해 V의 가장 마지막 column을 f로 하여 fundamental matrix F를 구할 수 있다.
(2) The singularity constraints
Fundamental matrix는 singular matrix이다. 만약 fundamental matrix가 singular가 아니라면(rank가 3이라면) fundamental matrix의 null spaces가 두 epipole이라는 기하학적 해석이 불가능 하고, 따라서 모든 x에 대한 epipolar lines l′=Fx가 아래 그림의 (a)와 같이 한 점(epipole)에서 만난다는 것을 정의할 수 없다.
따라서 (1)에서 구한 F로 부터 Frobenius norm ||F−F′||를 최소화 하면서 det(F′)=0을 만족하는 F′를 찾아야 하고 이는 F를 SVD하여 F=UDVT로 부터 D의 singular matrix의 마지막 항을 0으로 하여 F′=UD′VT와 같이 계산하면 얻을 수 있다.
(3) First-order geometric error (Sampson distance)
(1-2)에서는 대응점 쌍이 noise free라고 가정하였다. 일반적으로는 noise가 존재하므로 대응점 쌍에도 보정이 필요하며 이는 다음과 같이 정의되는 Sampson error의 최소화를 통해 수행된다.
\frac{\boldsymbol{\epsilon}^T \boldsymbol{\epsilon}}{JJ^T} = (\textbf{x}_i'^T F \textbf{x}_i)^2
JJ^T = (F\textbf{x}_i)_1^2 + (F\textbf{x}_i)_2^2 + (F^T \textbf{x}'_i)_2^1 + (F^T \textbf{x}_i)_1^2
Cost function = \sum_i{\frac{ (\textbf{x}_i'^T F \textbf{x}_i)^2}{(F\textbf{x}_i)_1^2 + (F\textbf{x}_i)_2^2 + (F^T \textbf{x}'_i)_2^1 + (F^T \textbf{x}_i)_1^2}}
'Multiple View Geometry' 카테고리의 다른 글
[21] The Essential Matrix (0) 2021.06.09 [20] Epipolar Geometry and the Fundamental Matrix (2) (0) 2021.06.09 [19] Epipolar Geometry and the Fundamental Matrix (0) 2021.06.08 [18] Camera Calibration (2) (0) 2021.04.21 [17] Camera Calibration (1) (0) 2021.04.21