Bounds#

Download this notebook from GitHub (right-click to download).


Title
Bounds Element
Dependencies
Matplotlib
Backends
Matplotlib
Bokeh
Plotly
import holoviews as hv
hv.extension('matplotlib')

A Bounds element is an box shaped annotation that is specified as a tuple in (left, bottom, right, top) format:

penguins = hv.RGB.load_image('../assets/penguins.png')
bounds = hv.Bounds((-0.15, -0.4, 0.2, 0))
penguins * bounds.opts(color='orange', linewidth=6)

It is useful for denoting a region of interest defined by some bounds (such as a slice) which is unlike the Box element which is useful for drawing a box at a specific location. Here we show the a slice of the RGB element (green channel only) outlined by the bounds. Note that the values in the Bounds tuple are the same ones as used in the slice:

penguins * penguins[-0.15:0.2, -0.4:0, 'G'] * hv.Bounds((-0.15, -0.4, 0.2, 0))

For full documentation and the available style and plot options, use hv.help(hv.Bounds).

This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).