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 | 31 |
Tags
- python
- error
- 코딩
- 턱걸이
- 쉘
- Windows 10
- Computer Vision
- 프로그래밍
- C++
- linux
- Windows10
- 영상처리
- 회귀
- 공부
- 텐서플로우
- 학습
- shell
- c
- CV
- 프로세스
- C언어
- 리눅스
- TensorFlow
- 백준
- 운영체제
- 시스템프로그래밍
- 백준알고리즘
- 알고리즘
- OpenCV
- 딥러닝
Archives
- Today
- Total
목록canny edge (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