Remove final dependencies

This commit is contained in:
Julian Stirling 2025-12-17 15:50:03 +00:00
parent be5f9630ca
commit 4ad1fff656
3 changed files with 8 additions and 35 deletions

View file

@ -683,10 +683,6 @@ class BaseCamera(lt.Thing):
return {}
CameraDependency = lt.deps.direct_thing_client_dependency(BaseCamera, "camera")
RawCameraDependency = lt.deps.raw_thing_dependency(BaseCamera)
def downsample(factor: int, image: np.ndarray) -> np.ndarray:
"""Downsample an image by taking the mean of each nxn region.