vision 5

[Paper Review] Tackling the Generative Learning Trilemma with Denoising Diffusion GANs

Paper Review 제목 : Tackling the Generative Learning Trilemma with Denoising Diffusion GANs 저널 : ICLR 2022 (Spotlight). 저자 : Zhisheng Xiao, Karsten Kreis, Arash Vahdat 일시 : 15 Dec 2021 연구 : The University of Chicago | NVIDIA 해당 논문 리뷰는 위 링크의 논문을 리뷰한 것입니다. 오류나 내용 정정 요청에 대한 문의는 언제나 환영입니다. Background 본 논문을 읽기 전 Diffusion Models, DDPM, 그리고 GANs에 대한 개념은 필수적입니다. 아래 링크 중 Background에 대한 부분을 숙지해주세요. 그리고 간략하..

[Computer Vision] Image Restoration - Salt and Pepper noise

🧑🏻‍💻용어 정리 Computer vision Image Restoration noise salt and pepper noise 이번에는 restoration에 대해 알아보겠습니다. Image Restoration 이 image restoration의 목적은 image degradation을 줄이는 것입니다. 이 degradation에는 다음과 같은 종류가 있습니다. Noise 촬영 과정 중 센서 이상 or 전송하는 과정 중 압축하고 풀고 할 때, 과정 속에서 오차가 발생 out-of-focus blur 초점이 안 나오는 blur motion blur 피사체나 찍는 사람이 움직이는 것 이러한 여러 image에 대해서 다음과 같은 식으로 표현할 수 있습니다. 우리에게 주어진 degraded image를 g..

[Computer Vision] Binary Image

🧑🏻‍💻용어 정리 Computer vision Edge Objectives erosion dilation edge opening closing 이번에는 Segmentation에서, thresholding을 통한 binarization 하는 것을 알아보겠습니다. Objectives Segmentation 결과로 binary image나옴. 찾고자하는 부분 1, 배경 0. Binary image Neighborhoods connectedness Morphological processing for binary images 형태학적 Erosion and Dilation Opening and Closing Segmentation thresholding을 통한 binarization은 무엇일까요? 간단히 보면, 기..

[Computer Vision] Edge Detection

🧑🏻‍💻용어 정리 Computer vision Edge Detection Sobel filter filtering burring Edge Detection Goal : Identify sudden changes (discontinuities) in an image Edge는 쉽게 보면 변화가 있는 부분, 경계선이라고 볼 수 있습니다. 결국, 변화가 일어나는 경계선을 찾는 것이죠. 이러한 부분에서도 우리가 edges를 찾아볼 수 있습니다. 위와 같은 예시를 살펴봅시다. 한 Image에 대해서 우리는 빨간 선에 따라 pixel 값에 대한 intensity function을 그릴 수 있습니다. 1차로 표현한 것입니다. 2차로 하려면 3D가 필요하죠. 그렇다면, edges를 찾기 위해서 맨 오른쪽 사진과 같이,..

[Computer Vision] Image upsampling

🧑🏻‍💻 Topic 정리 - image filtering - Gaussian Filter - linear interpolation - Bilinear interpolation 지난 시간까지, image를 다루는 것과, image를 다루는 것에 있어서, histogram도 그려보고, equalization, filtering 그리고 중요한 Gaussian filter에 대해서도 알아보았다. Image pyramids 다음 topic에 대해 살펴봅시다. 이미지를 10배 키우는 것이 가능할까? 위 한 pixel에 대해서 10칸씩 복제를 해서 넓혀간다면 어떻게 될까요? 10 x 10의 블락을 똑같은 값으로 넣는다고 보면 됩니다. 그럼 어떻게 될까요? 이렇게 보기 좋지 않게, block이 보이는 사진이 나오게 됩..