Source code for smlmlp.modules.analysis_LP._functions.drift.drift_meanshift

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author        : Lancelot PINCET
# GitHub        : https://github.com/LancelotPincet



from smlmlp import analysis


[docs] @analysis(df_name="points") def drift_meanshift(x, y, meanshift_frames_per_segment=10., *, meanshift_outlier_fraction=0.1, meanshift_recompute=True, meanshift_max_iter=100, meanshift_tol_nm=1., meanshift_max_drift_nm=300., cuda=False, parallel=False) : """ Placeholder for drift meanshift. Raises ------ SyntaxError Always raised because this analysis is not implemented yet. """ raise SyntaxError("Not implemented yet.")