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

Hough Transform에 대해 알아보겠습니다. hough transform은 영상에서 직선을 검출하는 방법 중 하나입니다. (설명필요) Hough Transform 코드 원형 설명 def houghLinesP(image, rho=1.0, theta=np.pi/180, threshold=100, minLineLength=10, maxLineGap=100): return cv2.HoughLinesP(image, rho, theta, threshold, minLineLength=minLineLength, maxLineGap=maxLineGap) def drawHoughLinesP(image, lines): result = imageCopy(image) if len(image.shape) == 2: res..
공부/Computer Vision(py)
2020. 7. 24. 08:00