Skip to content

Commit

Permalink
widened the ExposureController interface
Browse files Browse the repository at this point in the history
  • Loading branch information
berndpfrommer committed Apr 18, 2024
1 parent 83e9885 commit 7cae877
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ class ExposureController
virtual ~ExposureController() {}
virtual void update(Camera * cam, const std::shared_ptr<const Image> & img) = 0;
virtual void addCamera(const std::shared_ptr<Camera> & cam) = 0;
virtual double getExposureTime() = 0;
virtual double getGain() = 0;
virtual void link(
const std::unordered_map<std::string, std::shared_ptr<ExposureController>> & map) = 0;
};
} // namespace spinnaker_camera_driver
#endif // SPINNAKER_CAMERA_DRIVER__EXPOSURE_CONTROLLER_HPP_

0 comments on commit 7cae877

Please sign in to comment.