Files
Automaaval/dist/zacatraz/_internal/cv2/utils/__init__.py
T

15 lines
330 B
Python
Raw Normal View History

2026-03-14 21:48:05 +00:00
from collections import namedtuple
import cv2
NativeMethodPatchedResult = namedtuple("NativeMethodPatchedResult",
("py", "native"))
def testOverwriteNativeMethod(arg):
return NativeMethodPatchedResult(
arg + 1,
cv2.utils._native.testOverwriteNativeMethod(arg)
)