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