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
- 회귀
- 리눅스
- 쉘
- Windows10
- C++
- OpenCV
- C언어
- error
- linux
- 공부
- 영상처리
- CV
- 운영체제
- 코딩
- 알고리즘
- 학습
- Windows 10
- 프로그래밍
- Computer Vision
- shell
- 텐서플로우
- TensorFlow
- 백준알고리즘
- 턱걸이
- 딥러닝
- 시스템프로그래밍
- python
- 백준
- c
- 프로세스
Archives
- Today
- Total
목록DrawLine (1)
줘이리의 인생적기
CV - opencv(Python) 비디오에 라인, 원, 사각형 그리기
영상에 라인을 그려보도록 하겠습니다. 주차 시 후방 카메라에서 많이 보셨을 겁니다. 차선과 평행 방향으로 라인 그리기 라인, 원, 사각형 삽입 코드 원형 설명 #라인 그리기 def drawLine(image, point1, point2, color=(255, 0, 0), thickness=3, lineType=cv2.LINE_AA): result = imageCopy(image) return cv2.line(result, point1, point2, color, thickness, lineType) #원 그리기 def drawCircle(image, center, radius, color=(255, 0, 0), thickness=3, lineType=cv2.LINE_AA): result = imageCo..
공부/Computer Vision(py)
2020. 7. 13. 08:00