fix: typing annotations for cv2.Mat, see #5

This commit is contained in:
2023-07-07 13:32:44 +08:00
parent e01f6cd6bc
commit 922fed8efe
7 changed files with 16 additions and 8 deletions

View File

@ -5,7 +5,6 @@ from cv2 import (
CHAIN_APPROX_SIMPLE,
RETR_EXTERNAL,
TM_CCOEFF_NORMED,
Mat,
boundingRect,
findContours,
imshow,
@ -25,6 +24,7 @@ from .template import (
load_builtin_digit_template,
matchTemplateMultiple,
)
from .types import Mat
__all__ = [
"group_numbers",