initial commit
This commit is contained in:
14
venv/lib/python3.11/site-packages/cv2/utils/__init__.py
Normal file
14
venv/lib/python3.11/site-packages/cv2/utils/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from collections import namedtuple
|
||||
|
||||
import cv2
|
||||
|
||||
|
||||
NativeMethodPatchedResult = namedtuple("NativeMethodPatchedResult",
|
||||
("py", "native"))
|
||||
|
||||
|
||||
def testOverwriteNativeMethod(arg):
|
||||
return NativeMethodPatchedResult(
|
||||
arg + 1,
|
||||
cv2.utils._native.testOverwriteNativeMethod(arg)
|
||||
)
|
||||
Reference in New Issue
Block a user