Matplotlib is hiring a Research Software Engineering Fellow! See discourse for details. Apply by January 3, 2020
matplotlib.image
¶图像模块支持基本的图像加载、重新缩放和显示操作。
matplotlib.image.
AxesImage
(ax, cmap=None, norm=None, interpolation=None, origin=None, extent=None, filternorm=1, filterrad=4.0, resample=False, **kwargs)[源代码]¶基类:matplotlib.image._ImageBase
插值和CMAP默认为其RC设置
CMAP是一种颜色。颜色映射实例norm是一种颜色。规范化实例以将亮度映射到0-1
范围是数据轴(左、右、下、上),用于将图像绘图注册到数据绘图中。默认设置是使用基于零的行和列索引标记像素中心。
其他Kwarg是Matplotlib.Artist属性
matplotlib.image.
BboxImage
(bbox, cmap=None, norm=None, interpolation=None, origin=None, filternorm=1, filterrad=4.0, resample=False, interp_at_native=True, **kwargs)[源代码]¶基类:matplotlib.image._ImageBase
其大小由给定bbox确定的图像类。
CMAP是一种颜色。颜色映射实例norm是一种颜色。规范化实例以将亮度映射到0-1
interp_at_native是一个标志,用于确定当图像以其本机分辨率显示时,是否仍应应用插值。这种方法的一个常见使用案例是,为了注释目的显示图像时;它的处理方式与Photoshop类似(仅当以非本机分辨率显示图像时才使用插值)。
Kwargs是艺术家关键字args的可选列表
matplotlib.image.
FigureImage
(fig, cmap=None, norm=None, offsetx=0, offsety=0, origin=None, **kwargs)[源代码]¶基类:matplotlib.image._ImageBase
CMAP是一种颜色。颜色映射实例norm是一种颜色。规范化实例以将亮度映射到0-1
Kwargs是艺术家关键字args的可选列表
zorder
= 0¶matplotlib.image.
NonUniformImage
(ax, *, interpolation='nearest', **kwargs)[源代码]¶Kwarg与Axesimage的Kwarg相同,只是“最近”和“双线性”是唯一受支持的“插值”选项。
matplotlib.image.
PcolorImage
(ax, x=None, y=None, A=None, cmap=None, norm=None, **kwargs)[源代码]¶使用不规则的矩形网格绘制PColor样式的绘图。
它使用原始不规则图像代码的变体,并由pcolorfast用于对应的网格类型。
CMAP默认为其RC设置
CMAP是一种颜色。颜色映射实例norm是一种颜色。规范化实例以将亮度映射到0-1
其他Kwarg是Matplotlib.Artist属性
matplotlib.image.
composite_images
(images, renderer, magnification=1.0)[源代码]¶将多个rgba图像合成一个。这些图像按它们在 images
名单。
参数: |
|
---|---|
返回: |
|
matplotlib.image.
imread
(fname, format=None)[源代码]¶将文件中的图像读取到数组中。
参数: |
|
---|---|
返回: |
|
笔记
Matplotlib只能本机读取PNG。通过对枕头的可选依赖性支持进一步的图像格式。注意,URL字符串与枕头不兼容。检查 Pillow documentation 更多信息。
matplotlib.image.
imsave
(fname, arr, vmin=None, vmax=None, cmap=None, format=None, origin=None, dpi=100)[源代码]¶将数组另存为图像文件。
可用的输出格式取决于所使用的后端。
参数: |
|
---|
matplotlib.image.
pil_to_array
(pilImage)[源代码]¶加载A PIL image 并将其作为numpy数组返回。
返回: |
|
---|