Skip to content

Commit

Permalink
make SimulatedCamera Transformable (eg add crop and and rotation prop…
Browse files Browse the repository at this point in the history
…erties) (#142)
  • Loading branch information
rodja authored Jul 8, 2024
1 parent aa8552e commit a4763b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rosys/vision/simulated_camera/simulated_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@

from ... import rosys
from ..camera.configurable_camera import ConfigurableCamera
from ..camera.transformable_camera import TransformableCamera
from ..image import Image, ImageSize
from .simulated_device import SimulatedDevice


class SimulatedCamera(ConfigurableCamera):
class SimulatedCamera(ConfigurableCamera, TransformableCamera):

def __init__(self,
*,
Expand Down

0 comments on commit a4763b6

Please sign in to comment.