使用 numpy生成一张RGB三次维均是255的图像
时间: 2023-05-10 17:55:46 浏览: 84
numpy对图片简单处理
可以使用以下代码生成一张RGB三次维均是255的图像:
```python
import numpy as np
# 创建一个3x3的全为255的三维数组
img = np.full((3, 3, 3), 255, dtype=np.uint8)
# 打印生成的图像
print(img)
```
输出结果:
```
[[[255 255 255]
[255 255 255]
[255 255 255]]
[[255 255 255]
[255 255 255]
[255 255 255]]
[[255 255 255]
[255 255 255]
[255 255 255]]]
```
阅读全文