plt.imshow()参数

matplotlib.pyplot.imshow(X, cmap=None, norm=None, aspect=None, interpolation=None, alpha=None, vmin=None, vmax=None, origin=None, extent=None, shape=, filternorm=1, filterrad=4.0, imlim=, resample=None, url=None, \*, data=None, \*\*kwargs)

参数:此方法接受以下描述的参数:

  • X:此参数是图像的数据。
  • cmap:此参数是颜色图实例或注册的颜色图名称。
  • norm:此参数是Normalize实例,将数据值缩放到规范的颜色图范围[0,1]以映射到颜色
  • vmin, vmax:这些参数本质上是可选的,它们是颜色栏范围。
  • alpha:此参数是颜色的强度。
  • aspect:此参数用于控制轴的纵横比。
  • interpolation:此参数是用于显示图像的插值方法。
  • origin:此参数用于将数组的[0,0]索引放置在轴的左上角或左下角。
  • resample:此参数是用于类似的方法。
  • extent:此参数是数据坐标中的边界框。
  • filternorm:此参数用于防颗粒图像调整大小过滤器。
  • filterrad:此参数是具有半径参数的滤镜的滤镜半径。
  • url:此参数设置创建的AxesImage的url。

返回值:这将返回以下内容:

  • image:这将返回AxesImage

interplotation解释:

可为:‘none’,‘nearest’,‘bilinear’,‘bicubic’,‘spline16’, ‘spline36’, ‘hanning’, ‘hamming’,‘hermite’,‘kaiser’,‘quadric’,‘catrom’,‘gaussian’,‘bessel’,‘mitchell’, ‘sinc’,‘lanczos’

plt.imshow()参数_第1张图片  

你可能感兴趣的:(技巧分享,深度学习)