xception has occurred: error OpenCV(4.7.0) :-1: error: (-5:Bad argument) in function 'warpAffine' > Overload resolution failed: > - M is not a numpy array, neither a scalar > - Expected Ptr<cv::UMat> for argument 'M' File "C:\Users\tengyun\Desktop\lab4\Harris.py", line 221, in rotateImage rotate = cv2.warpAffine(src, RotateMatrix, (w, h), borderValue=(50, 46, 65)) File "C:\Users\tengyun\Desktop\lab4\Harris.py", line 256, in <module> rotate = rotateImage(img, degree) cv2.error: OpenCV(4.7.0) :-1: error: (-5:Bad argument) in function 'warpAffine' > Overload resolution failed: > - M is not a numpy array, neither a scalar > - Expected Ptr<cv::UMat> for argument 'M'
时间: 2024-04-02 08:33:15 浏览: 170
这个错误通常意味着你在使用 OpenCV 的 warpAffine 函数时,传递了错误的参数类型。根据错误信息,可能是你传递了一个非 numpy 数组或者标量值,或者在参数 'M' 的位置上需要传递一个 Ptr<cv::UMat> 类型的指针,但是你传递了其他类型的值。请检查你的代码,确保你传递给 warpAffine 函数的所有参数类型都正确。可能的解决方案包括:使用正确类型的数组或标量值、使用 cv::UMat 类型的指针、或者对数组进行类型转换。另外,你还可以检查一下 OpenCV 的版本是否正确,以及是否需要添加额外的库或依赖项。
相关问题
xception has occurred: JSONDecodeError Expecting ':' delimiter: line 1 column 143 (char 142)
这个错误通常是由于JSON格式不正确引起的。JSON是一种轻量级的数据交换格式,常用于前后端数据传输。在JSON中,每个键值对之间必须用冒号分隔,而在这个错误中,JSON解析器在第1行第143个字符处找到了一个无法识别的字符,导致解析失败。要解决这个问题,你需要检查JSON字符串的格式是否正确,特别是检查冒号是否正确使用。如果你无法确定JSON字符串的格式是否正确,可以使用在线JSON验证器进行验证。以下是一个例子:
```python
import json
json_str = '{"name": "John", "age": 30, "city": "New York"}'
try:
data = json.loads(json_str)
print(data)
except json.JSONDecodeError as e:
print("JSON格式错误:", e.msg)
print("错误位置:", e.pos)
```
在这个例子中,我们使用json.loads()函数将JSON字符串转换为Python字典。如果JSON格式不正确,将会抛出JSONDecodeError异常,并显示错误消息和错误位置。你可以根据这些信息来调试你的JSON字符串。
xception has occurred: ConnectionError HTTPSConnectionPool(host='wuxi.ke.com', port=443): Max retries exceeded with url: /ershoufang/pg1?kw=%E5%A4%A7%E6%88%90%E5%B7%B7 (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x0000014B808342D0>: Failed to resolve 'wuxi.ke.com' ([Errno 11001] getaddrinfo failed)")) socket.gaierror: [Errno 11001] getaddrinfo failed
这个错误是因为Python无法解析`wuxi.ke.com`域名的IP地址,导致连接失败。
这可能是因为你的网络连接存在问题,或者是你的防火墙/代理服务器阻止了Python程序的访问。
你可以先尝试使用浏览器访问`https://wuxi.ke.com/ershoufang/pg1?kw=%E5%A4%A7%E6%88%90%E5%B7%B7`,看看能否正常打开页面。
如果你能够正常访问该页面,那么可能是你的Python程序被防火墙/代理服务器拦截了。你可以尝试在Python程序中设置代理服务器,如下所示:
```python
import requests
proxies = {
'http': 'http://yourproxyserver:port',
'https': 'http://yourproxyserver:port',
}
response = requests.get('https://wuxi.ke.com/ershoufang/pg1?kw=%E5%A4%A7%E6%88%90%E5%B7%B7', proxies=proxies)
```
其中`yourproxyserver`和`port`需要替换成你的代理服务器的地址和端口号。
如果你仍然无法访问该页面,那么可能是你的网络连接存在问题。你可以尝试重启路由器或者联系你的网络服务提供商解决问题。
阅读全文