python中rgb颜色_在matplotlib中只打印一种rgb颜色

这只提供一种颜色:import matplotlib.pyplot as plt

plt.imshow([[(0, 0, 1)]])

zk1Hi.png

^{pr2}$

LnFlI.png

您需要MxNx3的形状:>>> import numpy as np

>>> np.array([[(0.5, 0.5, 0.5)]]).shape

(1, 1, 3)

这里M和N是1。在plt.imshow(X, ...)

X : array_like, shape (n, m) or (n, m, 3) or (n, m, 4)

Display the image in X to current axes. X may be a float

array, a uint8 array or a PIL image. If X is an array, it

can have the following shapes:MxN luminance (grayscale, float array only)

MxNx3 RGB (float or uint8 array)

MxNx4 RGBA (float or uint8 array)

The value for each component of MxNx3 and MxNx4 float arrays

should be in the range 0.0 to 1.0; MxN float arrays may be

normalised.

您需要在0和1之间转换int float:from __future__ import division # need for Python 2 only

plt.imshow([[(100 / 255, 100 / 255, 200 / 255)]])

41Nnb.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值