Skip to content

dlc_interp

fptools.preprocess.steps.dlc_interp

Classes:

  • DLCInterpolation

    A Processor that interpolates missing frames in dlc data.

DLCInterpolation

Bases: ProcessorThatPlots

A Processor that interpolates missing frames in dlc data.

Methods:

  • __init__

    Initialize this Processor.

Source code in fptools/preprocess/steps/dlc_interp.py
class DLCInterpolation(ProcessorThatPlots):
    """A `Processor` that interpolates missing frames in dlc data."""

    def __init__(
        self,
    ):
        """Initialize this Processor."""
        pass

    def __call__(self, session: Session) -> Session:
        pass

    def plot(self, session: Session, ax: Axes):
        pass

__init__()

Initialize this Processor.

Source code in fptools/preprocess/steps/dlc_interp.py
def __init__(
    self,
):
    """Initialize this Processor."""
    pass