IMAGE 3

[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..

[Deep Learning] Recurrent Neural Network (1)

🧑🏻‍💻용어 정리 Neural Networks Feed-forward Backpropagation Convolutional Neural Network Recurrent Neural Network Propagation unfolding fold unfolding computational graph 우리가 지금까지, 여러 가지 기술들을 MLP를 기준으로 공부해왔습니다. 그러한 것으로부터 Deep MLP부터 성공적인 구조인 CNN까지 공부를 해봤습니다. 또 다른 성공적인 구조인 RNN에 대해 공부해보겠습니다. Recurrent Neural Network 이 RNN model도 1986년에 이미 제안이 되어온 model입니다. 결국 이 RNN도 Neural Network의 specialized form입니다. ..

[Computer Vision] Image pyramids

🧑🏻‍💻 Topic 정리 - image filtering - Gaussian Filter 지난 시간까지, image를 다루는 것과, image를 다루는 것에 있어서, histogram도 그려보고, equalization, filtering 그리고 중요한 Gaussian filter에 대해서도 알아보았다. Image pyramids image downsampling 우리가 image downsampling을 하려는 이유는 다음과 같다. The image is too big to fit on the screen. How would you reduce it to half its size? 하나씩 살펴봅시다. Naive image downsampling Throw away half the rows and col..