Unify camera capute signatures

This commit is contained in:
Julian Stirling 2025-12-17 22:27:58 +00:00
parent dcf329f1c5
commit e0c63ab354
3 changed files with 5 additions and 5 deletions

View file

@ -316,7 +316,7 @@ class SimulatedCamera(BaseCamera):
@lt.action
def capture_array(
self,
stream_name: Literal["main", "full"] = "full",
stream_name: Literal["main", "lores", "raw", "full"] = "full",
wait: Optional[float] = None,
) -> NDArray:
"""Acquire one image from the camera and return as an array.
@ -335,7 +335,7 @@ class SimulatedCamera(BaseCamera):
def capture_image(
self,
stream_name: Literal["main", "lores", "raw"],
stream_name: Literal["main", "lores", "full"],
wait: Optional[float] = None,
) -> Image.Image:
"""Capture to a PIL image. This is not exposed as a ThingAction.