Skip to content

Commit

Permalink
find all slp series
Browse files Browse the repository at this point in the history
  • Loading branch information
eberrigan committed May 8, 2024
1 parent 57ce1ec commit 830a604
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sleap_roots/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def get_crown_points(self, frame_idx: int) -> np.ndarray:
return crown_pts


def find_all_series(data_folders: Union[str, List[str]]) -> List[str]:
def find_all_h5_series(data_folders: Union[str, List[str]]) -> List[str]:
"""Find all .h5 series from a list of folders.
Args:
Expand All @@ -384,6 +384,10 @@ def find_all_series(data_folders: Union[str, List[str]]) -> List[str]:
return h5_series


def find_all_slp_series(data_folders: Union[str, List[str]]) -> List[str]:
"""Find all .slp series from a list of folders."""


def imgfig(
size: Union[float, Tuple] = 6, dpi: int = 72, scale: float = 1.0
) -> matplotlib.figure.Figure:
Expand Down

0 comments on commit 830a604

Please sign in to comment.