Directograms
Auto-generated documentation for musicalgestures._directograms module.
- Mgt-python / Modules / Musicalgestures / Directograms
directogram
@jit(nopython=True)
def directogram(optical_flow):
matrix3D_norm
@jit(nopython=True)
def matrix3D_norm(matrix):
mg_directograms
def mg_directograms(
self,
title=None,
filtertype='Adaptative',
thresh=0.05,
kernel_size=5,
target_name=None,
overwrite=False,
):
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 belowthreshto 0. 'Binary' turns all values belowthreshto 0, abovethreshto 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'.threshfloat, 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.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 False.
Returns
MgFigure- A MgFigure object referring to the internal figure and its data.