Skip to content

Commit

Permalink
Add support for thermal images
Browse files Browse the repository at this point in the history
  • Loading branch information
andchiind committed Feb 22, 2024
1 parent b727fea commit ef51ba3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/isar_exr/robotinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,13 @@ def _create_and_add_poi(
)
)
add_point_of_interest_input["photoAction"] = photo_input

elif isinstance(step, TakeThermalImage):
photo_input: PointOfInterestActionPhotoInput = (
PointOfInterestActionPhotoInput(
robotPose=photo_input_pose, sensor="back_cam_link"
)
)
add_point_of_interest_input["photoAction"] = photo_input
elif isinstance(step, TakeVideo):
video_input: PointOfInterestActionVideoInput = (
PointOfInterestActionVideoInput(
Expand Down

0 comments on commit ef51ba3

Please sign in to comment.