e:\moyu\lei.py:65: DeprecationWarning: The binary mode of fromstring is deprecated, as it behaves surprisingly on unicode inputs. Use frombuffer instead img = np.fromstring(bmpstr, dtype='uint8')
时间: 2024-03-22 18:38:16 浏览: 119
这个警告表示您正在使用已经不推荐使用的函数 `numpy.fromstring()` 来读取图像数据。这个函数在处理 unicode 编码的输入时表现出意外的行为,因此建议使用 `numpy.frombuffer()` 函数代替。您可以将 `bmpstr` 转换为一个 bytes 对象,然后使用 `frombuffer()` 函数来读取图像数据。例如,您可以使用以下代码:
```python
img = np.frombuffer(bmpstr.encode(), dtype='uint8')
```
这将把 `bmpstr` 转换为一个 bytes 对象,并使用 `frombuffer()` 函数读取图像数据。这样就可以避免这个警告了。
相关问题
remote: Permission to 0moyu0/elective-system.git denied to 0moyu0.
这个问题可能涉及到具体的技术细节,我可以尝试帮您解决这个问题。请问您是否已经在本地设置了正确的 SSH key,并且将其添加到您的 GitHub 账户中?如果没有,请先进行这些步骤,然后再尝试推送您的代码。
2 21 C:\Users\moyu\Desktop\10.26.cpp [Error] graphics.h: No such file or directory
这个错误通常是因为你的编译器不支持 graphics.h 头文件,或者你没有将 graphics.h 头文件放在正确的位置。graphics.h 是一个非标准的头文件,只有 Borland C++ 编译器支持它。如果你使用的是其他编译器,你需要使用其他的图形库,如 OpenGL 或 SDL。如果你确信你的编译器支持 graphics.h,那么你需要将 graphics.h 头文件放在正确的位置,或者在编译选项中添加正确的路径。
阅读全文