(멀티플 뷰 지오메트리) Lecture 4. Robust homography estimation

(멀티플 뷰 지오메트리) Lecture 4. Robust homography estimation

2022, Apr 20    


Multiple View Geometry 글 목차


  • 참조 : https://youtu.be/W8vgVoQdwAM?list=PLxg0CGqViygP47ERvqHw_v7FVnUovJeaz
  • 참조 : https://youtu.be/v3322cNhCTk?list=PLxg0CGqViygP47ERvqHw_v7FVnUovJeaz
  • 참조 : Multiple View Geometry in Computer Vision






Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing


  • 안정적인 DLT 알고리즘을 구현하기 위하여 Nomalied DLT 알고리즘을 필수적으로 사용하기를 권장하며 전체적인 알고리즘의 순서는 위 표와 같습니다.
  • 4개 이상의 2D 포인트 간의 대응 xixixixi 이 주어지면 2D homography 행렬 HH 를 구할 수 있으며 구 역할은 xi=Hxixi=Hxi 와 같습니다.


  • normalized DLT 알고리즘은 다음과 같습니다.


  • ① 각 대응된 포인트 xixixixiTnormTnormTnormTnorm 각각을 이용하여 normalize를 적용합니다. TnormTnormxixinormalize 하는 변환 행렬이며 TnormTnormxixinormalize 합니다. 즉, 각 2D image coordinate에서 각 포인트 값에 맞게 normalize 하게 됩니다. 변환 행렬은 다음과 같이 구성됩니다.


  • Tnorm=[s0scx0sscy001]
  • c=(cx,cy)=centroid of all data points
  • s=2ˉd
  • ˉd=mean distance of all points from centroid


  • 위 식에서 s 는 평균 distancesqrt2=(10)2+(10)2 에 나눔으로써 x,y 방향으로 거리가 1이고 원점으로 부터 distancesqrt2 인 공간으로 normalization 하는 scale 값으로 사용 되었습니다.
  • 따라서 Tnorm 를 이용하여 scale 변화와 centroid 까지의 이동 까지 반영하여 normalize 할 수 있습니다.


  • ② 앞에서 다룬 방식과 동일하게 DLT 알고리즘을 사용하여 ˜xi˜xi 간 변환을 하는 homography ˜H 를 구할 수 있습니다. normalize된 공간에서의 homography이기 때문에 ˜H 로 표현합니다.


  • ③ 실제 사용해야 하는 homographyimage coordinatehomographyH 이므로 다음과 같이 구할 수 있습니다.


  • H=T1norm˜HTnorm
  • Tnorm:image spacenormalized space
  • ˜H:normalized space homography
  • T1norm:normalized spaceimage space


  • 따라서 Himage space에서 적용하는 homography가 되며 그 내부 과정을 살펴보면 image space → normalized space → normalized space homography → image space 순서로 변환 과정이 누적됩니다.




Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing


  • 어떤 함수 f(x)테일러 급수로 근사화 하면 다음과 같이 나타낼 수 있습니다. 아래 pn(x)n 차항 까지 근사화 한 것이고 n 가 되면 f(x)=p(x) 를 만족하는 것이 테일러 급수의 성질입니다.


  • f(x)=p(x)
  • f(x)=pn(x)=f(a)+f(a)(xa)+f(a)2!(xa)2++fn(a)n!(xa)n=nk=0fk(a)k!(xa)k


  • 테일러 급수를 변화량 h 와 함께 표현하면 다음과 같이 나타낼 수 있으며 위 식과 표현에 차이만 있을 뿐 의미는 같습니다.


  • f(a+h)=f(a)+f(a)h+f2(a)2!h2+f3(a)3!h3++fn(a)n!hn=nk=0fk(a)k!hk


Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Drawing



Multiple View Geometry 글 목차