Bases: object
Create a light source coming from the specified azimuth and elevation. Angles are in degrees, with the azimuth measured clockwise from north and elevation up from the zero plane of the surface.
shade
is used to produce "shaded" rgb values for a data array. shade_rgb
can be used to combine an rgb image with an elevation map. hillshade
produces an illumination map of a surface.
Specify the azimuth (measured clockwise from south) and altitude (measured up from the plane of the surface) of the light source in degrees.
The azimuth (0-360, degrees clockwise from North) of the light source.
The altitude (0-90, degrees up from horizontal) of the light source.
For backwards compatibility, the parameters hsv_min_val, hsv_max_val, hsv_min_sat, and hsv_max_sat may be supplied at initialization as well. However, these parameters will only be used if "blend_mode='hsv'" is passed into shade
or shade_rgb
. See the documentation for blend_hsv
for more details.
Take the input data array, convert to HSV values in the given colormap, then adjust those color values to give the impression of a shaded relief map with a specified light source. RGBA values are returned, which can then be used to plot the shaded image with imshow.
The color of the resulting image will be darkened by moving the (s, v) values (in hsv colorspace) toward (hsv_min_sat, hsv_min_val) in the shaded regions, or lightened by sliding (s, v) toward (hsv_max_sat, hsv_max_val) in regions that are illuminated. The default extremes are chose so that completely shaded points are nearly black (s = 1, v = 0) and completely illuminated points are nearly white (s = 0, v = 1).
An MxNx3 RGB array of floats ranging from 0 to 1 (color image).
An MxNx1 array of floats ranging from 0 to 1 (grayscale image).
The maximum saturation value that the intensity map can shift the output image to.
The minimum saturation value that the intensity map can shift the output image to. Defaults to 0.
The maximum value ("v" in "hsv") that the intensity map can shift the output image to. Defaults to 1.
The minimum value ("v" in "hsv") that the intensity map can shift the output image to. Defaults to 0.
An MxNx3 RGB array representing the combined images.
Combine an rgb image with an intensity map using "overlay" blending.
An MxNx3 RGB array of floats ranging from 0 to 1 (color image).
An MxNx1 array of floats ranging from 0 to 1 (grayscale image).
An MxNx3 RGB array representing the combined images.
Combine an rgb image with an intensity map using "soft light" blending, using the "pegtop" formula.
An MxNx3 RGB array of floats ranging from 0 to 1 (color image).
An MxNx1 array of floats ranging from 0 to 1 (grayscale image).
An MxNx3 RGB array representing the combined images.
The unit vector direction towards the light source.
Calculate the illumination intensity for a surface using the defined azimuth and elevation for the light source.
This computes the normal vectors for the surface, and then passes them on to shade_normals
The height values used to generate an illumination map
The amount to exaggerate the elevation values by when calculating illumination. This can be used either to correct for differences in units between the x-y coordinate system and the elevation coordinate system (e.g. decimal degrees vs. meters) or to exaggerate or de-emphasize topographic effects.
The x-spacing (columns) of the input elevation grid.
The y-spacing (rows) of the input elevation grid.
Increases or decreases the contrast of the hillshade. Values greater than one will cause intermediate values to move closer to full illumination or shadow (and clipping any values that move beyond 0 or 1). Note that this is not visually or mathematically the same as vertical exaggeration.
A 2D array of illumination values between 0-1, where 0 is completely in shadow and 1 is completely illuminated.
Combine colormapped data values with an illumination intensity map (a.k.a. "hillshade") of the values.
The height values used to generate a shaded map.
Colormap
The colormap used to color the data array. Note that this must be a Colormap
instance. For example, rather than passing in cmap='gist_earth'
, use cmap=plt.get_cmap('gist_earth')
instead.
Normalize
instance, optional
The normalization used to scale values before colormapping. If None, the input will be linearly scaled between its min and max.
The type of blending used to combine the colormapped data values with the illumination intensity. Default is "overlay". Note that for most topographic surfaces, "overlay" or "soft" appear more visually realistic. If a user-defined function is supplied, it is expected to combine an MxNx3 RGB array of floats (ranging 0 to 1) with an MxNx1 hillshade array (also 0 to 1). (Call signature func(rgb, illum, **kwargs)
) Additional kwargs supplied to this function will be passed on to the blend_mode function.
The minimum value used in colormapping data. If None the minimum value in data is used. If norm is specified, then this argument will be ignored.
The maximum value used in colormapping data. If None the maximum value in data is used. If norm is specified, then this argument will be ignored.
The amount to exaggerate the elevation values by when calculating illumination. This can be used either to correct for differences in units between the x-y coordinate system and the elevation coordinate system (e.g. decimal degrees vs. meters) or to exaggerate or de-emphasize topography.
The x-spacing (columns) of the input elevation grid.
The y-spacing (rows) of the input elevation grid.
Increases or decreases the contrast of the hillshade. Values greater than one will cause intermediate values to move closer to full illumination or shadow (and clipping any values that move beyond 0 or 1). Note that this is not visually or mathematically the same as vertical exaggeration.
An MxNx4 array of floats ranging between 0-1.
Calculate the illumination intensity for the normal vectors of a surface using the defined azimuth and elevation for the light source.
Imagine an artificial sun placed at infinity in some azimuth and elevation position illuminating our surface. The parts of the surface that slope toward the sun should brighten while those sides facing away should become darker.
Increases or decreases the contrast of the hillshade. Values greater than one will cause intermediate values to move closer to full illumination or shadow (and clipping any values that move beyond 0 or 1). Note that this is not visually or mathematically the same as vertical exaggeration.
A 2D array of illumination values between 0-1, where 0 is completely in shadow and 1 is completely illuminated.
Use this light source to adjust the colors of the rgb input array to give the impression of a shaded relief map with the given elevation.
An (M, N, 3) RGB array, assumed to be in the range of 0 to 1.
An (M, N) array of the height values used to generate a shaded map.
Increases or decreases the contrast of the hillshade. Values greater than one will cause intermediate values to move closer to full illumination or shadow (and clipping any values that move beyond 0 or 1). Note that this is not visually or mathematically the same as vertical exaggeration.
The type of blending used to combine the colormapped data values with the illumination intensity. For backwards compatibility, this defaults to "hsv". Note that for most topographic surfaces, "overlay" or "soft" appear more visually realistic. If a user-defined function is supplied, it is expected to combine an MxNx3 RGB array of floats (ranging 0 to 1) with an MxNx1 hillshade array (also 0 to 1). (Call signature func(rgb, illum, **kwargs)
) Additional kwargs supplied to this function will be passed on to the blend_mode function.
The amount to exaggerate the elevation values by when calculating illumination. This can be used either to correct for differences in units between the x-y coordinate system and the elevation coordinate system (e.g. decimal degrees vs. meters) or to exaggerate or de-emphasize topography.
The x-spacing (columns) of the input elevation grid.
The y-spacing (rows) of the input elevation grid.
An (m, n, 3) array of floats ranging between 0-1.
matplotlib.colors.LightSource
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/_as_gen/matplotlib.colors.LightSource.html