Created starter files for the project.
This commit is contained in:
commit
73f0c0db42
1992 changed files with 769897 additions and 0 deletions
2278
venv/Lib/site-packages/cv2/LICENSE-3RD-PARTY.txt
Normal file
2278
venv/Lib/site-packages/cv2/LICENSE-3RD-PARTY.txt
Normal file
File diff suppressed because it is too large
Load diff
21
venv/Lib/site-packages/cv2/LICENSE.txt
Normal file
21
venv/Lib/site-packages/cv2/LICENSE.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) Olli-Pekka Heinisuo
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
33
venv/Lib/site-packages/cv2/__init__.py
Normal file
33
venv/Lib/site-packages/cv2/__init__.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
import importlib
|
||||
import os
|
||||
import sys
|
||||
|
||||
from .cv2 import *
|
||||
from .data import *
|
||||
|
||||
# wildcard import above does not import "private" variables like __version__
|
||||
# this makes them available
|
||||
globals().update(importlib.import_module("cv2.cv2").__dict__)
|
||||
|
||||
ci_and_not_headless = False
|
||||
|
||||
try:
|
||||
from .version import ci_build, headless
|
||||
|
||||
ci_and_not_headless = ci_build and not headless
|
||||
except:
|
||||
pass
|
||||
|
||||
# the Qt plugin is included currently only in the pre-built wheels
|
||||
if (
|
||||
sys.platform == "darwin" or sys.platform.startswith("linux")
|
||||
) and ci_and_not_headless:
|
||||
os.environ["QT_QPA_PLATFORM_PLUGIN_PATH"] = os.path.join(
|
||||
os.path.dirname(os.path.abspath(__file__)), "qt", "plugins"
|
||||
)
|
||||
|
||||
# Qt will throw warning on Linux if fonts are not found
|
||||
if sys.platform.startswith("linux") and ci_and_not_headless:
|
||||
os.environ["QT_QPA_FONTDIR"] = os.path.join(
|
||||
os.path.dirname(os.path.abspath(__file__)), "qt", "fonts"
|
||||
)
|
BIN
venv/Lib/site-packages/cv2/__pycache__/__init__.cpython-36.pyc
Normal file
BIN
venv/Lib/site-packages/cv2/__pycache__/__init__.cpython-36.pyc
Normal file
Binary file not shown.
BIN
venv/Lib/site-packages/cv2/__pycache__/version.cpython-36.pyc
Normal file
BIN
venv/Lib/site-packages/cv2/__pycache__/version.cpython-36.pyc
Normal file
Binary file not shown.
BIN
venv/Lib/site-packages/cv2/cv2.cp36-win32.pyd
Normal file
BIN
venv/Lib/site-packages/cv2/cv2.cp36-win32.pyd
Normal file
Binary file not shown.
3
venv/Lib/site-packages/cv2/data/__init__.py
Normal file
3
venv/Lib/site-packages/cv2/data/__init__.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
import os
|
||||
|
||||
haarcascades = os.path.join(os.path.dirname(__file__), "")
|
Binary file not shown.
12213
venv/Lib/site-packages/cv2/data/haarcascade_eye.xml
Normal file
12213
venv/Lib/site-packages/cv2/data/haarcascade_eye.xml
Normal file
File diff suppressed because it is too large
Load diff
22619
venv/Lib/site-packages/cv2/data/haarcascade_eye_tree_eyeglasses.xml
Normal file
22619
venv/Lib/site-packages/cv2/data/haarcascade_eye_tree_eyeglasses.xml
Normal file
File diff suppressed because it is too large
Load diff
14382
venv/Lib/site-packages/cv2/data/haarcascade_frontalcatface.xml
Normal file
14382
venv/Lib/site-packages/cv2/data/haarcascade_frontalcatface.xml
Normal file
File diff suppressed because it is too large
Load diff
13394
venv/Lib/site-packages/cv2/data/haarcascade_frontalcatface_extended.xml
Normal file
13394
venv/Lib/site-packages/cv2/data/haarcascade_frontalcatface_extended.xml
Normal file
File diff suppressed because it is too large
Load diff
24350
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_alt.xml
Normal file
24350
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_alt.xml
Normal file
File diff suppressed because it is too large
Load diff
20719
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_alt2.xml
Normal file
20719
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_alt2.xml
Normal file
File diff suppressed because it is too large
Load diff
96484
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_alt_tree.xml
Normal file
96484
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_alt_tree.xml
Normal file
File diff suppressed because it is too large
Load diff
33314
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_default.xml
Normal file
33314
venv/Lib/site-packages/cv2/data/haarcascade_frontalface_default.xml
Normal file
File diff suppressed because it is too large
Load diff
17030
venv/Lib/site-packages/cv2/data/haarcascade_fullbody.xml
Normal file
17030
venv/Lib/site-packages/cv2/data/haarcascade_fullbody.xml
Normal file
File diff suppressed because it is too large
Load diff
7390
venv/Lib/site-packages/cv2/data/haarcascade_lefteye_2splits.xml
Normal file
7390
venv/Lib/site-packages/cv2/data/haarcascade_lefteye_2splits.xml
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
14056
venv/Lib/site-packages/cv2/data/haarcascade_lowerbody.xml
Normal file
14056
venv/Lib/site-packages/cv2/data/haarcascade_lowerbody.xml
Normal file
File diff suppressed because it is too large
Load diff
29690
venv/Lib/site-packages/cv2/data/haarcascade_profileface.xml
Normal file
29690
venv/Lib/site-packages/cv2/data/haarcascade_profileface.xml
Normal file
File diff suppressed because it is too large
Load diff
7407
venv/Lib/site-packages/cv2/data/haarcascade_righteye_2splits.xml
Normal file
7407
venv/Lib/site-packages/cv2/data/haarcascade_righteye_2splits.xml
Normal file
File diff suppressed because it is too large
Load diff
2656
venv/Lib/site-packages/cv2/data/haarcascade_russian_plate_number.xml
Normal file
2656
venv/Lib/site-packages/cv2/data/haarcascade_russian_plate_number.xml
Normal file
File diff suppressed because it is too large
Load diff
6729
venv/Lib/site-packages/cv2/data/haarcascade_smile.xml
Normal file
6729
venv/Lib/site-packages/cv2/data/haarcascade_smile.xml
Normal file
File diff suppressed because it is too large
Load diff
28134
venv/Lib/site-packages/cv2/data/haarcascade_upperbody.xml
Normal file
28134
venv/Lib/site-packages/cv2/data/haarcascade_upperbody.xml
Normal file
File diff suppressed because it is too large
Load diff
BIN
venv/Lib/site-packages/cv2/opencv_videoio_ffmpeg440.dll
Normal file
BIN
venv/Lib/site-packages/cv2/opencv_videoio_ffmpeg440.dll
Normal file
Binary file not shown.
4
venv/Lib/site-packages/cv2/version.py
Normal file
4
venv/Lib/site-packages/cv2/version.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
opencv_version = "4.4.0.44"
|
||||
contrib = False
|
||||
headless = False
|
||||
ci_build = True
|
Loading…
Add table
Add a link
Reference in a new issue