Directograms¶
Auto-generated documentation for musicalgestures._directograms module.
- Mgt-python / Modules / Musicalgestures / Directograms
directogram¶
matrix3D_norm¶
mg_directograms¶
def mg_directograms(
self,
title: str | None = None,
filtertype: str = 'Adaptative',
threshold: float = 0.05,
kernel_size: int = 5,
convert: bool = True,
target_name: str | None = None,
overwrite: bool = True,
) -> 'MgFigure':
Compute a directogram to factor the magnitude of motion into different angles. Each columun of the directogram is computed as the weighted histogram (HISTOGRAM_BINS) of angles for the optical flow of an input frame.
Source: Abe Davis -- Visual Rhythm and Beat (section 4.1)
Arguments¶
titlestr, optional - Optionally add title to the figure. Defaults to None, which uses 'Directogram' as a title. Defaults to None.filtertypestr, optional - 'Regular' turns all values belowthresholdto 0. 'Binary' turns all values belowthresholdto 0, abovethresholdto 1. 'Blob' removes individual pixels with erosion method. 'Adaptative' perform adaptative threshold as the weighted sum of 11 neighborhood pixels where weights are a Gaussian window. Defaults to 'Adaptative'.thresholdfloat, optional - Eliminates pixel values less than given threshold. Ranges from 0 to 1. Defaults to 0.05.kernel_sizeint, optional - Size of structuring element. Defaults to 5.convertbool, optional - If True (default), non-AVI input is first converted to an all-intra MJPEG.avi(cached asself.as_avi) for frame-accurate decoding. Set to False to read the source file directly. Defaults to True.target_namestr, optional - Target output name for the directogram. Defaults to None (which assumes that the input filename with the suffix "_dg" should be used).overwritebool, optional - Whether to allow overwriting existing files or to automatically increment target filenames to avoid overwriting. Defaults to True.
Returns¶
MgFigure- A MgFigure object referring to the internal figure and its data.