Skip to content

Commit 0d0a67c

Browse files
committed
Initial commit
0 parents  commit 0d0a67c

File tree

4 files changed

+222
-0
lines changed

4 files changed

+222
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

+197
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# Generated files
14+
.idea/**/contentModel.xml
15+
16+
# Sensitive or high-churn files
17+
.idea/**/dataSources/
18+
.idea/**/dataSources.ids
19+
.idea/**/dataSources.local.xml
20+
.idea/**/sqlDataSources.xml
21+
.idea/**/dynamic.xml
22+
.idea/**/uiDesigner.xml
23+
.idea/**/dbnavigator.xml
24+
25+
# Gradle
26+
.idea/**/gradle.xml
27+
.idea/**/libraries
28+
29+
# Gradle and Maven with auto-import
30+
# When using Gradle or Maven with auto-import, you should exclude module files,
31+
# since they will be recreated, and may cause churn. Uncomment if using
32+
# auto-import.
33+
# .idea/modules.xml
34+
# .idea/*.iml
35+
# .idea/modules
36+
# *.iml
37+
# *.ipr
38+
39+
# CMake
40+
cmake-build-*/
41+
42+
# Mongo Explorer plugin
43+
.idea/**/mongoSettings.xml
44+
45+
# File-based project format
46+
*.iws
47+
48+
# IntelliJ
49+
out/
50+
51+
# mpeltonen/sbt-idea plugin
52+
.idea_modules/
53+
54+
# JIRA plugin
55+
atlassian-ide-plugin.xml
56+
57+
# Cursive Clojure plugin
58+
.idea/replstate.xml
59+
60+
# Crashlytics plugin (for Android Studio and IntelliJ)
61+
com_crashlytics_export_strings.xml
62+
crashlytics.properties
63+
crashlytics-build.properties
64+
fabric.properties
65+
66+
# Editor-based Rest Client
67+
.idea/httpRequests
68+
69+
# Android studio 3.1+ serialized cache file
70+
.idea/caches/build_file_checksums.ser
71+
72+
### Python template
73+
# Byte-compiled / optimized / DLL files
74+
__pycache__/
75+
*.py[cod]
76+
*$py.class
77+
78+
# C extensions
79+
*.so
80+
81+
# Distribution / packaging
82+
.Python
83+
build/
84+
develop-eggs/
85+
dist/
86+
downloads/
87+
eggs/
88+
.eggs/
89+
lib/
90+
lib64/
91+
parts/
92+
sdist/
93+
var/
94+
wheels/
95+
pip-wheel-metadata/
96+
share/python-wheels/
97+
*.egg-info/
98+
.installed.cfg
99+
*.egg
100+
MANIFEST
101+
102+
# PyInstaller
103+
# Usually these files are written by a python script from a template
104+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
105+
*.manifest
106+
*.spec
107+
108+
# Installer logs
109+
pip-log.txt
110+
pip-delete-this-directory.txt
111+
112+
# Unit test / coverage reports
113+
htmlcov/
114+
.tox/
115+
.nox/
116+
.coverage
117+
.coverage.*
118+
.cache
119+
nosetests.xml
120+
coverage.xml
121+
*.cover
122+
.hypothesis/
123+
.pytest_cache/
124+
125+
# Translations
126+
*.mo
127+
*.pot
128+
129+
# Django stuff:
130+
*.log
131+
local_settings.py
132+
db.sqlite3
133+
db.sqlite3-journal
134+
135+
# Flask stuff:
136+
instance/
137+
.webassets-cache
138+
139+
# Scrapy stuff:
140+
.scrapy
141+
142+
# Sphinx documentation
143+
docs/_build/
144+
145+
# PyBuilder
146+
target/
147+
148+
# Jupyter Notebook
149+
.ipynb_checkpoints
150+
151+
# IPython
152+
profile_default/
153+
ipython_config.py
154+
155+
# pyenv
156+
.python-version
157+
158+
# pipenv
159+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
160+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
161+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
162+
# install all needed dependencies.
163+
#Pipfile.lock
164+
165+
# celery beat schedule file
166+
celerybeat-schedule
167+
168+
# SageMath parsed files
169+
*.sage.py
170+
171+
# Environments
172+
.env
173+
.venv
174+
env/
175+
venv/
176+
ENV/
177+
env.bak/
178+
venv.bak/
179+
180+
# Spyder project settings
181+
.spyderproject
182+
.spyproject
183+
184+
# Rope project settings
185+
.ropeproject
186+
187+
# mkdocs documentation
188+
/site
189+
190+
# mypy
191+
.mypy_cache/
192+
.dmypy.json
193+
dmypy.json
194+
195+
# Pyre type checker
196+
.pyre/
197+

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Lulin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# opencv
2+
opencv4 programming

0 commit comments

Comments
 (0)