Source code for rtcog.preproc.step_types

"""Enum of possible PreprocSteps."""
from enum import Enum

[docs] class StepType(Enum): EMA = 'ema' IGLM = 'iglm' KALMAN = 'kalman' SMOOTH = 'smooth' SNORM = 'snorm' WINDOWING = 'windowing'