CameraConstants.h 783 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. namespace ROS2
  10. {
  11. namespace CameraConstants
  12. {
  13. inline constexpr char ImageMessageType[] = "sensor_msgs::msg::Image";
  14. inline constexpr char DepthImageConfig[] = "Depth Image";
  15. inline constexpr char ColorImageConfig[] = "Color Image";
  16. inline constexpr char DepthInfoConfig[] = "Depth Camera Info";
  17. inline constexpr char ColorInfoConfig[] = "Color Camera Info";
  18. inline constexpr char CameraInfoMessageType[] = "sensor_msgs::msg::CameraInfo";
  19. } // namespace CameraConstants
  20. } // namespace ROS2