opencv-contrib-python 4.9.0.80__cp37-abi3-win_amd64.whl → 4.10.0.84__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 +25 -0
- cv2/__init__.py +1 -1
- cv2/__init__.pyi +77 -2
- cv2/barcode/__init__.pyi +12 -0
- cv2/cv2.pyd +0 -0
- cv2/dnn/__init__.pyi +4 -0
- cv2/fisheye/__init__.pyi +5 -0
- cv2/gapi/onnx/ep/__init__.pyi +3 -0
- cv2/mat_wrapper/__init__.py +5 -4
- cv2/mcc/__init__.pyi +2 -0
- cv2/ocl/__init__.pyi +4 -0
- cv2/{opencv_videoio_ffmpeg490_64.dll → opencv_videoio_ffmpeg4100_64.dll} +0 -0
- cv2/signal/__init__.pyi +14 -0
- cv2/typing/__init__.py +11 -8
- cv2/version.py +1 -1
- cv2/ximgproc/__init__.pyi +4 -4
- {opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/LICENSE-3RD-PARTY.txt +25 -0
- {opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/METADATA +2 -2
- {opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/RECORD +22 -21
- {opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/LICENSE.txt +0 -0
- {opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/WHEEL +0 -0
- {opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/top_level.txt +0 -0
cv2/LICENSE-3RD-PARTY.txt
CHANGED
|
@@ -3063,3 +3063,28 @@ courts sitting in the State of Delaware, and each party agrees that it submits
|
|
|
3063
3063
|
to the personal jurisdiction and venue of those courts and waives any
|
|
3064
3064
|
objections. THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL
|
|
3065
3065
|
SALE OF GOODS (1980) IS SPECIFICALLY EXCLUDED AND WILL NOT APPLY TO THE SOFTWARE.
|
|
3066
|
+
|
|
3067
|
+
------------------------------------------------------------------------------
|
|
3068
|
+
Orbbec SDK distributed with arm64 MacOS packages.
|
|
3069
|
+
|
|
3070
|
+
MIT License
|
|
3071
|
+
|
|
3072
|
+
Copyright (c) 2023 OrbbecDeveloper
|
|
3073
|
+
|
|
3074
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3075
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3076
|
+
in the Software without restriction, including without limitation the rights
|
|
3077
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3078
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3079
|
+
furnished to do so, subject to the following conditions:
|
|
3080
|
+
|
|
3081
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3082
|
+
copies or substantial portions of the Software.
|
|
3083
|
+
|
|
3084
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3085
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3086
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3087
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3088
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3089
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3090
|
+
SOFTWARE.
|
cv2/__init__.py
CHANGED
|
@@ -33,7 +33,7 @@ def __load_extra_py_code_for_module(base, name, enable_debug_print=False):
|
|
|
33
33
|
# Extension doesn't contain extra py code
|
|
34
34
|
return False
|
|
35
35
|
|
|
36
|
-
if not hasattr(base, name):
|
|
36
|
+
if base in sys.modules and not hasattr(sys.modules[base], name):
|
|
37
37
|
setattr(sys.modules[base], name, py_module)
|
|
38
38
|
sys.modules[export_module_name] = py_module
|
|
39
39
|
# If it is C extension module it is already loaded by cv2 package
|
cv2/__init__.pyi
CHANGED
|
@@ -58,6 +58,7 @@ from cv2 import rgbd as rgbd
|
|
|
58
58
|
from cv2 import saliency as saliency
|
|
59
59
|
from cv2 import samples as samples
|
|
60
60
|
from cv2 import segmentation as segmentation
|
|
61
|
+
from cv2 import signal as signal
|
|
61
62
|
from cv2 import stereo as stereo
|
|
62
63
|
from cv2 import structured_light as structured_light
|
|
63
64
|
from cv2 import text as text
|
|
@@ -255,8 +256,9 @@ INTER_NEAREST_EXACT: int
|
|
|
255
256
|
INTER_MAX: int
|
|
256
257
|
WARP_FILL_OUTLIERS: int
|
|
257
258
|
WARP_INVERSE_MAP: int
|
|
259
|
+
WARP_RELATIVE_MAP: int
|
|
258
260
|
InterpolationFlags = int
|
|
259
|
-
"""One of [INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_AREA, INTER_LANCZOS4, INTER_LINEAR_EXACT, INTER_NEAREST_EXACT, INTER_MAX, WARP_FILL_OUTLIERS, WARP_INVERSE_MAP]"""
|
|
261
|
+
"""One of [INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_AREA, INTER_LANCZOS4, INTER_LINEAR_EXACT, INTER_NEAREST_EXACT, INTER_MAX, WARP_FILL_OUTLIERS, WARP_INVERSE_MAP, WARP_RELATIVE_MAP]"""
|
|
260
262
|
|
|
261
263
|
WARP_POLAR_LINEAR: int
|
|
262
264
|
WARP_POLAR_LOG: int
|
|
@@ -1212,12 +1214,14 @@ IMWRITE_TIFF_RESUNIT: int
|
|
|
1212
1214
|
IMWRITE_TIFF_XDPI: int
|
|
1213
1215
|
IMWRITE_TIFF_YDPI: int
|
|
1214
1216
|
IMWRITE_TIFF_COMPRESSION: int
|
|
1217
|
+
IMWRITE_TIFF_ROWSPERSTRIP: int
|
|
1218
|
+
IMWRITE_TIFF_PREDICTOR: int
|
|
1215
1219
|
IMWRITE_JPEG2000_COMPRESSION_X1000: int
|
|
1216
1220
|
IMWRITE_AVIF_QUALITY: int
|
|
1217
1221
|
IMWRITE_AVIF_DEPTH: int
|
|
1218
1222
|
IMWRITE_AVIF_SPEED: int
|
|
1219
1223
|
ImwriteFlags = int
|
|
1220
|
-
"""One of [IMWRITE_JPEG_QUALITY, IMWRITE_JPEG_PROGRESSIVE, IMWRITE_JPEG_OPTIMIZE, IMWRITE_JPEG_RST_INTERVAL, IMWRITE_JPEG_LUMA_QUALITY, IMWRITE_JPEG_CHROMA_QUALITY, IMWRITE_JPEG_SAMPLING_FACTOR, IMWRITE_PNG_COMPRESSION, IMWRITE_PNG_STRATEGY, IMWRITE_PNG_BILEVEL, IMWRITE_PXM_BINARY, IMWRITE_EXR_TYPE, IMWRITE_EXR_COMPRESSION, IMWRITE_EXR_DWA_COMPRESSION_LEVEL, IMWRITE_WEBP_QUALITY, IMWRITE_HDR_COMPRESSION, IMWRITE_PAM_TUPLETYPE, IMWRITE_TIFF_RESUNIT, IMWRITE_TIFF_XDPI, IMWRITE_TIFF_YDPI, IMWRITE_TIFF_COMPRESSION, IMWRITE_JPEG2000_COMPRESSION_X1000, IMWRITE_AVIF_QUALITY, IMWRITE_AVIF_DEPTH, IMWRITE_AVIF_SPEED]"""
|
|
1224
|
+
"""One of [IMWRITE_JPEG_QUALITY, IMWRITE_JPEG_PROGRESSIVE, IMWRITE_JPEG_OPTIMIZE, IMWRITE_JPEG_RST_INTERVAL, IMWRITE_JPEG_LUMA_QUALITY, IMWRITE_JPEG_CHROMA_QUALITY, IMWRITE_JPEG_SAMPLING_FACTOR, IMWRITE_PNG_COMPRESSION, IMWRITE_PNG_STRATEGY, IMWRITE_PNG_BILEVEL, IMWRITE_PXM_BINARY, IMWRITE_EXR_TYPE, IMWRITE_EXR_COMPRESSION, IMWRITE_EXR_DWA_COMPRESSION_LEVEL, IMWRITE_WEBP_QUALITY, IMWRITE_HDR_COMPRESSION, IMWRITE_PAM_TUPLETYPE, IMWRITE_TIFF_RESUNIT, IMWRITE_TIFF_XDPI, IMWRITE_TIFF_YDPI, IMWRITE_TIFF_COMPRESSION, IMWRITE_TIFF_ROWSPERSTRIP, IMWRITE_TIFF_PREDICTOR, IMWRITE_JPEG2000_COMPRESSION_X1000, IMWRITE_AVIF_QUALITY, IMWRITE_AVIF_DEPTH, IMWRITE_AVIF_SPEED]"""
|
|
1221
1225
|
|
|
1222
1226
|
IMWRITE_JPEG_SAMPLING_FACTOR_411: int
|
|
1223
1227
|
IMWRITE_JPEG_SAMPLING_FACTOR_420: int
|
|
@@ -1227,6 +1231,48 @@ IMWRITE_JPEG_SAMPLING_FACTOR_444: int
|
|
|
1227
1231
|
ImwriteJPEGSamplingFactorParams = int
|
|
1228
1232
|
"""One of [IMWRITE_JPEG_SAMPLING_FACTOR_411, IMWRITE_JPEG_SAMPLING_FACTOR_420, IMWRITE_JPEG_SAMPLING_FACTOR_422, IMWRITE_JPEG_SAMPLING_FACTOR_440, IMWRITE_JPEG_SAMPLING_FACTOR_444]"""
|
|
1229
1233
|
|
|
1234
|
+
IMWRITE_TIFF_COMPRESSION_NONE: int
|
|
1235
|
+
IMWRITE_TIFF_COMPRESSION_CCITTRLE: int
|
|
1236
|
+
IMWRITE_TIFF_COMPRESSION_CCITTFAX3: int
|
|
1237
|
+
IMWRITE_TIFF_COMPRESSION_CCITT_T4: int
|
|
1238
|
+
IMWRITE_TIFF_COMPRESSION_CCITTFAX4: int
|
|
1239
|
+
IMWRITE_TIFF_COMPRESSION_CCITT_T6: int
|
|
1240
|
+
IMWRITE_TIFF_COMPRESSION_LZW: int
|
|
1241
|
+
IMWRITE_TIFF_COMPRESSION_OJPEG: int
|
|
1242
|
+
IMWRITE_TIFF_COMPRESSION_JPEG: int
|
|
1243
|
+
IMWRITE_TIFF_COMPRESSION_T85: int
|
|
1244
|
+
IMWRITE_TIFF_COMPRESSION_T43: int
|
|
1245
|
+
IMWRITE_TIFF_COMPRESSION_NEXT: int
|
|
1246
|
+
IMWRITE_TIFF_COMPRESSION_CCITTRLEW: int
|
|
1247
|
+
IMWRITE_TIFF_COMPRESSION_PACKBITS: int
|
|
1248
|
+
IMWRITE_TIFF_COMPRESSION_THUNDERSCAN: int
|
|
1249
|
+
IMWRITE_TIFF_COMPRESSION_IT8CTPAD: int
|
|
1250
|
+
IMWRITE_TIFF_COMPRESSION_IT8LW: int
|
|
1251
|
+
IMWRITE_TIFF_COMPRESSION_IT8MP: int
|
|
1252
|
+
IMWRITE_TIFF_COMPRESSION_IT8BL: int
|
|
1253
|
+
IMWRITE_TIFF_COMPRESSION_PIXARFILM: int
|
|
1254
|
+
IMWRITE_TIFF_COMPRESSION_PIXARLOG: int
|
|
1255
|
+
IMWRITE_TIFF_COMPRESSION_DEFLATE: int
|
|
1256
|
+
IMWRITE_TIFF_COMPRESSION_ADOBE_DEFLATE: int
|
|
1257
|
+
IMWRITE_TIFF_COMPRESSION_DCS: int
|
|
1258
|
+
IMWRITE_TIFF_COMPRESSION_JBIG: int
|
|
1259
|
+
IMWRITE_TIFF_COMPRESSION_SGILOG: int
|
|
1260
|
+
IMWRITE_TIFF_COMPRESSION_SGILOG24: int
|
|
1261
|
+
IMWRITE_TIFF_COMPRESSION_JP2000: int
|
|
1262
|
+
IMWRITE_TIFF_COMPRESSION_LERC: int
|
|
1263
|
+
IMWRITE_TIFF_COMPRESSION_LZMA: int
|
|
1264
|
+
IMWRITE_TIFF_COMPRESSION_ZSTD: int
|
|
1265
|
+
IMWRITE_TIFF_COMPRESSION_WEBP: int
|
|
1266
|
+
IMWRITE_TIFF_COMPRESSION_JXL: int
|
|
1267
|
+
ImwriteTiffCompressionFlags = int
|
|
1268
|
+
"""One of [IMWRITE_TIFF_COMPRESSION_NONE, IMWRITE_TIFF_COMPRESSION_CCITTRLE, IMWRITE_TIFF_COMPRESSION_CCITTFAX3, IMWRITE_TIFF_COMPRESSION_CCITT_T4, IMWRITE_TIFF_COMPRESSION_CCITTFAX4, IMWRITE_TIFF_COMPRESSION_CCITT_T6, IMWRITE_TIFF_COMPRESSION_LZW, IMWRITE_TIFF_COMPRESSION_OJPEG, IMWRITE_TIFF_COMPRESSION_JPEG, IMWRITE_TIFF_COMPRESSION_T85, IMWRITE_TIFF_COMPRESSION_T43, IMWRITE_TIFF_COMPRESSION_NEXT, IMWRITE_TIFF_COMPRESSION_CCITTRLEW, IMWRITE_TIFF_COMPRESSION_PACKBITS, IMWRITE_TIFF_COMPRESSION_THUNDERSCAN, IMWRITE_TIFF_COMPRESSION_IT8CTPAD, IMWRITE_TIFF_COMPRESSION_IT8LW, IMWRITE_TIFF_COMPRESSION_IT8MP, IMWRITE_TIFF_COMPRESSION_IT8BL, IMWRITE_TIFF_COMPRESSION_PIXARFILM, IMWRITE_TIFF_COMPRESSION_PIXARLOG, IMWRITE_TIFF_COMPRESSION_DEFLATE, IMWRITE_TIFF_COMPRESSION_ADOBE_DEFLATE, IMWRITE_TIFF_COMPRESSION_DCS, IMWRITE_TIFF_COMPRESSION_JBIG, IMWRITE_TIFF_COMPRESSION_SGILOG, IMWRITE_TIFF_COMPRESSION_SGILOG24, IMWRITE_TIFF_COMPRESSION_JP2000, IMWRITE_TIFF_COMPRESSION_LERC, IMWRITE_TIFF_COMPRESSION_LZMA, IMWRITE_TIFF_COMPRESSION_ZSTD, IMWRITE_TIFF_COMPRESSION_WEBP, IMWRITE_TIFF_COMPRESSION_JXL]"""
|
|
1269
|
+
|
|
1270
|
+
IMWRITE_TIFF_PREDICTOR_NONE: int
|
|
1271
|
+
IMWRITE_TIFF_PREDICTOR_HORIZONTAL: int
|
|
1272
|
+
IMWRITE_TIFF_PREDICTOR_FLOATINGPOINT: int
|
|
1273
|
+
ImwriteTiffPredictorFlags = int
|
|
1274
|
+
"""One of [IMWRITE_TIFF_PREDICTOR_NONE, IMWRITE_TIFF_PREDICTOR_HORIZONTAL, IMWRITE_TIFF_PREDICTOR_FLOATINGPOINT]"""
|
|
1275
|
+
|
|
1230
1276
|
IMWRITE_EXR_TYPE_HALF: int
|
|
1231
1277
|
IMWRITE_EXR_TYPE_FLOAT: int
|
|
1232
1278
|
ImwriteEXRTypeFlags = int
|
|
@@ -2272,6 +2318,8 @@ class RotatedRect:
|
|
|
2272
2318
|
|
|
2273
2319
|
def boundingRect(self) -> cv2.typing.Rect: ...
|
|
2274
2320
|
|
|
2321
|
+
def boundingRect2f(self) -> cv2.typing.Rect2f: ...
|
|
2322
|
+
|
|
2275
2323
|
|
|
2276
2324
|
class KeyPoint:
|
|
2277
2325
|
pt: cv2.typing.Point2f
|
|
@@ -4146,6 +4194,10 @@ class VariationalRefinement(DenseOpticalFlow):
|
|
|
4146
4194
|
|
|
4147
4195
|
def setGamma(self, val: float) -> None: ...
|
|
4148
4196
|
|
|
4197
|
+
def getEpsilon(self) -> float: ...
|
|
4198
|
+
|
|
4199
|
+
def setEpsilon(self, val: float) -> None: ...
|
|
4200
|
+
|
|
4149
4201
|
@classmethod
|
|
4150
4202
|
def create(cls) -> VariationalRefinement: ...
|
|
4151
4203
|
|
|
@@ -4184,6 +4236,10 @@ class DISOpticalFlow(DenseOpticalFlow):
|
|
|
4184
4236
|
|
|
4185
4237
|
def setVariationalRefinementGamma(self, val: float) -> None: ...
|
|
4186
4238
|
|
|
4239
|
+
def getVariationalRefinementEpsilon(self) -> float: ...
|
|
4240
|
+
|
|
4241
|
+
def setVariationalRefinementEpsilon(self, val: float) -> None: ...
|
|
4242
|
+
|
|
4187
4243
|
def getUseMeanNormalization(self) -> bool: ...
|
|
4188
4244
|
|
|
4189
4245
|
def setUseMeanNormalization(self, val: bool) -> None: ...
|
|
@@ -4370,7 +4426,10 @@ class GKernelPackage:
|
|
|
4370
4426
|
|
|
4371
4427
|
class GMat:
|
|
4372
4428
|
# Functions
|
|
4429
|
+
@_typing.overload
|
|
4373
4430
|
def __init__(self) -> None: ...
|
|
4431
|
+
@_typing.overload
|
|
4432
|
+
def __init__(self, m: cv2.typing.MatLike) -> None: ...
|
|
4374
4433
|
|
|
4375
4434
|
|
|
4376
4435
|
class GMatDesc:
|
|
@@ -5230,6 +5289,8 @@ def createTonemapReinhard(gamma: float = ..., intensity: float = ..., light_adap
|
|
|
5230
5289
|
|
|
5231
5290
|
def cubeRoot(val: float) -> float: ...
|
|
5232
5291
|
|
|
5292
|
+
def currentUIFramework() -> str: ...
|
|
5293
|
+
|
|
5233
5294
|
@_typing.overload
|
|
5234
5295
|
def cvtColor(src: cv2.typing.MatLike, code: int, dst: cv2.typing.MatLike | None = ..., dstCn: int = ...) -> cv2.typing.MatLike: ...
|
|
5235
5296
|
@_typing.overload
|
|
@@ -5537,6 +5598,15 @@ def findContours(image: cv2.typing.MatLike, mode: int, method: int, contours: _t
|
|
|
5537
5598
|
@_typing.overload
|
|
5538
5599
|
def findContours(image: UMat, mode: int, method: int, contours: _typing.Sequence[UMat] | None = ..., hierarchy: UMat | None = ..., offset: cv2.typing.Point = ...) -> tuple[_typing.Sequence[UMat], UMat]: ...
|
|
5539
5600
|
|
|
5601
|
+
@_typing.overload
|
|
5602
|
+
def findContoursLinkRuns(image: cv2.typing.MatLike, contours: _typing.Sequence[cv2.typing.MatLike] | None = ..., hierarchy: cv2.typing.MatLike | None = ...) -> tuple[_typing.Sequence[cv2.typing.MatLike], cv2.typing.MatLike]: ...
|
|
5603
|
+
@_typing.overload
|
|
5604
|
+
def findContoursLinkRuns(image: UMat, contours: _typing.Sequence[UMat] | None = ..., hierarchy: UMat | None = ...) -> tuple[_typing.Sequence[UMat], UMat]: ...
|
|
5605
|
+
@_typing.overload
|
|
5606
|
+
def findContoursLinkRuns(image: cv2.typing.MatLike, contours: _typing.Sequence[cv2.typing.MatLike] | None = ...) -> _typing.Sequence[cv2.typing.MatLike]: ...
|
|
5607
|
+
@_typing.overload
|
|
5608
|
+
def findContoursLinkRuns(image: UMat, contours: _typing.Sequence[UMat] | None = ...) -> _typing.Sequence[UMat]: ...
|
|
5609
|
+
|
|
5540
5610
|
@_typing.overload
|
|
5541
5611
|
def findEssentialMat(points1: cv2.typing.MatLike, points2: cv2.typing.MatLike, cameraMatrix: cv2.typing.MatLike, method: int = ..., prob: float = ..., threshold: float = ..., maxIters: int = ..., mask: cv2.typing.MatLike | None = ...) -> tuple[cv2.typing.MatLike, cv2.typing.MatLike]: ...
|
|
5542
5612
|
@_typing.overload
|
|
@@ -5779,7 +5849,12 @@ def imencode(ext: str, img: cv2.typing.MatLike, params: _typing.Sequence[int] =
|
|
|
5779
5849
|
@_typing.overload
|
|
5780
5850
|
def imencode(ext: str, img: UMat, params: _typing.Sequence[int] = ...) -> tuple[bool, numpy.ndarray[_typing.Any, numpy.dtype[numpy.uint8]]]: ...
|
|
5781
5851
|
|
|
5852
|
+
@_typing.overload
|
|
5782
5853
|
def imread(filename: str, flags: int = ...) -> cv2.typing.MatLike: ...
|
|
5854
|
+
@_typing.overload
|
|
5855
|
+
def imread(filename: str, dst: cv2.typing.MatLike | None = ..., flags: int = ...) -> cv2.typing.MatLike: ...
|
|
5856
|
+
@_typing.overload
|
|
5857
|
+
def imread(filename: str, dst: UMat | None = ..., flags: int = ...) -> UMat: ...
|
|
5783
5858
|
|
|
5784
5859
|
@_typing.overload
|
|
5785
5860
|
def imreadmulti(filename: str, mats: _typing.Sequence[cv2.typing.MatLike] | None = ..., flags: int = ...) -> tuple[bool, _typing.Sequence[cv2.typing.MatLike]]: ...
|
cv2/barcode/__init__.pyi
CHANGED
|
@@ -23,5 +23,17 @@ class BarcodeDetector(cv2.GraphicalCodeDetector):
|
|
|
23
23
|
@_typing.overload
|
|
24
24
|
def detectAndDecodeWithType(self, img: cv2.UMat, points: cv2.UMat | None = ...) -> tuple[bool, _typing.Sequence[str], _typing.Sequence[str], cv2.UMat]: ...
|
|
25
25
|
|
|
26
|
+
def getDownsamplingThreshold(self) -> float: ...
|
|
27
|
+
|
|
28
|
+
def setDownsamplingThreshold(self, thresh: float) -> BarcodeDetector: ...
|
|
29
|
+
|
|
30
|
+
def getDetectorScales(self) -> _typing.Sequence[float]: ...
|
|
31
|
+
|
|
32
|
+
def setDetectorScales(self, sizes: _typing.Sequence[float]) -> BarcodeDetector: ...
|
|
33
|
+
|
|
34
|
+
def getGradientThreshold(self) -> float: ...
|
|
35
|
+
|
|
36
|
+
def setGradientThreshold(self, thresh: float) -> BarcodeDetector: ...
|
|
37
|
+
|
|
26
38
|
|
|
27
39
|
|
cv2/cv2.pyd
CHANGED
|
Binary file
|
cv2/dnn/__init__.pyi
CHANGED
|
@@ -123,6 +123,8 @@ class Net:
|
|
|
123
123
|
|
|
124
124
|
def dumpToFile(self, path: str) -> None: ...
|
|
125
125
|
|
|
126
|
+
def dumpToPbtxt(self, path: str) -> None: ...
|
|
127
|
+
|
|
126
128
|
def getLayerId(self, layer: str) -> int: ...
|
|
127
129
|
|
|
128
130
|
def getLayerNames(self) -> _typing.Sequence[str]: ...
|
|
@@ -262,6 +264,8 @@ class Model:
|
|
|
262
264
|
|
|
263
265
|
def setInputSwapRB(self, swapRB: bool) -> Model: ...
|
|
264
266
|
|
|
267
|
+
def setOutputNames(self, outNames: _typing.Sequence[str]) -> Model: ...
|
|
268
|
+
|
|
265
269
|
def setInputParams(self, scale: float = ..., size: cv2.typing.Size = ..., mean: cv2.typing.Scalar = ..., swapRB: bool = ..., crop: bool = ...) -> None: ...
|
|
266
270
|
|
|
267
271
|
@_typing.overload
|
cv2/fisheye/__init__.pyi
CHANGED
|
@@ -47,6 +47,11 @@ def projectPoints(objectPoints: cv2.typing.MatLike, rvec: cv2.typing.MatLike, tv
|
|
|
47
47
|
@_typing.overload
|
|
48
48
|
def projectPoints(objectPoints: cv2.UMat, rvec: cv2.UMat, tvec: cv2.UMat, K: cv2.UMat, D: cv2.UMat, imagePoints: cv2.UMat | None = ..., alpha: float = ..., jacobian: cv2.UMat | None = ...) -> tuple[cv2.UMat, cv2.UMat]: ...
|
|
49
49
|
|
|
50
|
+
@_typing.overload
|
|
51
|
+
def solvePnP(objectPoints: cv2.typing.MatLike, imagePoints: cv2.typing.MatLike, cameraMatrix: cv2.typing.MatLike, distCoeffs: cv2.typing.MatLike, rvec: cv2.typing.MatLike | None = ..., tvec: cv2.typing.MatLike | None = ..., useExtrinsicGuess: bool = ..., flags: int = ..., criteria: cv2.typing.TermCriteria = ...) -> tuple[bool, cv2.typing.MatLike, cv2.typing.MatLike]: ...
|
|
52
|
+
@_typing.overload
|
|
53
|
+
def solvePnP(objectPoints: cv2.UMat, imagePoints: cv2.UMat, cameraMatrix: cv2.UMat, distCoeffs: cv2.UMat, rvec: cv2.UMat | None = ..., tvec: cv2.UMat | None = ..., useExtrinsicGuess: bool = ..., flags: int = ..., criteria: cv2.typing.TermCriteria = ...) -> tuple[bool, cv2.UMat, cv2.UMat]: ...
|
|
54
|
+
|
|
50
55
|
@_typing.overload
|
|
51
56
|
def stereoCalibrate(objectPoints: _typing.Sequence[cv2.typing.MatLike], imagePoints1: _typing.Sequence[cv2.typing.MatLike], imagePoints2: _typing.Sequence[cv2.typing.MatLike], K1: cv2.typing.MatLike, D1: cv2.typing.MatLike, K2: cv2.typing.MatLike, D2: cv2.typing.MatLike, imageSize: cv2.typing.Size, R: cv2.typing.MatLike | None = ..., T: cv2.typing.MatLike | None = ..., rvecs: _typing.Sequence[cv2.typing.MatLike] | None = ..., tvecs: _typing.Sequence[cv2.typing.MatLike] | None = ..., flags: int = ..., criteria: cv2.typing.TermCriteria = ...) -> tuple[float, cv2.typing.MatLike, cv2.typing.MatLike, cv2.typing.MatLike, cv2.typing.MatLike, cv2.typing.MatLike, cv2.typing.MatLike, _typing.Sequence[cv2.typing.MatLike], _typing.Sequence[cv2.typing.MatLike]]: ...
|
|
52
57
|
@_typing.overload
|
cv2/gapi/onnx/ep/__init__.pyi
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
__all__: list[str] = []
|
|
2
2
|
|
|
3
|
+
import cv2.typing
|
|
3
4
|
import typing as _typing
|
|
4
5
|
|
|
5
6
|
|
|
@@ -37,6 +38,8 @@ class OpenVINO:
|
|
|
37
38
|
def __init__(self) -> None: ...
|
|
38
39
|
@_typing.overload
|
|
39
40
|
def __init__(self, dev_type: str) -> None: ...
|
|
41
|
+
@_typing.overload
|
|
42
|
+
def __init__(self, params: cv2.typing.map_string_and_string) -> None: ...
|
|
40
43
|
|
|
41
44
|
def cfgCacheDir(self, dir: str) -> OpenVINO: ...
|
|
42
45
|
|
cv2/mat_wrapper/__init__.py
CHANGED
|
@@ -4,15 +4,16 @@ import numpy as np
|
|
|
4
4
|
import cv2 as cv
|
|
5
5
|
from typing import TYPE_CHECKING, Any
|
|
6
6
|
|
|
7
|
-
# Same as cv2.typing.
|
|
7
|
+
# Same as cv2.typing.NumPyArrayNumeric, but avoids circular dependencies
|
|
8
8
|
if TYPE_CHECKING:
|
|
9
|
-
|
|
9
|
+
_NumPyArrayNumeric = np.ndarray[Any, np.dtype[np.integer[Any] | np.floating[Any]]]
|
|
10
10
|
else:
|
|
11
|
-
|
|
11
|
+
_NumPyArrayNumeric = np.ndarray
|
|
12
12
|
|
|
13
13
|
# NumPy documentation: https://numpy.org/doc/stable/user/basics.subclassing.html
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
class Mat(_NumPyArrayNumeric):
|
|
16
17
|
'''
|
|
17
18
|
cv.Mat wrapper for numpy array.
|
|
18
19
|
|
cv2/mcc/__init__.pyi
CHANGED
|
@@ -84,6 +84,8 @@ class CChecker:
|
|
|
84
84
|
|
|
85
85
|
def getBox(self) -> _typing.Sequence[cv2.typing.Point2f]: ...
|
|
86
86
|
|
|
87
|
+
def getColorCharts(self) -> _typing.Sequence[cv2.typing.Point2f]: ...
|
|
88
|
+
|
|
87
89
|
def getChartsRGB(self) -> cv2.typing.MatLike: ...
|
|
88
90
|
|
|
89
91
|
def getChartsYCbCr(self) -> cv2.typing.MatLike: ...
|
cv2/ocl/__init__.pyi
CHANGED
|
Binary file
|
cv2/signal/__init__.pyi
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
__all__: list[str] = []
|
|
2
|
+
|
|
3
|
+
import cv2
|
|
4
|
+
import cv2.typing
|
|
5
|
+
import typing as _typing
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# Functions
|
|
9
|
+
@_typing.overload
|
|
10
|
+
def resampleSignal(inputSignal: cv2.typing.MatLike, inFreq: int, outFreq: int, outSignal: cv2.typing.MatLike | None = ...) -> cv2.typing.MatLike: ...
|
|
11
|
+
@_typing.overload
|
|
12
|
+
def resampleSignal(inputSignal: cv2.UMat, inFreq: int, outFreq: int, outSignal: cv2.UMat | None = ...) -> cv2.UMat: ...
|
|
13
|
+
|
|
14
|
+
|
cv2/typing/__init__.py
CHANGED
|
@@ -15,6 +15,7 @@ __all__ = [
|
|
|
15
15
|
"Range",
|
|
16
16
|
"Rect",
|
|
17
17
|
"Rect2i",
|
|
18
|
+
"Rect2f",
|
|
18
19
|
"Rect2d",
|
|
19
20
|
"Moments",
|
|
20
21
|
"RotatedRect",
|
|
@@ -56,18 +57,18 @@ __all__ = [
|
|
|
56
57
|
"map_int_and_double",
|
|
57
58
|
]
|
|
58
59
|
|
|
59
|
-
import cv2.
|
|
60
|
+
import cv2.mat_wrapper
|
|
61
|
+
import numpy
|
|
62
|
+
import cv2
|
|
60
63
|
import typing as _typing
|
|
61
64
|
import cv2.dnn
|
|
62
|
-
import cv2
|
|
63
|
-
import numpy
|
|
64
|
-
import cv2.mat_wrapper
|
|
65
|
+
import cv2.gapi.wip.draw
|
|
65
66
|
|
|
66
67
|
|
|
67
68
|
if _typing.TYPE_CHECKING:
|
|
68
|
-
|
|
69
|
+
NumPyArrayNumeric = numpy.ndarray[_typing.Any, numpy.dtype[numpy.integer[_typing.Any] | numpy.floating[_typing.Any]]]
|
|
69
70
|
else:
|
|
70
|
-
|
|
71
|
+
NumPyArrayNumeric = numpy.ndarray
|
|
71
72
|
|
|
72
73
|
|
|
73
74
|
if _typing.TYPE_CHECKING:
|
|
@@ -90,7 +91,7 @@ else:
|
|
|
90
91
|
|
|
91
92
|
IntPointer = int
|
|
92
93
|
"""Represents an arbitrary pointer"""
|
|
93
|
-
MatLike = _typing.Union[cv2.mat_wrapper.Mat,
|
|
94
|
+
MatLike = _typing.Union[cv2.mat_wrapper.Mat, NumPyArrayNumeric]
|
|
94
95
|
MatShape = _typing.Sequence[int]
|
|
95
96
|
Size = _typing.Sequence[int]
|
|
96
97
|
"""Required length is 2"""
|
|
@@ -117,10 +118,12 @@ Rect = _typing.Sequence[int]
|
|
|
117
118
|
"""Required length is 4"""
|
|
118
119
|
Rect2i = _typing.Sequence[int]
|
|
119
120
|
"""Required length is 4"""
|
|
121
|
+
Rect2f = _typing.Sequence[float]
|
|
122
|
+
"""Required length is 4"""
|
|
120
123
|
Rect2d = _typing.Sequence[float]
|
|
121
124
|
"""Required length is 4"""
|
|
122
125
|
Moments = _typing.Dict[str, float]
|
|
123
|
-
RotatedRect = _typing.Tuple[Point2f,
|
|
126
|
+
RotatedRect = _typing.Tuple[Point2f, Size2f, float]
|
|
124
127
|
"""Any type providing sequence protocol is supported"""
|
|
125
128
|
TermCriteria = _typing.Tuple[TermCriteria_Type, int, float]
|
|
126
129
|
"""Any type providing sequence protocol is supported"""
|
cv2/version.py
CHANGED
cv2/ximgproc/__init__.pyi
CHANGED
|
@@ -608,9 +608,9 @@ def createFastGlobalSmootherFilter(guide: cv2.UMat, lambda_: float, sigma_color:
|
|
|
608
608
|
def createFastLineDetector(length_threshold: int = ..., distance_threshold: float = ..., canny_th1: float = ..., canny_th2: float = ..., canny_aperture_size: int = ..., do_merge: bool = ...) -> FastLineDetector: ...
|
|
609
609
|
|
|
610
610
|
@_typing.overload
|
|
611
|
-
def createGuidedFilter(guide: cv2.typing.MatLike, radius: int, eps: float) -> GuidedFilter: ...
|
|
611
|
+
def createGuidedFilter(guide: cv2.typing.MatLike, radius: int, eps: float, scale: float = ...) -> GuidedFilter: ...
|
|
612
612
|
@_typing.overload
|
|
613
|
-
def createGuidedFilter(guide: cv2.UMat, radius: int, eps: float) -> GuidedFilter: ...
|
|
613
|
+
def createGuidedFilter(guide: cv2.UMat, radius: int, eps: float, scale: float = ...) -> GuidedFilter: ...
|
|
614
614
|
|
|
615
615
|
@_typing.overload
|
|
616
616
|
def createQuaternionImage(img: cv2.typing.MatLike, qimg: cv2.typing.MatLike | None = ...) -> cv2.typing.MatLike: ...
|
|
@@ -675,9 +675,9 @@ def getDisparityVis(src: cv2.typing.MatLike, dst: cv2.typing.MatLike | None = ..
|
|
|
675
675
|
def getDisparityVis(src: cv2.UMat, dst: cv2.UMat | None = ..., scale: float = ...) -> cv2.UMat: ...
|
|
676
676
|
|
|
677
677
|
@_typing.overload
|
|
678
|
-
def guidedFilter(guide: cv2.typing.MatLike, src: cv2.typing.MatLike, radius: int, eps: float, dst: cv2.typing.MatLike | None = ..., dDepth: int = ...) -> cv2.typing.MatLike: ...
|
|
678
|
+
def guidedFilter(guide: cv2.typing.MatLike, src: cv2.typing.MatLike, radius: int, eps: float, dst: cv2.typing.MatLike | None = ..., dDepth: int = ..., scale: float = ...) -> cv2.typing.MatLike: ...
|
|
679
679
|
@_typing.overload
|
|
680
|
-
def guidedFilter(guide: cv2.UMat, src: cv2.UMat, radius: int, eps: float, dst: cv2.UMat | None = ..., dDepth: int = ...) -> cv2.UMat: ...
|
|
680
|
+
def guidedFilter(guide: cv2.UMat, src: cv2.UMat, radius: int, eps: float, dst: cv2.UMat | None = ..., dDepth: int = ..., scale: float = ...) -> cv2.UMat: ...
|
|
681
681
|
|
|
682
682
|
@_typing.overload
|
|
683
683
|
def jointBilateralFilter(joint: cv2.typing.MatLike, src: cv2.typing.MatLike, d: int, sigmaColor: float, sigmaSpace: float, dst: cv2.typing.MatLike | None = ..., borderType: int = ...) -> cv2.typing.MatLike: ...
|
|
@@ -3063,3 +3063,28 @@ courts sitting in the State of Delaware, and each party agrees that it submits
|
|
|
3063
3063
|
to the personal jurisdiction and venue of those courts and waives any
|
|
3064
3064
|
objections. THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL
|
|
3065
3065
|
SALE OF GOODS (1980) IS SPECIFICALLY EXCLUDED AND WILL NOT APPLY TO THE SOFTWARE.
|
|
3066
|
+
|
|
3067
|
+
------------------------------------------------------------------------------
|
|
3068
|
+
Orbbec SDK distributed with arm64 MacOS packages.
|
|
3069
|
+
|
|
3070
|
+
MIT License
|
|
3071
|
+
|
|
3072
|
+
Copyright (c) 2023 OrbbecDeveloper
|
|
3073
|
+
|
|
3074
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3075
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3076
|
+
in the Software without restriction, including without limitation the rights
|
|
3077
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3078
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3079
|
+
furnished to do so, subject to the following conditions:
|
|
3080
|
+
|
|
3081
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3082
|
+
copies or substantial portions of the Software.
|
|
3083
|
+
|
|
3084
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3085
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3086
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3087
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3088
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3089
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3090
|
+
SOFTWARE.
|
{opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.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.10.0.84
|
|
4
4
|
Summary: Wrapper package for OpenCV python bindings.
|
|
5
5
|
Home-page: https://github.com/opencv/opencv-python
|
|
6
6
|
Maintainer: OpenCV Team
|
|
@@ -51,7 +51,7 @@ Requires-Dist: numpy >=1.19.3 ; python_version >= "3.9"
|
|
|
51
51
|
|
|
52
52
|
### Keep OpenCV Free
|
|
53
53
|
|
|
54
|
-
OpenCV is raising funds to keep the library free for everyone, and we need the support of the entire community to do it. [Donate to OpenCV on
|
|
54
|
+
OpenCV is raising funds to keep the library free for everyone, and we need the support of the entire community to do it. [Donate to OpenCV on Github](https://github.com/sponsors/opencv) to show your support.
|
|
55
55
|
|
|
56
56
|
- [OpenCV on Wheels](#opencv-on-wheels)
|
|
57
57
|
- [Installation and Usage](#installation-and-usage)
|
{opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/RECORD
RENAMED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
cv2/LICENSE-3RD-PARTY.txt,sha256=
|
|
1
|
+
cv2/LICENSE-3RD-PARTY.txt,sha256=CzPFvheBnRDsrRE2DG8r1afffA-AozFKgeKAcNk4GOI,155450
|
|
2
2
|
cv2/LICENSE.txt,sha256=7e8PrB6wjSnTRWP3JHQuB42iUT4ZYTOhLGrZ_wHiYQc,1090
|
|
3
|
-
cv2/__init__.py,sha256=
|
|
4
|
-
cv2/__init__.pyi,sha256=
|
|
3
|
+
cv2/__init__.py,sha256=lXqRv9mP-wehDNeJt8XEaAZWhHa2HjTHrVagAJK5gaU,6793
|
|
4
|
+
cv2/__init__.pyi,sha256=6S--Q3duhP_Kj2aZ5D1DATQlBv7a6sQ-B7uehgpe_c0,314257
|
|
5
5
|
cv2/config-3.py,sha256=3ijHtSE8yhSPCUaZFlhGEbPWbByMQyiAJZ1qOpI4AhM,748
|
|
6
6
|
cv2/config.py,sha256=2eQBuaZzBNacSKSUpIXRBrU04Cv1d2IRwJ8JvWcbKV0,123
|
|
7
|
-
cv2/cv2.pyd,sha256=
|
|
7
|
+
cv2/cv2.pyd,sha256=PUXOw14Q6Yif4Z--Ps9EWepmMAnte8mYqXBTIsxdsBc,89814528
|
|
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_ffmpeg4100_64.dll,sha256=Peg7hFiLPui6zb6oWo-S1IVaMqEQgYOWMxWn2watV0Q,26391552
|
|
11
11
|
cv2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
cv2/version.py,sha256=
|
|
12
|
+
cv2/version.py,sha256=PT0Q2sreYeWEDRHeYxCuCqbeqU_j9uChee1KMiltc3o,96
|
|
13
13
|
cv2/Error/__init__.pyi,sha256=vQNfAGSIi0Hs_kO9KFV3zZv920KEBDcZpdOFnmkZkDg,4194
|
|
14
14
|
cv2/aruco/__init__.pyi,sha256=JCr_drbkIblf5D2NhLu2fHmFgKlmXVtjVfTCqU8Z9zU,26731
|
|
15
|
-
cv2/barcode/__init__.pyi,sha256
|
|
15
|
+
cv2/barcode/__init__.pyi,sha256=-tWHNaRNKDmy741nNDClIeTepyLgToWbbifRL9F2668,1480
|
|
16
16
|
cv2/bgsegm/__init__.pyi,sha256=vbwhQ0qcBpQjs9rNuB9DI9M6tovOd3OXx0Oy9K2dIUA,6885
|
|
17
17
|
cv2/bioinspired/__init__.pyi,sha256=vM8f2ZZcQQN5kWwcw0h1jIoFa1djNa9PHl35REJFdlE,5154
|
|
18
18
|
cv2/ccm/__init__.pyi,sha256=KPMtVRNoTarobq2y54rPeGoMS71Tf4qiZLu_jIqweDk,6462
|
|
@@ -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=7CL1f0cM2lpSzIb6Gvhir37nYE9qxegioGP7J513WjY,23341
|
|
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=W1NDeA0bDnXpOfEnDPeQUhdY8rQIQX25-B-jGBHpBuA,8599
|
|
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
|
|
@@ -58,7 +58,7 @@ cv2/gapi/imgproc/__init__.pyi,sha256=zEBFwED_Pb4i-A70WA7afLjDUCT25hldcLqyIf7aIlc
|
|
|
58
58
|
cv2/gapi/imgproc/fluid/__init__.pyi,sha256=TjQnus2HhRKbZksmRWx8CjEZqLoXuKXILBF3vixp_XI,102
|
|
59
59
|
cv2/gapi/oak/__init__.pyi,sha256=KUOTM-AapO0L1tC4XF3gIYR8tmjmrFfh1Ro0jPzOB7g,1771
|
|
60
60
|
cv2/gapi/onnx/__init__.pyi,sha256=ODUul_Qq-TZln4EXuPRl-SM4xTBwhGi4ffvm4aR0Gzg,1395
|
|
61
|
-
cv2/gapi/onnx/ep/__init__.pyi,sha256=
|
|
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
|
|
64
64
|
cv2/gapi/ov/__init__.pyi,sha256=YGNlLikNzXNvpTSmyCmoT61hdV-HMAzz0hhyQtoC84E,2721
|
|
@@ -82,14 +82,14 @@ cv2/large_kinfu/__init__.pyi,sha256=S4WLB8h59m9L9UlS1R4hIsHufkRLuAN7BSKQX8yaWk4,
|
|
|
82
82
|
cv2/legacy/__init__.pyi,sha256=3AETXCIKxsmegyYxzLLcgVFTBKLI8MxvgDJkOM5cOoI,2364
|
|
83
83
|
cv2/line_descriptor/__init__.pyi,sha256=dOWS4b_fVabxNsnt_Fh8bO1xjZmc7nG8l8LsTU3VDKY,4082
|
|
84
84
|
cv2/linemod/__init__.pyi,sha256=AHlBrqWK2JeWcR2ZieInr1qmruz7-E-sotoGca7Pr4Y,4787
|
|
85
|
-
cv2/mat_wrapper/__init__.py,sha256
|
|
86
|
-
cv2/mcc/__init__.pyi,sha256=
|
|
85
|
+
cv2/mat_wrapper/__init__.py,sha256=xEcH6hx281UYrlcrbBmJ12wq2n6FBDLkGAXf4RLU4wY,1164
|
|
86
|
+
cv2/mcc/__init__.pyi,sha256=x4_6kR6_fxZCw0EmJljFf9DaU7Z9RrFudbv1pgMI5WQ,3288
|
|
87
87
|
cv2/misc/__init__.py,sha256=SVvXlZTM4XRnPjcshcTdj0_98rOnP9RiOVWw1V3g1GI,38
|
|
88
88
|
cv2/misc/version.py,sha256=yTpBh5P8sVubQxbAdBuDNnQOSQ6U87fR6-jNX28jgVw,95
|
|
89
89
|
cv2/ml/__init__.pyi,sha256=80LEjHnLHhPKI8wOyjiLk14WHl7oCgQ9xAwXCLP6YxE,23498
|
|
90
90
|
cv2/motempl/__init__.pyi,sha256=VEYXEtXMdAQ94cSf4YyPZCmjeikb9N0Zwdg4upIvAu8,1599
|
|
91
91
|
cv2/multicalib/__init__.pyi,sha256=MAh8Hf_qjyxcS1ECyIzLWk2JrU2U6IWb6AO5quTViUI,212
|
|
92
|
-
cv2/ocl/__init__.pyi,sha256=
|
|
92
|
+
cv2/ocl/__init__.pyi,sha256=21xbasu56BrLPuqkfeIAVe1gCWByzg4ngBL5Kc4ETnA,5779
|
|
93
93
|
cv2/ogl/__init__.pyi,sha256=BM0glpRfs1M6bDFiTHdHSaUFAaRTozkJNxNXvBkvcps,1523
|
|
94
94
|
cv2/omnidir/__init__.pyi,sha256=UofvReN4PRpsqW5fv_Oap-w-XaITACbcYyRFWpa3YrE,7122
|
|
95
95
|
cv2/optflow/__init__.pyi,sha256=9w168EwR4CX6DYWMxbg-RhERVFaT_-OZTakRdqEE4do,10705
|
|
@@ -104,10 +104,11 @@ cv2/rgbd/__init__.pyi,sha256=cTEk4GpsGJ8XCP3q1z0HPF-nmDDUF-ilOgdC2FDjGeo,17353
|
|
|
104
104
|
cv2/saliency/__init__.pyi,sha256=Ez64S5qdqqXN26S1p_VSa6ZD30Le6qN5PzvrTAsPZtA,3758
|
|
105
105
|
cv2/samples/__init__.pyi,sha256=HnrSW6_dgL9sYkyCZ2qx2SoLNrA05oaI4tCSS4i2TOQ,336
|
|
106
106
|
cv2/segmentation/__init__.pyi,sha256=lvZlHkp75KCijtkNZu3HkOmH9_pN6emzFZ0e421bJ2I,1778
|
|
107
|
+
cv2/signal/__init__.pyi,sha256=4Dk67p6HzAHCKpu_4D_pfKplcl_yo4u3t-LwvwPLjcc,415
|
|
107
108
|
cv2/stereo/__init__.pyi,sha256=h4VWeISZFGYrKKfED8f6plyt9AZRcbOuiyuj8tyLMQ4,2163
|
|
108
109
|
cv2/structured_light/__init__.pyi,sha256=4qQ9MjebJ9cjUbuXqm99-JdTdqWA6f9VmmzUaJSlkE4,4547
|
|
109
110
|
cv2/text/__init__.pyi,sha256=nA5aIm_1iUeJqz_x_a2XkUHH0XIQV3eSymxCmmQxbGk,9438
|
|
110
|
-
cv2/typing/__init__.py,sha256=
|
|
111
|
+
cv2/typing/__init__.py,sha256=5gT28MM5vf2hWNdNDiNwLH_eL8uaZPZzpgMkiIdVOHw,5434
|
|
111
112
|
cv2/utils/__init__.py,sha256=KxaZCzW1aa8cpyOdwQ97JOxi8npGYmseLxJx0uGqNVQ,344
|
|
112
113
|
cv2/utils/__init__.pyi,sha256=A2n4iAX8yr1EA1fOuGdKzIE39uM1gIMbRvlzW-DPZuk,3701
|
|
113
114
|
cv2/utils/fs/__init__.pyi,sha256=BPwL654636kP4k95U4QPp7oMZcgJ2QDIYrb9F8h4c7I,93
|
|
@@ -116,12 +117,12 @@ cv2/videoio_registry/__init__.pyi,sha256=I415CbQV5-31gHTPSYe2Yf6VRSvDpBeWblTyEml
|
|
|
116
117
|
cv2/videostab/__init__.pyi,sha256=EPiTC8NADassKZjIxf_T-Mr13Y-eKTliHRqrNFoq7yk,359
|
|
117
118
|
cv2/wechat_qrcode/__init__.pyi,sha256=APhBbME2kpZDh37f_9vHxsw_CN-jWnS5FdA_983dHPU,854
|
|
118
119
|
cv2/xfeatures2d/__init__.pyi,sha256=VKi38TPh7GPEgBpcikYIlMx1EEFRJSni8Q1Sl2RP9fE,17597
|
|
119
|
-
cv2/ximgproc/__init__.pyi,sha256=
|
|
120
|
+
cv2/ximgproc/__init__.pyi,sha256=6Sq2yegR2wbGF3eef3pZXWRrOHaeZkjhuzelznXpqRM,33263
|
|
120
121
|
cv2/ximgproc/segmentation/__init__.pyi,sha256=v6ju1fo9wwcnElKYZxkdNdVwTaM0y9JPLlDhgQchgP4,4563
|
|
121
122
|
cv2/xphoto/__init__.pyi,sha256=NuwaRzJKl_mlPg7sX56xB0Lr7DgpuvVZRsELinzHlvI,5706
|
|
122
|
-
opencv_contrib_python-4.
|
|
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.
|
|
123
|
+
opencv_contrib_python-4.10.0.84.dist-info/LICENSE-3RD-PARTY.txt,sha256=CzPFvheBnRDsrRE2DG8r1afffA-AozFKgeKAcNk4GOI,155450
|
|
124
|
+
opencv_contrib_python-4.10.0.84.dist-info/LICENSE.txt,sha256=7e8PrB6wjSnTRWP3JHQuB42iUT4ZYTOhLGrZ_wHiYQc,1090
|
|
125
|
+
opencv_contrib_python-4.10.0.84.dist-info/METADATA,sha256=X0x9OX28gspQhM6lVUO5Fq7rQoSZX31TRXYIkIO_Vw4,20572
|
|
126
|
+
opencv_contrib_python-4.10.0.84.dist-info/WHEEL,sha256=PewdnsL2M9buuqkVnhqR5R0Zpn3GIkbsKkNiamT5qME,94
|
|
127
|
+
opencv_contrib_python-4.10.0.84.dist-info/top_level.txt,sha256=SY8vrf_sYOg99OP9euhz7q36pPy_2VK5vbeEWXwwSoc,4
|
|
128
|
+
opencv_contrib_python-4.10.0.84.dist-info/RECORD,,
|
{opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/LICENSE.txt
RENAMED
|
File without changes
|
{opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/WHEEL
RENAMED
|
File without changes
|
{opencv_contrib_python-4.9.0.80.dist-info → opencv_contrib_python-4.10.0.84.dist-info}/top_level.txt
RENAMED
|
File without changes
|