2. Edge Detection Example

2023. 9. 15. 10:52Google ML Bootcamp/4. Convolutional Neural Networks

우선 convolution 연산에 대해 알아보았다. 해당 필터가 왜 수직 엣지 필터일까?
input이미지가 훨씬 크다면, convolution결과의 이미지에 하얀색 두께가 상대적으로 얇아보일 것이다.

다음과 같이 경계선이 있는부분을 탐지하는 결과를 만들 수 있으므로 vertical edge detection이다.

혹은 filter가 

1 1 1

0 0 0

-1 -1 -1

이렇게 생긴 3 x 3 matrix라면 horizontal edge detection이지 않을까?

'Google ML Bootcamp > 4. Convolutional Neural Networks' 카테고리의 다른 글

6. Convolutions Over Volume  (0) 2023.09.15
5. Strided Convolutions  (0) 2023.09.15
4. Padding  (0) 2023.09.15
3. More Edge Detection  (0) 2023.09.15
1. Computer Vision  (0) 2023.09.15