报错 Python-OpenCV AttributeError: module 'cv2.cv2' has no attribute 'Sobe1'

打不开相关文件
AttributeError: module 'cv2.cv2' has no attribute 'Sobe1'
有分析贴说是opencv-python、opencv-contrib-python版本问题
重新下载安装同一版本后依然无法运行
图片说明
以下是源代码

#coding: utf-8
#sample5-2-3.py

import cv2
import numpy as np

try:
    img = cv2.imread(r'C:\Users\www09\Desktop\LIYIAKNG1\sample01.png', cv2.IMREAD_COLOR)
    if img is None:
        raise FileNotFoundError('ファイルが見つかりません')


    cv2.imshow('sample01', img)

    sob1 = cv2.Sobe1(img, ddepth=-1, dx=0, dy=1)
    cv2.imshow('sample01', sob1)


    cv2.waitKey(0)
    cv2.destroyAllwindows()

except FileNotFoundError as e:
    print(e)

https://blog.csdn.net/oYeZhou/article/details/82465742