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

흰색 차선과 노란 차선을 검출해보도록 하겠습니다. 1번 흰색 차선 검출 2번 흰색 노란색 차선 검출 전체 코드 더보기 # -*- coding: utf-8 -*- from OpenCV_Functions import * def imageProcessing(image): result = imageCopy(image) lower_white_hls = np.array([0, 200, 0]) upper_white_hls = np.array([179, 255, 255]) lower_yellow_hls = np.array([15, 30, 115]) upper_yellow_hls = np.array([35, 204, 255]) result = convertColor(result, cv2.COLOR_BGR2HLS) whi..
공부/Computer Vision(py)
2020. 7. 10. 08:00