mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
chg: [mypy] fixed mypy issue
This commit is contained in:
parent
871f1f60b4
commit
b6c8cc3d35
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ def shi_tomashi(
|
||||||
"""
|
"""
|
||||||
image = cv2.imread(image_path)
|
image = cv2.imread(image_path)
|
||||||
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
|
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
|
||||||
corners: Union[int, List[Any]] = cv2.goodFeaturesToTrack(
|
corners: np.signedinteger[Any] = cv2.goodFeaturesToTrack(
|
||||||
gray, max_corners, quality, min_distance)
|
gray, max_corners, quality, min_distance)
|
||||||
corners = np.int0(corners)
|
corners = np.int0(corners)
|
||||||
i = 0
|
i = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue