153 lines
5.4 KiB
C++
153 lines
5.4 KiB
C++
/*
|
|
* Copyright (C) 2012 Open Source Robotics Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
#ifndef _GAZEBO_SENSORS_MULTICAMERASENSOR_HH_
|
|
#define _GAZEBO_SENSORS_MULTICAMERASENSOR_HH_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "gazebo/msgs/MessageTypes.hh"
|
|
#include "gazebo/rendering/RenderTypes.hh"
|
|
#include "gazebo/sensors/Sensor.hh"
|
|
#include "gazebo/transport/TransportTypes.hh"
|
|
#include "gazebo/util/system.hh"
|
|
|
|
namespace gazebo
|
|
{
|
|
namespace sensors
|
|
{
|
|
// Forward declare private data class.
|
|
class MultiCameraSensorPrivate;
|
|
|
|
/// \addtogroup gazebo_sensors Sensors
|
|
/// \brief A set of sensor classes, functions, and definitions
|
|
/// \{
|
|
|
|
/// \class MultiCameraSensor MultiCameraSensor.hh sensors/sensors.hh
|
|
/// \brief Multiple camera sensor. This sensor type can create one or
|
|
/// more synchronized cameras.
|
|
class GAZEBO_VISIBLE MultiCameraSensor : public Sensor
|
|
{
|
|
/// \brief Constructor
|
|
public: MultiCameraSensor();
|
|
|
|
/// \brief Destructor
|
|
public: virtual ~MultiCameraSensor();
|
|
|
|
// Documentation inherited
|
|
public: virtual void Load(const std::string &_worldName);
|
|
|
|
// Documentation inherited
|
|
public: virtual void Init();
|
|
|
|
// Documentation inherited
|
|
public: virtual std::string Topic() const;
|
|
|
|
/// \brief Get the number of cameras.
|
|
/// \return The number of cameras.
|
|
/// \deprecated See CameraCount()
|
|
public: unsigned int GetCameraCount() const GAZEBO_DEPRECATED(7.0);
|
|
|
|
/// \brief Get the number of cameras.
|
|
/// \return The number of cameras.
|
|
public: unsigned int CameraCount() const;
|
|
|
|
/// \brief Returns a pointer to a rendering::Camera.
|
|
/// \param[in] _index Index of the camera to get
|
|
/// \return The Pointer to the camera sensor.
|
|
/// \sa MultiCameraSensor::CameraCount
|
|
/// \deprecated See Camera(unsiged int _index)
|
|
public: rendering::CameraPtr GetCamera(unsigned int _index) const
|
|
GAZEBO_DEPRECATED(7.0);
|
|
|
|
/// \brief Returns a pointer to a rendering::Camera.
|
|
/// \param[in] _index Index of the camera to get
|
|
/// \return The Pointer to the camera sensor, NULL if the _index
|
|
/// is invalid.
|
|
/// \sa MultiCameraSensor::CameraCount
|
|
public: rendering::CameraPtr Camera(const unsigned int _index) const;
|
|
|
|
/// \brief Gets the width of the image in pixels.
|
|
/// \param[in] _index Index of the camera
|
|
/// \return The image width in pixels.
|
|
/// \sa MultiCameraSensor::CameraCount
|
|
/// \deprecated See ImageWidth(unsigned int _index)
|
|
public: unsigned int GetImageWidth(unsigned int _index) const
|
|
GAZEBO_DEPRECATED(7.0);
|
|
|
|
/// \brief Gets the width of the image in pixels.
|
|
/// \param[in] _index Index of the camera
|
|
/// \return The image width in pixels.
|
|
/// \sa MultiCameraSensor::CameraCount
|
|
public: unsigned int ImageWidth(const unsigned int _index) const;
|
|
|
|
/// \brief Gets the height of the image in pixels.
|
|
/// \param[in] _index Index of the camera
|
|
/// \return The image height in pixels.
|
|
/// \sa MultiCameraSensor::GetCameraCount
|
|
/// \deprecated See ImageHeight(unsigned int _index)
|
|
public: unsigned int GetImageHeight(
|
|
unsigned int _index) const GAZEBO_DEPRECATED(7.0);
|
|
|
|
/// \brief Gets the height of the image in pixels.
|
|
/// \param[in] _index Index of the camera
|
|
/// \return The image height in pixels.
|
|
/// \sa MultiCameraSensor::GetCameraCount
|
|
public: unsigned int ImageHeight(const unsigned int _index) const;
|
|
|
|
/// \brief Gets the raw image data from the sensor.
|
|
/// \param[in] _index Index of the camera
|
|
/// \return The pointer to the image data array.
|
|
/// \sa MultiCameraSensor::GetCameraCount
|
|
/// \deprecated See ImageData
|
|
public: const unsigned char *GetImageData(unsigned int _index)
|
|
GAZEBO_DEPRECATED(7.0);
|
|
|
|
/// \brief Gets the raw image data from the sensor.
|
|
/// \param[in] _index Index of the camera
|
|
/// \return The pointer to the image data array.
|
|
/// \sa MultiCameraSensor::GetCameraCount
|
|
public: const unsigned char *ImageData(const unsigned int _index);
|
|
|
|
/// \brief Saves the camera image(s) to the disk.
|
|
/// \param[in] _filenames The name of the files for each camera.
|
|
/// \return True if successful, false if unsuccessful.
|
|
/// \sa MultiCameraSensor::GetCameraCount
|
|
public: bool SaveFrame(const std::vector<std::string> &_filenames);
|
|
|
|
// Documentation inherited.
|
|
public: virtual bool IsActive() const;
|
|
|
|
// Documentation inherited.
|
|
protected: virtual bool UpdateImpl(const bool _force);
|
|
|
|
// Documentation inherited.
|
|
protected: virtual void Fini();
|
|
|
|
/// \brief Handle the render event.
|
|
private: void Render();
|
|
|
|
/// \internal
|
|
/// \brief Private data pointer
|
|
private: std::unique_ptr<MultiCameraSensorPrivate> dataPtr;
|
|
};
|
|
/// \}
|
|
}
|
|
}
|
|
#endif
|