Intelegentny_Pszczelarz/.venv/Lib/site-packages/cv2/utils/__init__.py

15 lines
330 B
Python
Raw Normal View History

2023-06-19 00:49:18 +02:00
from collections import namedtuple
import cv2
NativeMethodPatchedResult = namedtuple("NativeMethodPatchedResult",
("py", "native"))
def testOverwriteNativeMethod(arg):
return NativeMethodPatchedResult(
arg + 1,
cv2.utils._native.testOverwriteNativeMethod(arg)
)