Skip to content

suggestions

sleap_io.model.suggestions

Data module for suggestions.

SuggestionFrame

Data structure for a single frame of suggestions.

Attributes:

Name Type Description
video Video

The video associated with the frame.

frame_idx int

The index of the frame in the video.

Source code in sleap_io/model/suggestions.py
@attrs.define(auto_attribs=True)
class SuggestionFrame:
    """Data structure for a single frame of suggestions.

    Attributes:
        video: The video associated with the frame.
        frame_idx: The index of the frame in the video.
    """

    video: Video
    frame_idx: int