티스토리 뷰
Edge detection
- Convert a 2D image into a set of curves
- Extracts salient features of the scene
- More compact than pixels
Origin of edges

- Edges are caused by a variety of factors
Images as functions
- Edges look like steep cliffs
Characterizing edges
- An edge is a place of rapid change in the image intensity function
Image derivatives
- How can we differentiate a digital image F[x,y]
- Option 1: reconstruct a continuous image, f, then compute the derivative
- Option 2: take discrete derivative (finite difference)
∂f∂x[x,y]≈F[x+1,y]−F[x,y]
- How would you implement this as a linear filter?

Image gradient
- The gradient of an image: ▽f=[∂f∂x∂f∂y]
- The gradient points in the direction of most rapid increase in intensity
- The edge strength is given by the gradient magnitude:
||▽f||=√(∂f∂x)2(∂f∂y)2
- The gradient direction is given by:
θ=tan−1(∂f∂x/∂f∂y)
- How does this relate to the direction of the edge?

Effects of noise

- Where is the edge?
Solution: smooth first

To find edges, look for peaks in ddx(f⋆h)
Associative property of convolution
Differentiation is convolution, and convolution is associative:
ddx(f⋆h)=f⋆ddxh
This saves us one operation: f

The 1D Gaussian and its derivatives
Gσ(x)=1√2πσe−(x22σ2)
G′σ(x)=ddxGσ(x)=−1σ(xσ)Gσ(x)
2D edge detection filters

hσ(u,v)=12πσ2e−(u2+v22σ2)

∂∂xhσ(u,v)
Derivative of Gaussian filter

The sobel operator
- Common approximation of derivative of Gaussian

- The standard definition of the Sobel operator omits the 1/8 term
- doesn’t make a difference for edge detection
- the 1/8 term is needed to get the right gradient magnitude
Sobel operator: example


Example


- Which method is the best way to compute the derivative of an image?
Finding edges

Get Orientation at Each Pixel
- Get orientation (below, threshold at minimum gradient magnitude)

Non-maximum supression

- Check if pixel is local maximum along gradient direction
- requires interpolating pixels p and r
Before Non-max Suppression

After Non-max Suppression

Thresholding edges
- Still some noise
- Only want strong edges
- 2 thresholds, 3 cases
- R > T: strong edge
- R < T but R > t: weak edge
- R < t: no edge
- Why two thresholds?

Connecting edges
- Strong edges are edges!
- Weak edges are edges if they connect to strong
- Look in some neighborhood (usually 8 closest)

Canny edge detector
- Filter image with derivative of Gaussian
- Find magnitude and orientation of gradient
- Non maximum suppression
- Linking and thresholding (hysteresis)
- Define two thresholds: low and high
- Use the high threshold to start edge curves and the low threshold to continue them
Reference: Lecture 1: Images and image filtering
'AI > Computer Vision' 카테고리의 다른 글
Aliasing(엘리어싱) - 발생 이유, 결과, 방지 방법 (0) | 2022.06.01 |
---|---|
[CS5670] Lecture 4: Local features & Harris corner detection (0) | 2022.05.23 |
[CS5670] Lecture 3: Image Resampling & Interpolation (0) | 2022.05.23 |
[CS5670] Lecture 1: Images and image filtering (0) | 2022.05.19 |
[CS5670] Lecture 0: Intro to Computer Vision (0) | 2022.05.19 |
- Total
- Today
- Yesterday
- 구글드라이브연동
- 파이썬
- style transfer
- python
- clip
- support set
- 서버에다운
- prompt learning
- 도커 컨테이너
- docker
- CNN
- 파이썬 딕셔너리
- 구글드라이브서버연동
- NLP
- 구글드라이브서버다운
- 데이터셋다운로드
- 서버구글드라이브연동
- 퓨샷러닝
- 프롬프트
- 구글드라이브다운
- 딥러닝
- Prompt
- cs231n
- 도커
- stylegan
- 파이썬 클래스 계층 구조
- Unsupervised learning
- vscode 자동 저장
- 파이썬 클래스 다형성
- few-shot learning
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |