You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a function cv2.GaussianBlur with the following parameters: (src: MatLike, ksize: Size, sigmaX: float, dst: MatLike | None = ..., sigmaY: float = ..., borderType: int = ...). I suggest moving the dst parameter next to src for improved clarity. Like: (src: MatLike, dst: MatLike | None = ..., ksize: Size, sigmaX: float, sigmaY: float = ..., borderType: int = ...)
opencv-python 4.10.0.82
The text was updated successfully, but these errors were encountered:
There is a function cv2.GaussianBlur with the following parameters: (src: MatLike, ksize: Size, sigmaX: float, dst: MatLike | None = ..., sigmaY: float = ..., borderType: int = ...). I suggest moving the dst parameter next to src for improved clarity. Like: (src: MatLike, dst: MatLike | None = ..., ksize: Size, sigmaX: float, sigmaY: float = ..., borderType: int = ...)
opencv-python 4.10.0.82
The text was updated successfully, but these errors were encountered: