Update UmiProcessor default fps to 10 (#116)

This commit is contained in:
Adil Zouitine 2024-04-29 12:11:34 +02:00 committed by GitHub
parent ccffa9e406
commit 5b4fd8891d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ class UmiProcessor:
def __init__(self, folder_path: str, fps: int | None = None):
self.zarr_path = folder_path
if fps is None:
# TODO (azouitine): Add reference to the paper
fps = 15
# https://arxiv.org/pdf/2402.10329#table.caption.16
fps = 10 # For umi cup in the wild
self._fps = fps
register_codecs()