1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
|
/************************************************************************
*
* Copyright (C) 2014-2024 IRCAD France
* Copyright (C) 2014-2020 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#pragma once
#include <sight/data/config.hpp>
#include "data/factory/new.hpp"
#include "data/object.hpp"
#include <core/com/signal.hpp>
#include <core/com/signals.hpp>
#include <data/factory/new.hpp>
#include <data/object.hpp>
#include <array>
#include <filesystem>
#include <string>
#include <utility>
namespace sight::data
{
/**
* @brief This class defines a camera object.
*/
class SIGHT_DATA_CLASS_API camera : public object
{
public:
SIGHT_DECLARE_CLASS(camera, object);
using dist_array_t = std::array<double, 5>;
using intrinsic_t = std::array<double, 4>;
enum source_t
{
file,
stream,
device,
unknown = 0xFF
};
enum pixel_format_t
{
invalid,
argb32,
argb32_premultiplied,
rgb32,
rgb24,
rgb565,
rgb555,
argb8565_premultiplied,
bgra32,
bgra32_premultiplied,
bgr32,
bgr24,
bgr565,
bgr555,
bgra5658_premultiplied,
ayuv444,
ayuv444_premultiplied,
yuv444,
yuv420_p,
yv12,
uyvy,
yuyv,
nv12,
nv21,
imc1,
imc2,
imc3,
imc4,
y8,
y16,
jpeg,
cameraraw,
adobedng,
rgba32,
user = 1000
};
/// Default constructor.
SIGHT_DATA_API camera();
SIGHT_DATA_API camera(const camera& _cam);
/// Destructor
SIGHT_DATA_API ~camera() noexcept override = default;
SIGHT_DATA_API static pixel_format_t pixel_format(const std::string& _name);
SIGHT_DATA_API static std::string get_pixel_format_name(pixel_format_t _format);
/**@name Signals API
* @{
*/
/// Signal when camera is calibrated
SIGHT_DATA_API static const core::com::signals::key_t INTRINSIC_CALIBRATED_SIG;
using intrinsic_calibrated_signal_t = core::com::signal<void ()>;
/// Signal when camera id is modified
SIGHT_DATA_API static const core::com::signals::key_t ID_MODIFIED_SIG;
using id_modified_signal_t = core::com::signal<void (std::string)>;
/** @} */
/// @return cx or u0 = x-coordinate of optical center
double get_cx() const
{
return m_intrinsic[2];
}
/// @return cy or v0 = y-coordinate of optical center
double get_cy() const
{
return m_intrinsic[3];
}
/// Sets cx or u0 = x-coordinate of optical center
void set_cx(double _cx)
{
m_intrinsic[2] = _cx;
}
/// Sets cy or v0 = y-coordinate of optical center
void set_cy(double _cy)
{
m_intrinsic[3] = _cy;
}
/// @return fx = x-coordinate of optical center
double get_fx() const
{
return m_intrinsic[0];
}
/// Sets fx = x-coordinate of optical center
void set_fx(double _fx)
{
m_intrinsic[0] = _fx;
}
/// @return fy = y-coordinate of optical center
double get_fy() const
{
return m_intrinsic[1];
}
/// Sets fy = y-coordinate of optical center
void set_fy(double _fy)
{
m_intrinsic[1] = _fy;
}
/// @return camera resolution in pixels
std::size_t get_width() const
{
return m_width;
}
/// Sets camera resolution in pixels
void set_width(std::size_t _w)
{
m_width = _w;
}
/// @return camera resolution in pixels
std::size_t get_height() const
{
return m_height;
}
/// Sets camera resolution in pixels
void set_height(std::size_t _h)
{
m_height = _h;
}
/// Sets the distortion coefficient
SIGHT_DATA_API void set_distortion_coefficient(double _k1, double _k2, double _p1, double _p2, double _k3);
/**
* @name Getters / Setters
* @{ */
/**
* @brief distortion coefficient
* @{ */
const dist_array_t& get_distortion_coefficient() const
{
return m_distortion_coefficient;
}
//------------------------------------------------------------------------------
void set_distortion_coefficient(const dist_array_t& _val)
{
m_distortion_coefficient = _val;
}
/** @} */
/**
* @brief the skew coefficient (angle between the x and y pixel axes)
* @{ */
double get_skew() const
{
return m_skew;
}
//------------------------------------------------------------------------------
void set_skew(double _val)
{
m_skew = _val;
}
/** @} */
/**
* @brief the flag to tell if the camera is calibrated
* @{ */
bool get_is_calibrated() const
{
return m_is_calibrated;
}
//------------------------------------------------------------------------------
void set_is_calibrated(bool _val)
{
m_is_calibrated = _val;
}
/** @} */
/// Gets the camera source (file, stream or device).
source_t get_camera_source() const
{
return m_camera_source;
}
/// Sets the camera source (file, stream or device).
void set_camera_source(source_t _camera_source)
{
m_camera_source = _camera_source;
}
/// Gets the device name of the camera (only available in source_t DEVICE mode).
std::string get_camera_id() const
{
return m_camera_id;
}
/// Sets the device name of the camera (only available in source_t DEVICE mode).
void set_camera_id(const std::string& _camera_id)
{
m_camera_id = _camera_id;
}
/// Gets the minimum frame rate in frames per second (only available in source_t DEVICE mode).
float get_maximum_frame_rate() const
{
return m_max_frame_rate;
}
/// Sets the minimum frame rate in frames per second (only available in source_t DEVICE mode).
void set_maximum_frame_rate(float _max_frame_rate)
{
m_max_frame_rate = _max_frame_rate;
}
/// Gets the color format of a video frame (only available in source_t DEVICE mode).
pixel_format_t pixel_format() const
{
return m_pixel_format;
}
/// Sets the color format of a video frame (only available in source_t DEVICE mode).
void set_pixel_format(pixel_format_t _pixel_format)
{
m_pixel_format = _pixel_format;
}
/// Gets the video source file (only available in source_t FILE mode).
std::filesystem::path get_video_file() const
{
return m_video_file;
}
/// Sets the video source file (only available in source_t FILE mode).
void set_video_file(const std::filesystem::path& _video_file)
{
m_video_file = _video_file;
}
/// Gets the video source stream (only available in source_t STREAM mode).
std::string get_stream_url() const
{
return m_stream_url;
}
/// Sets the video source stream (only available in source_t STREAM mode).
void set_stream_url(const std::string& _stream_url)
{
m_stream_url = _stream_url;
}
/**
* @brief setScale set the scale factor of the camera
* Used for RGBD cameras, where depth sensor and RGB sensor are up to a scale factor.
* @param _scale double (default 1.0)
*/
void set_scale(double _scale);
/**
* @brief getScale get the scale factor of the camera (see: setScale)
* @return the scale factor in double.
*/
double get_scale() const;
/**
* @brief set the calibration error
* @param _error double (default 0.0)
*/
void set_calibration_error(double _error);
/**
* @brief get the calibration error of the camera
* @return the calibration error in double.
*/
double calibration_error() const;
/**
* @brief getIndex returns index of the device as Qt give us in module::ui::qt::video::CameraDeviceDlg.
* The index is the first character of m_description. (ex: "1. Microsoft HD camera")
* @return an integer of the index, -1 if invalid (if source_t isn't DEVICES)
*/
int get_index() const;
/// Equality comparison operators
/// @{
SIGHT_DATA_API bool operator==(const camera& _other) const noexcept;
SIGHT_DATA_API bool operator!=(const camera& _other) const noexcept;
/// @}
/// Defines shallow copy
/// @throws data::exception if an errors occurs during copy
/// @param[in] _source the source object to copy
SIGHT_DATA_API void shallow_copy(const object::csptr& _source) override;
/// Defines deep copy
/// @throws data::exception if an errors occurs during copy
/// @param _source source object to copy
/// @param _cache cache used to deduplicate pointers
SIGHT_DATA_API void deep_copy(
const object::csptr& _source,
const std::unique_ptr<deep_copy_cache_t>& _cache = std::make_unique<deep_copy_cache_t>()
) override;
protected:
//! Width video resolution
std::size_t m_width {0};
//! Height video resolution
std::size_t m_height {0};
/// Intrinsic parameters [fx, fy, cx, cy]
intrinsic_t m_intrinsic {};
/// Image distortion coefficients (radial and tangential distortions, [k1, k2, p1, p2, k3])
dist_array_t m_distortion_coefficient {};
/// Skew coefficient (angle between the x and y pixel axes)
double m_skew {0.};
//! Flag if data is calibrated
bool m_is_calibrated {false};
//! Device name of the camera, unique ID to identify the camera and may not be human-readable.
std::string m_camera_id;
//! Maximum frame rate in frames per second.
float m_max_frame_rate {30.F};
//! Color format of a video frame.
pixel_format_t m_pixel_format {invalid};
//! Video source file
std::filesystem::path m_video_file;
//! Video source stream
std::string m_stream_url;
//! camera source (file, stream or device)
source_t m_camera_source {unknown};
//! Used for depth sensor: scale of the depth values (default: 1.)
double m_scale {1.};
/// Error of the computed calibration
double m_calibration_error {0.};
};
//-----------------------------------------------------------------------------
inline void camera::set_scale(double _scale)
{
m_scale = _scale;
}
//-----------------------------------------------------------------------------
inline double camera::get_scale() const
{
return m_scale;
}
//-----------------------------------------------------------------------------
inline void camera::set_calibration_error(double _calibration_error)
{
m_calibration_error = _calibration_error;
}
//-----------------------------------------------------------------------------
inline double camera::calibration_error() const
{
return m_calibration_error;
}
//-----------------------------------------------------------------------------
inline int camera::get_index() const
{
int index = -1;
if(m_camera_source == source_t::device)
{
try
{
// Limited to [0-9] range
index = std::stoi(&m_description.at(0));
}
catch(std::exception& e)
{
SIGHT_ERROR("Cannot get index of: " + m_description + " " + e.what());
}
}
return index;
}
//-----------------------------------------------------------------------------
} // namespace sight::data
|