Showing
2 changed files
with
282 additions
and
0 deletions
.gitignore
0 → 100644
1 | +# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,vscode,python,c | ||
2 | +# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,vscode,python,c | ||
3 | + | ||
4 | +### C ### | ||
5 | +# Prerequisites | ||
6 | +*.d | ||
7 | + | ||
8 | +# Object files | ||
9 | +*.o | ||
10 | +*.ko | ||
11 | +*.obj | ||
12 | +*.elf | ||
13 | + | ||
14 | +# Linker output | ||
15 | +*.ilk | ||
16 | +*.map | ||
17 | +*.exp | ||
18 | + | ||
19 | +# Precompiled Headers | ||
20 | +*.gch | ||
21 | +*.pch | ||
22 | + | ||
23 | +# Libraries | ||
24 | +*.lib | ||
25 | +*.a | ||
26 | +*.la | ||
27 | +*.lo | ||
28 | + | ||
29 | +# Shared objects (inc. Windows DLLs) | ||
30 | +*.dll | ||
31 | +*.so | ||
32 | +*.so.* | ||
33 | +*.dylib | ||
34 | + | ||
35 | +# Executables | ||
36 | +*.exe | ||
37 | +*.out | ||
38 | +*.app | ||
39 | +*.i*86 | ||
40 | +*.x86_64 | ||
41 | +*.hex | ||
42 | + | ||
43 | +# Debug files | ||
44 | +*.dSYM/ | ||
45 | +*.su | ||
46 | +*.idb | ||
47 | +*.pdb | ||
48 | + | ||
49 | +# Kernel Module Compile Results | ||
50 | +*.mod* | ||
51 | +*.cmd | ||
52 | +.tmp_versions/ | ||
53 | +modules.order | ||
54 | +Module.symvers | ||
55 | +Mkfile.old | ||
56 | +dkms.conf | ||
57 | + | ||
58 | +### macOS ### | ||
59 | +# General | ||
60 | +.DS_Store | ||
61 | +.AppleDouble | ||
62 | +.LSOverride | ||
63 | + | ||
64 | +# Icon must end with two \r | ||
65 | +Icon | ||
66 | + | ||
67 | + | ||
68 | +# Thumbnails | ||
69 | +._* | ||
70 | + | ||
71 | +# Files that might appear in the root of a volume | ||
72 | +.DocumentRevisions-V100 | ||
73 | +.fseventsd | ||
74 | +.Spotlight-V100 | ||
75 | +.TemporaryItems | ||
76 | +.Trashes | ||
77 | +.VolumeIcon.icns | ||
78 | +.com.apple.timemachine.donotpresent | ||
79 | + | ||
80 | +# Directories potentially created on remote AFP share | ||
81 | +.AppleDB | ||
82 | +.AppleDesktop | ||
83 | +Network Trash Folder | ||
84 | +Temporary Items | ||
85 | +.apdisk | ||
86 | + | ||
87 | +### Python ### | ||
88 | +# Byte-compiled / optimized / DLL files | ||
89 | +__pycache__/ | ||
90 | +*.py[cod] | ||
91 | +*$py.class | ||
92 | + | ||
93 | +# C extensions | ||
94 | + | ||
95 | +# Distribution / packaging | ||
96 | +.Python | ||
97 | +build/ | ||
98 | +develop-eggs/ | ||
99 | +dist/ | ||
100 | +downloads/ | ||
101 | +eggs/ | ||
102 | +.eggs/ | ||
103 | +parts/ | ||
104 | +sdist/ | ||
105 | +var/ | ||
106 | +wheels/ | ||
107 | +pip-wheel-metadata/ | ||
108 | +share/python-wheels/ | ||
109 | +*.egg-info/ | ||
110 | +.installed.cfg | ||
111 | +*.egg | ||
112 | +MANIFEST | ||
113 | + | ||
114 | +# PyInstaller | ||
115 | +# Usually these files are written by a python script from a template | ||
116 | +# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
117 | +*.manifest | ||
118 | +*.spec | ||
119 | + | ||
120 | +# Installer logs | ||
121 | +pip-log.txt | ||
122 | +pip-delete-this-directory.txt | ||
123 | + | ||
124 | +# Unit test / coverage reports | ||
125 | +htmlcov/ | ||
126 | +.tox/ | ||
127 | +.nox/ | ||
128 | +.coverage | ||
129 | +.coverage.* | ||
130 | +.cache | ||
131 | +nosetests.xml | ||
132 | +coverage.xml | ||
133 | +*.cover | ||
134 | +*.py,cover | ||
135 | +.hypothesis/ | ||
136 | +.pytest_cache/ | ||
137 | +pytestdebug.log | ||
138 | + | ||
139 | +# Translations | ||
140 | +*.mo | ||
141 | +*.pot | ||
142 | + | ||
143 | +# Django stuff: | ||
144 | +*.log | ||
145 | +local_settings.py | ||
146 | +db.sqlite3 | ||
147 | +db.sqlite3-journal | ||
148 | + | ||
149 | +# Flask stuff: | ||
150 | +instance/ | ||
151 | +.webassets-cache | ||
152 | + | ||
153 | +# Scrapy stuff: | ||
154 | +.scrapy | ||
155 | + | ||
156 | +# Sphinx documentation | ||
157 | +docs/_build/ | ||
158 | +doc/_build/ | ||
159 | + | ||
160 | +# PyBuilder | ||
161 | +target/ | ||
162 | + | ||
163 | +# Jupyter Notebook | ||
164 | +.ipynb_checkpoints | ||
165 | + | ||
166 | +# IPython | ||
167 | +profile_default/ | ||
168 | +ipython_config.py | ||
169 | + | ||
170 | +# pyenv | ||
171 | +.python-version | ||
172 | + | ||
173 | +# pipenv | ||
174 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
175 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
176 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
177 | +# install all needed dependencies. | ||
178 | +#Pipfile.lock | ||
179 | + | ||
180 | +# poetry | ||
181 | +#poetry.lock | ||
182 | + | ||
183 | +# PEP 582; used by e.g. github.com/David-OConnor/pyflow | ||
184 | +__pypackages__/ | ||
185 | + | ||
186 | +# Celery stuff | ||
187 | +celerybeat-schedule | ||
188 | +celerybeat.pid | ||
189 | + | ||
190 | +# SageMath parsed files | ||
191 | +*.sage.py | ||
192 | + | ||
193 | +# Environments | ||
194 | +# .env | ||
195 | +.env/ | ||
196 | +.venv/ | ||
197 | +env/ | ||
198 | +venv/ | ||
199 | +ENV/ | ||
200 | +env.bak/ | ||
201 | +venv.bak/ | ||
202 | +pythonenv* | ||
203 | + | ||
204 | +# Spyder project settings | ||
205 | +.spyderproject | ||
206 | +.spyproject | ||
207 | + | ||
208 | +# Rope project settings | ||
209 | +.ropeproject | ||
210 | + | ||
211 | +# mkdocs documentation | ||
212 | +/site | ||
213 | + | ||
214 | +# mypy | ||
215 | +.mypy_cache/ | ||
216 | +.dmypy.json | ||
217 | +dmypy.json | ||
218 | + | ||
219 | +# Pyre type checker | ||
220 | +.pyre/ | ||
221 | + | ||
222 | +# pytype static type analyzer | ||
223 | +.pytype/ | ||
224 | + | ||
225 | +# operating system-related files | ||
226 | +*.DS_Store #file properties cache/storage on macOS | ||
227 | +Thumbs.db #thumbnail cache on Windows | ||
228 | + | ||
229 | +# profiling data | ||
230 | +.prof | ||
231 | + | ||
232 | + | ||
233 | +### vscode ### | ||
234 | +.vscode/* | ||
235 | +!.vscode/settings.json | ||
236 | +!.vscode/tasks.json | ||
237 | +!.vscode/launch.json | ||
238 | +!.vscode/extensions.json | ||
239 | +*.code-workspace | ||
240 | + | ||
241 | +### Windows ### | ||
242 | +# Windows thumbnail cache files | ||
243 | +Thumbs.db | ||
244 | +Thumbs.db:encryptable | ||
245 | +ehthumbs.db | ||
246 | +ehthumbs_vista.db | ||
247 | + | ||
248 | +# Dump file | ||
249 | +*.stackdump | ||
250 | + | ||
251 | +# Folder config file | ||
252 | +[Dd]esktop.ini | ||
253 | + | ||
254 | +# Recycle Bin used on file shares | ||
255 | +$RECYCLE.BIN/ | ||
256 | + | ||
257 | +# Windows Installer files | ||
258 | +*.cab | ||
259 | +*.msi | ||
260 | +*.msix | ||
261 | +*.msm | ||
262 | +*.msp | ||
263 | + | ||
264 | +# Windows shortcuts | ||
265 | +*.lnk | ||
266 | + | ||
267 | +# End of https://www.toptal.com/developers/gitignore/api/macos,windows,vscode,python,c | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
README.md
0 → 100644
1 | +# 자율 주행차의 영상 기반 차간거리 유지 개발 | ||
2 | + | ||
3 | +## Table of Contents | ||
4 | + - [프로젝트 소개](#프로젝트-소개) | ||
5 | + - [팀원](#팀원) | ||
6 | +<br><br> | ||
7 | + | ||
8 | +## 프로젝트 소개 | ||
9 | + * 딥러닝을 이용하여 저렴하고 데이터 처리가 용이한 카메라를 통한 영상인식 기술을 활용해 차간 거리를 일정하게 유지하며 주행하는 Adaptive Cruise Control 기능을 제공한다. | ||
10 | +<br><br> | ||
11 | + | ||
12 | +## 팀원 | ||
13 | +- 권동영 (2016110307) | ||
14 | +- 신동해 (2018110651) | ||
15 | +<br><br> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment