본문 바로가기

DL|ML49

[Tübingen ML] Computer Vision - Lecture 2.2 (Image Formation: Geometric Image Formation) 튀빙겐 대학교의 Lecture: Computer Vision 2.2을 공부하며 정리한 자료입니다. Origins of the Pinhole Camera 핀홀 카메라에 대한 이야기. 별거 없었던 것 같다. 아래 [그림 2]에서는 물리적 카메라 모델(physical camera model)과 수학적 카메라 모델(mathmatical camera model)을 비교한다. 물리적 카메라 모델은 focal point뒤에 상이 맺혀서 상이 뒤집힌다. Perspective projection(3D to 2D)을 모델링할 때는 즉, 수학적 카메라 모델은 이미지 플레인이 focal point 앞에 있다고 가정한다. Image coordinates의 적절한 변화를 주면 두 모델은 같다. Projection Models .. 2023. 3. 14.
[Tübingen ML] Computer Vision - Lecture 2.1 (Image Formation: Primitives and Transformations) 튀빙겐 대학교의 Lecture: Computer Vision 2.1을 공부하며 정리한 자료입니다. Lecture 2.1 (Image Formation: Primitives and Transformations) Primitives and Transformations Geometric primitives는 3D shapes를 묘사하기 위한 basic building blocks이고, 여기서는 points, lines, planes(점, 선 면) 을 이야기한다. Basic transformation에 대해 이야기한다. 2D Points 2D points는 각각 inhomogeneous coordinates, homogeneous 좌표로 아래와 같이 쓸 수 있다. $l : (a, b, c)$라는 직선이 있을 때.. 2023. 3. 13.
Self Supervised Learning를 여행하는 히치하이커를 위한 안내서 (4) - SimCLR v1, v2 simCLR v1 논문, simCLR v2 논문, 코드 Self Supervised Learning를 여행하는 히치하이커를 위한 안내서 저는 요즘 모두의 연구소에서 Self Supervised Learning(SSL)을 공부하고 SSL에 대해 논문을 쓰는 것을 목표로 하는 SSL LAB(쓸랩)의 연구원으로도 활동하고 있습니다. 이번 논문은 제가 Self Supervised Learning을 처음 접했던 논문이었고, 이 분야에서도 연구가 더욱 활발하게 된 계기가 되었던 논문인 것 같습니다. 미리 알아두면 좋은 지식 - Contrastive Learning : Positive pair와 Negative pair로 구성하여 Positive pair 끼리는 거리를 좁히고, Negative pair끼리는 거리를 .. 2022. 7. 31.
SSD : Single Shot MultiBox Detector 지난 포스팅에서 정리했던 SpaceNet Challenge 1에서 2등을 한 사람이 SSD의 방법의 일부를 이용했다. 2016년도 논문이기 때문에 굉장히 많은 사람들이 포스팅을 했지만 내 스스로 되돌아보는 의미에서 간단히 SSD를 정리해볼까 한다. 아래는 지난 포스팅에 대한 링크이다. https://i-am-eden.tistory.com/48 SpaceNet Challenge 1 SpaceNet 이란? > SpaceNet® is dedicated to accelerating applied research in geospatial machine learning. 나만의 정리 SpaceNet Challenge 1 주제 및 정보 : Rio de Janeiro building footprint extractio.. 2022. 7. 23.
SpaceNet Challenge 1 SpaceNet 이란? > SpaceNet® is dedicated to accelerating applied research in geospatial machine learning. 나만의 정리 SpaceNet Challenge 1 주제 및 정보 : Rio de Janeiro building footprint extraction이다. 각각의 빌딩은 polygon으로 라벨링 되어 있다. 각 모델은 building 이 있다고 생각하는 자리에 polygon을 예측해야한다. Metric : 각각의 proposed bilding footprint(polygon)는 "True Positive(예측과 GT 모두 참)" 혹은 "False Positive(예측은 참이나 GT가 거짓)". "True Positive"의 .. 2022. 7. 21.
Self Supervised Learning를 여행하는 히치하이커를 위한 안내서 (3) - Representation Learning withContrastive Predictive Coding 논문, 코드 Self Supervised Learning를 여행하는 히치하이커를 위한 안내서 저는 요즘 모두의 연구소에서 Self Supervised Learning(SSL)을 공부하고 SSL에 대해 논문을 쓰는 것을 목표로 하는 SSL LAB(쓸랩)의 연구원으로도 활동하고 있습니다. 이번 논문은 infoNCE loss를 기반으로 predictive model을 사용하는 모델을 제안했습니다. infoNCE loss는 contrastive learning 논문에 자주 등장합니다. 잘 알고 가면 좋을 것 같습니다. 미리 알아두면 좋은 지식 - Contrastive Learning : Positive pair와 Negative pair로 구성하여 Positive pair 끼리는 거리를 좁히고, Negative.. 2022. 6. 29.