BRIEFFeature.plot#

BRIEFFeature.plot(*args: Any, ax: Any = None, filled: bool = False, color: Any = 'blue', alpha: float = 1, hand: bool = False, handcolor: Any = 'blue', handthickness: int = 1, handalpha: float = 1, **kwargs: Any) None#

Plot features using Matplotlib

Parameters:
  • ax (axes, optional) – axes to plot onto, defaults to None

  • filled (bool, optional) – shapes are filled, defaults to False

  • hand (bool, optional) – draw clock hand to indicate orientation, defaults to False

  • handcolor (str, optional) – color of clock hand, defaults to ‘blue’

  • handthickness (int, optional) – thickness of clock hand in pixels, defaults to 1

  • handalpha (int, optional) – transparency of clock hand, defaults to 1

  • kwargs (dict) – options passed to matplotlib.Circle such as color, alpha, edgecolor, etc.

Plot circles to represent the position and scale of features on a Matplotlib axis. Orientation, if applicable, is indicated by a radial line from the circle centre to the circumference, like a clock hand.