opencv-contrib-python 4.10.0.84__cp37-abi3-win_amd64.whl → 4.12.0.88__cp37-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cv2/LICENSE-3RD-PARTY.txt +423 -0
- cv2/__init__.pyi +235 -38
- cv2/aruco/__init__.pyi +13 -0
- cv2/bgsegm/__init__.pyi +10 -0
- cv2/config.py +1 -1
- cv2/cuda/__init__.pyi +5 -0
- cv2/cv2.pyd +0 -0
- cv2/dnn/__init__.pyi +6 -0
- cv2/fisheye/__init__.pyi +9 -0
- cv2/gapi/onnx/__init__.pyi +4 -0
- cv2/{opencv_videoio_ffmpeg4100_64.dll → opencv_videoio_ffmpeg4120_64.dll} +0 -0
- cv2/typing/__init__.py +27 -25
- cv2/version.py +1 -1
- cv2/videoio_registry/__init__.pyi +4 -0
- cv2/xfeatures2d/__init__.pyi +2 -0
- cv2/ximgproc/__init__.pyi +4 -0
- {opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/LICENSE-3RD-PARTY.txt +423 -0
- {opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/METADATA +8 -14
- {opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/RECORD +22 -22
- {opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/WHEEL +1 -1
- {opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/LICENSE.txt +0 -0
- {opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/top_level.txt +0 -0
{opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opencv-contrib-python
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.12.0.88
|
|
4
4
|
Summary: Wrapper package for OpenCV python bindings.
|
|
5
5
|
Home-page: https://github.com/opencv/opencv-python
|
|
6
6
|
Maintainer: OpenCV Team
|
|
@@ -27,6 +27,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
27
27
|
Classifier: Programming Language :: Python :: 3.10
|
|
28
28
|
Classifier: Programming Language :: Python :: 3.11
|
|
29
29
|
Classifier: Programming Language :: Python :: 3.12
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
30
31
|
Classifier: Programming Language :: C++
|
|
31
32
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
32
33
|
Classifier: Topic :: Scientific/Engineering
|
|
@@ -36,16 +37,8 @@ Requires-Python: >=3.6
|
|
|
36
37
|
Description-Content-Type: text/markdown
|
|
37
38
|
License-File: LICENSE-3RD-PARTY.txt
|
|
38
39
|
License-File: LICENSE.txt
|
|
39
|
-
Requires-Dist: numpy
|
|
40
|
-
Requires-Dist: numpy
|
|
41
|
-
Requires-Dist: numpy >=1.21.2 ; python_version >= "3.10"
|
|
42
|
-
Requires-Dist: numpy >=1.21.4 ; python_version >= "3.10" and platform_system == "Darwin"
|
|
43
|
-
Requires-Dist: numpy >=1.23.5 ; python_version >= "3.11"
|
|
44
|
-
Requires-Dist: numpy >=1.26.0 ; python_version >= "3.12"
|
|
45
|
-
Requires-Dist: numpy >=1.19.3 ; python_version >= "3.6" and platform_system == "Linux" and platform_machine == "aarch64"
|
|
46
|
-
Requires-Dist: numpy >=1.17.0 ; python_version >= "3.7"
|
|
47
|
-
Requires-Dist: numpy >=1.17.3 ; python_version >= "3.8"
|
|
48
|
-
Requires-Dist: numpy >=1.19.3 ; python_version >= "3.9"
|
|
40
|
+
Requires-Dist: numpy<2.0; python_version < "3.9"
|
|
41
|
+
Requires-Dist: numpy<2.3.0,>=2; python_version >= "3.9"
|
|
49
42
|
|
|
50
43
|
[](http://pepy.tech/project/opencv-python)
|
|
51
44
|
|
|
@@ -206,7 +199,7 @@ If some dependency is not enabled in the pre-built wheels, you can also run the
|
|
|
206
199
|
4. Select the package flavor which you wish to build with `ENABLE_CONTRIB` and `ENABLE_HEADLESS`: i.e. `export ENABLE_CONTRIB=1` if you wish to build `opencv-contrib-python`
|
|
207
200
|
5. Run ``pip wheel . --verbose``. NOTE: make sure you have the latest ``pip`` version, the ``pip wheel`` command replaces the old ``python setup.py bdist_wheel`` command which does not support ``pyproject.toml``.
|
|
208
201
|
- this might take anything from 5 minutes to over 2 hours depending on your hardware
|
|
209
|
-
6. Pip will print fresh
|
|
202
|
+
6. Pip will print fresh wheel location at the end of build procedure. If you use old approach with `setup.py` file wheel package will be placed in `dist` folder. Package is ready and you can do with that whatever you wish.
|
|
210
203
|
- Optional: on Linux use some of the `manylinux` images as a build hosts if maximum portability is needed and run `auditwheel` for the wheel after build
|
|
211
204
|
- Optional: on macOS use ``delocate`` (same as ``auditwheel`` but for macOS) for better portability
|
|
212
205
|
|
|
@@ -291,6 +284,7 @@ Python 3.x compatible pre-built wheels are provided for the officially supported
|
|
|
291
284
|
- 3.10
|
|
292
285
|
- 3.11
|
|
293
286
|
- 3.12
|
|
287
|
+
- 3.13
|
|
294
288
|
|
|
295
289
|
### Backward compatibility
|
|
296
290
|
|
|
@@ -298,8 +292,8 @@ Starting from 4.2.0 and 3.4.9 builds the macOS Travis build environment was upda
|
|
|
298
292
|
|
|
299
293
|
Starting from 4.3.0 and 3.4.10 builds the Linux build environment was updated from `manylinux1` to `manylinux2014`. This dropped support for old Linux distributions.
|
|
300
294
|
|
|
301
|
-
Starting from version 4.7.0 the Mac OS GitHub Actions build environment was update to version 11. Mac OS 10.x support
|
|
295
|
+
Starting from version 4.7.0 the Mac OS GitHub Actions build environment was update to version 11. Mac OS 10.x support deprecated. See https://github.com/actions/runner-images/issues/5583
|
|
302
296
|
|
|
303
|
-
Starting from version 4.9.0 the Mac OS GitHub Actions build environment was update to version 12. Mac OS 10.x support
|
|
297
|
+
Starting from version 4.9.0 the Mac OS GitHub Actions build environment was update to version 12. Mac OS 10.x support deprecated by Brew and most of used packages.
|
|
304
298
|
|
|
305
299
|
|
{opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/RECORD
RENAMED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
cv2/LICENSE-3RD-PARTY.txt,sha256=
|
|
1
|
+
cv2/LICENSE-3RD-PARTY.txt,sha256=2OyIgyD8udmTF6d69KSjqRIIZ2Bn7B-pvBlnpSJBFzA,177945
|
|
2
2
|
cv2/LICENSE.txt,sha256=7e8PrB6wjSnTRWP3JHQuB42iUT4ZYTOhLGrZ_wHiYQc,1090
|
|
3
3
|
cv2/__init__.py,sha256=lXqRv9mP-wehDNeJt8XEaAZWhHa2HjTHrVagAJK5gaU,6793
|
|
4
|
-
cv2/__init__.pyi,sha256=
|
|
4
|
+
cv2/__init__.pyi,sha256=KyLe1kQ8r7A5dJPF5nemEgUEApfDTr5nW9Zd24mLYvw,325547
|
|
5
5
|
cv2/config-3.py,sha256=3ijHtSE8yhSPCUaZFlhGEbPWbByMQyiAJZ1qOpI4AhM,748
|
|
6
|
-
cv2/config.py,sha256=
|
|
7
|
-
cv2/cv2.pyd,sha256=
|
|
6
|
+
cv2/config.py,sha256=bGNnq85VmVrkqNPBmUIOxTr6sofLF9_C9DA3ivdd0wE,123
|
|
7
|
+
cv2/cv2.pyd,sha256=KNbmBSHRu7lU72zBw3C1l2pvNirJxh6-R0wqM9Nkn3M,85191168
|
|
8
8
|
cv2/load_config_py2.py,sha256=e0zdTYwgVMiD16RafBWr7PRov5r8IDkfHs5p6dGLSJc,157
|
|
9
9
|
cv2/load_config_py3.py,sha256=_1g6WHS-j4SOc8L2GzpxaAmVkmR5ybxDbmVlxcznygc,271
|
|
10
|
-
cv2/
|
|
10
|
+
cv2/opencv_videoio_ffmpeg4120_64.dll,sha256=oPAeTuXpe0pRPNcPAfr63A3Rh7pdEpPLf8a3fn0XxjE,28349440
|
|
11
11
|
cv2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
cv2/version.py,sha256=
|
|
12
|
+
cv2/version.py,sha256=FbfA-hdVt7zB6rqiSFdqLSRIkN_3r_O0U4-BakaymAQ,96
|
|
13
13
|
cv2/Error/__init__.pyi,sha256=vQNfAGSIi0Hs_kO9KFV3zZv920KEBDcZpdOFnmkZkDg,4194
|
|
14
|
-
cv2/aruco/__init__.pyi,sha256=
|
|
14
|
+
cv2/aruco/__init__.pyi,sha256=uZyqIPk2Qer1Qud4x_j-nRPcBxRlYyDL-bchnYdSCl0,27898
|
|
15
15
|
cv2/barcode/__init__.pyi,sha256=-tWHNaRNKDmy741nNDClIeTepyLgToWbbifRL9F2668,1480
|
|
16
|
-
cv2/bgsegm/__init__.pyi,sha256=
|
|
16
|
+
cv2/bgsegm/__init__.pyi,sha256=d5xPW2oUFLEEH38H_mZTMTzw4h7T865zMaMFjxGWBrg,7439
|
|
17
17
|
cv2/bioinspired/__init__.pyi,sha256=vM8f2ZZcQQN5kWwcw0h1jIoFa1djNa9PHl35REJFdlE,5154
|
|
18
18
|
cv2/ccm/__init__.pyi,sha256=KPMtVRNoTarobq2y54rPeGoMS71Tf4qiZLu_jIqweDk,6462
|
|
19
19
|
cv2/colored_kinfu/__init__.pyi,sha256=JYxLs-JCjV-7wW_X3xmVN7unHwSnD9M9IEpClXJdezc,3369
|
|
20
|
-
cv2/cuda/__init__.pyi,sha256=
|
|
20
|
+
cv2/cuda/__init__.pyi,sha256=cjGtAd_fKbMnNyXXLJjBUYXbr528vqArZEqM6MINmFw,18194
|
|
21
21
|
cv2/data/__init__.py,sha256=9M4Wch7X9iOk3MRDumANGFbbYQyyw9U8E6jKAozGj20,73
|
|
22
22
|
cv2/data/haarcascade_eye.xml,sha256=ccxk_DBaNV3GAGeID2-71D3RVb1j7jhEZhob2jSy_Yw,341406
|
|
23
23
|
cv2/data/haarcascade_eye_tree_eyeglasses.xml,sha256=4y-cZ5NcM-nRMx6xT6WFVP8Xg1wDdCZjvLl6iS6Talc,601661
|
|
@@ -38,12 +38,12 @@ cv2/data/haarcascade_smile.xml,sha256=TKHzBOq9C1rjAYDIGstT4Walhn5b4Xsxa9PzLP34fY
|
|
|
38
38
|
cv2/data/haarcascade_upperbody.xml,sha256=cyirT9sVkvU9mNfqWxudkOAa9dlfISrzeMfrV5BIu18,785819
|
|
39
39
|
cv2/datasets/__init__.pyi,sha256=wVphAB3jhFVxVzuoxutX08nv-D6wvl86eGXR67x8R0M,1470
|
|
40
40
|
cv2/detail/__init__.pyi,sha256=IG4S-577ahgwh9UlVNZyScpDKo2l97-BLcrRTbJ0_JY,24021
|
|
41
|
-
cv2/dnn/__init__.pyi,sha256=
|
|
41
|
+
cv2/dnn/__init__.pyi,sha256=6rdBdBxevYLqp9DYxX6Kd3bKoFHPI2cqC-ANBZfI3gc,23647
|
|
42
42
|
cv2/dnn_superres/__init__.pyi,sha256=n8vwq542eBpBumO_3TuHijF0NIR9SLFhVoou1ze7mFQ,1212
|
|
43
43
|
cv2/dpm/__init__.pyi,sha256=aJZBYGvoQCaVA5Zvnvst-DWaChRV28QJYUdtVQQZFiI,120
|
|
44
44
|
cv2/dynafu/__init__.pyi,sha256=lFpp15cozT0SCe0Dy9yyl3DSDty6Rnja5gICAOUWZsw,1524
|
|
45
45
|
cv2/face/__init__.pyi,sha256=WpN1u4oDJhJVXMNyr-48PIEHXRL1CbLrUQlMgv6O3aI,7609
|
|
46
|
-
cv2/fisheye/__init__.pyi,sha256=
|
|
46
|
+
cv2/fisheye/__init__.pyi,sha256=_yXNOowvjPflSnkcpV_8d1hYgScR8A2fAzmM3p4Kcy8,10019
|
|
47
47
|
cv2/flann/__init__.pyi,sha256=76rbelMvJhD-DlSPL4X6iMCrDUA4gJU3u89wAIwv6dk,2741
|
|
48
48
|
cv2/ft/__init__.pyi,sha256=R-1xVIIOrznHPfk2Q0ljIeO8zCu3en9rDPh9ioFAhzs,5740
|
|
49
49
|
cv2/gapi/__init__.py,sha256=dPX9KhQqMbCkcHtwwL42N_D7-KlA7sQ3Lnuoflpc7bg,10621
|
|
@@ -57,7 +57,7 @@ cv2/gapi/ie/detail/__init__.pyi,sha256=eIK6gjueMN8ZwQax5Kx16b46EjcZGZ3vFTkJvltw2
|
|
|
57
57
|
cv2/gapi/imgproc/__init__.pyi,sha256=zEBFwED_Pb4i-A70WA7afLjDUCT25hldcLqyIf7aIlc,76
|
|
58
58
|
cv2/gapi/imgproc/fluid/__init__.pyi,sha256=TjQnus2HhRKbZksmRWx8CjEZqLoXuKXILBF3vixp_XI,102
|
|
59
59
|
cv2/gapi/oak/__init__.pyi,sha256=KUOTM-AapO0L1tC4XF3gIYR8tmjmrFfh1Ro0jPzOB7g,1771
|
|
60
|
-
cv2/gapi/onnx/__init__.pyi,sha256=
|
|
60
|
+
cv2/gapi/onnx/__init__.pyi,sha256=G71Ziv27W40XNei0BfQ_e3LutEKDfNBYUZVvBnOPJEQ,1552
|
|
61
61
|
cv2/gapi/onnx/ep/__init__.pyi,sha256=kH3LeGjjcdDXYOmBAJTyuDF8UpPLn5RQfmtk6DDt3QE,1420
|
|
62
62
|
cv2/gapi/ot/__init__.pyi,sha256=ds6r1REe-XpklhW2Cp4D3wdUUeh32SG7lnFBD_V7_ec,752
|
|
63
63
|
cv2/gapi/ot/cpu/__init__.pyi,sha256=TjQnus2HhRKbZksmRWx8CjEZqLoXuKXILBF3vixp_XI,102
|
|
@@ -108,21 +108,21 @@ cv2/signal/__init__.pyi,sha256=4Dk67p6HzAHCKpu_4D_pfKplcl_yo4u3t-LwvwPLjcc,415
|
|
|
108
108
|
cv2/stereo/__init__.pyi,sha256=h4VWeISZFGYrKKfED8f6plyt9AZRcbOuiyuj8tyLMQ4,2163
|
|
109
109
|
cv2/structured_light/__init__.pyi,sha256=4qQ9MjebJ9cjUbuXqm99-JdTdqWA6f9VmmzUaJSlkE4,4547
|
|
110
110
|
cv2/text/__init__.pyi,sha256=nA5aIm_1iUeJqz_x_a2XkUHH0XIQV3eSymxCmmQxbGk,9438
|
|
111
|
-
cv2/typing/__init__.py,sha256=
|
|
111
|
+
cv2/typing/__init__.py,sha256=ztyvxOPIyUZQQJQ8XyZFeY_QcSVnI14aJ0aC4rurisU,5545
|
|
112
112
|
cv2/utils/__init__.py,sha256=KxaZCzW1aa8cpyOdwQ97JOxi8npGYmseLxJx0uGqNVQ,344
|
|
113
113
|
cv2/utils/__init__.pyi,sha256=A2n4iAX8yr1EA1fOuGdKzIE39uM1gIMbRvlzW-DPZuk,3701
|
|
114
114
|
cv2/utils/fs/__init__.pyi,sha256=BPwL654636kP4k95U4QPp7oMZcgJ2QDIYrb9F8h4c7I,93
|
|
115
115
|
cv2/utils/nested/__init__.pyi,sha256=u3osqQeekndY9_-xxK1PAD44dXZaGLYhyfeFYbV4npA,604
|
|
116
|
-
cv2/videoio_registry/__init__.pyi,sha256=
|
|
116
|
+
cv2/videoio_registry/__init__.pyi,sha256=_ZZH2FSYJNuOWgDSLTTfUMkycnYYzXZufjyg9HmlQNw,993
|
|
117
117
|
cv2/videostab/__init__.pyi,sha256=EPiTC8NADassKZjIxf_T-Mr13Y-eKTliHRqrNFoq7yk,359
|
|
118
118
|
cv2/wechat_qrcode/__init__.pyi,sha256=APhBbME2kpZDh37f_9vHxsw_CN-jWnS5FdA_983dHPU,854
|
|
119
|
-
cv2/xfeatures2d/__init__.pyi,sha256=
|
|
120
|
-
cv2/ximgproc/__init__.pyi,sha256=
|
|
119
|
+
cv2/xfeatures2d/__init__.pyi,sha256=uguHHO9zGR2BN0ZCE-G3CXvZTIyt6Hi3AYqQOW4frnY,17641
|
|
120
|
+
cv2/ximgproc/__init__.pyi,sha256=12TExSxpXF_humFgxK9J8KsAVJ4yJwZvw8WReY7ie0Y,33381
|
|
121
121
|
cv2/ximgproc/segmentation/__init__.pyi,sha256=v6ju1fo9wwcnElKYZxkdNdVwTaM0y9JPLlDhgQchgP4,4563
|
|
122
122
|
cv2/xphoto/__init__.pyi,sha256=NuwaRzJKl_mlPg7sX56xB0Lr7DgpuvVZRsELinzHlvI,5706
|
|
123
|
-
opencv_contrib_python-4.
|
|
124
|
-
opencv_contrib_python-4.
|
|
125
|
-
opencv_contrib_python-4.
|
|
126
|
-
opencv_contrib_python-4.
|
|
127
|
-
opencv_contrib_python-4.
|
|
128
|
-
opencv_contrib_python-4.
|
|
123
|
+
opencv_contrib_python-4.12.0.88.dist-info/LICENSE-3RD-PARTY.txt,sha256=2OyIgyD8udmTF6d69KSjqRIIZ2Bn7B-pvBlnpSJBFzA,177945
|
|
124
|
+
opencv_contrib_python-4.12.0.88.dist-info/LICENSE.txt,sha256=7e8PrB6wjSnTRWP3JHQuB42iUT4ZYTOhLGrZ_wHiYQc,1090
|
|
125
|
+
opencv_contrib_python-4.12.0.88.dist-info/METADATA,sha256=WS82G_4067DlXd-o94-9ORARF57AZf9MghlYqMt8fB4,20006
|
|
126
|
+
opencv_contrib_python-4.12.0.88.dist-info/WHEEL,sha256=9fG10vSzOKXwmjX3CkWN62P9hqj-GGl2wzwdRxOVR-Y,94
|
|
127
|
+
opencv_contrib_python-4.12.0.88.dist-info/top_level.txt,sha256=SY8vrf_sYOg99OP9euhz7q36pPy_2VK5vbeEWXwwSoc,4
|
|
128
|
+
opencv_contrib_python-4.12.0.88.dist-info/RECORD,,
|
{opencv_contrib_python-4.10.0.84.dist-info → opencv_contrib_python-4.12.0.88.dist-info}/LICENSE.txt
RENAMED
|
File without changes
|
|
File without changes
|