Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 영상처리
- python
- 백준
- 백준알고리즘
- 알고리즘
- 리눅스
- 학습
- c
- 턱걸이
- 프로그래밍
- error
- Computer Vision
- 쉘
- shell
- 코딩
- Windows10
- C++
- 시스템프로그래밍
- 회귀
- 공부
- Windows 10
- CV
- TensorFlow
- linux
- C언어
- OpenCV
- 운영체제
- 딥러닝
- 프로세스
- 텐서플로우
Archives
- Today
- Total
목록thresholding (1)
줘이리의 인생적기
CV - opencv(Python) Canny Edge
Canny Edge에 대해 알아보겠습니다. -1986년 제안된 알고리즘 -모든 경계선 검출 가능 -경계선 위치 정확히 측정 가능 -구현순서 : 가우시안필터로 노이즈 제거 -> sobel mask를 통한 경계선 검출 -> Non maximum suppression -> Double thresholding Canny Edge threshold1은 약한 경계선에 대한 값 threshold2는 강한 경게선에 대한 값 코드 원형 설명 def cannyEdge(image, threshold1=100, threshold2=200): return cv2.Canny(image, threshold1, threshold2) 코드 설명 더보기 from OpenCV_Functions import * def nothing(x):..
공부/Computer Vision(py)
2020. 7. 21. 08:00