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
|
/************************************************************************
*
* Copyright (C) 2018-2024 IRCAD France
* Copyright (C) 2018-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 <data/camera.hpp>
#include <data/matrix4.hpp>
#include <data/point_list.hpp>
#include <service/registerer.hpp>
#include <opencv2/core.hpp>
#include <array>
namespace sight::module::geometry::vision
{
/**
* @brief This service estimates the object pose given a set of object points, their corresponding image projections,
* as well as the camera matrix and the distortion coefficients.
*
* @section Slots Slots
* - \b compute_registration(core::clock::type): compute the registration using cv::solvePnP.
*
* @section XML XML Configuration
* @code{.xml}
<service type="sight::module::geometry::vision::solve_pnp">
<in key="pointList2d" uid="..." />
<in key="pointList3d" uid="..." />
<in key="calibration" uid="..." />
<inout key="matrix" uid="..." />
<config inverse="false" shift="false"/>
</service>
@endcode
* @subsection Input Input:
* - \b pointList2d [sight::data::point_list]: list of 2d points clicked on image
* - \b pointList3d [sight::data::point_list]: list of corresponding 3d points clicked on 3d model
* - \b calibration [sight::data::camera]: camera parameters (intrinsic & distorison coefficients)
* @subsection In-Out In-Out:
* - \b matrix [sight::data::matrix4]: output registration matrix
* (updated when calling 'computeRegistration' slot), in-out is used since matrix is not created in this service.
* @subsection Configuration Configuration:
* - \b inverse (optional): reverse output matrix. If 'inverse' is "true" then the camera pose is computed,
* object pose is computed otherwise.(default: "false").
* - \b shift (optional): shift back pointList2d with cx/cy, this can be used to compensate a "shifted" camera (that
* uses calibration matrix) in a 3dScene (default: "false").
*/
class solve_pnp : public service::registerer
{
public:
SIGHT_DECLARE_SERVICE(solve_pnp, sight::service::registerer);
/// Constructor.
solve_pnp() noexcept = default;
/// Destructor.
~solve_pnp() noexcept override = default;
/**
* @brief computeRegistration: compute the camera pose from 'pointList2d' and corresponding 'pointList3d'.
* Update 'matrix' with the camera pose (or object pose if 'inverse' is "true")
* @param _timestamp: not used by the method.
*/
void compute_registration(core::clock::type _timestamp) override;
protected:
/// configures the service
void configuring() override;
/// starts the service and call initialize()
void starting() override;
/// does nothing
void stopping() override;
/// calls computeRegistration with fake timestamp.
void updating() override;
private:
/**
* @brief Camera structure: handles intrinsic parameters and distorsion coefficients in OpenCV format.
*/
struct camera
{
/// Size of the calibration images (width, height)
cv::Size image_size;
/// Intrinsic parameters 3x3 matrix:
/** | fx, 0, cx |
* | 0, fy, cy |
* | 0, 0, 1 |
**/
cv::Mat intrinsic_mat;
/// Distorsion coefficients 5x1 matrix: | k1, k2, p1, p2, k3 |
cv::Mat dist_coef;
};
/// reverse or not output matrix (camera pose vs object pose)
bool m_reverse_matrix = {false};
/// Shift back points using cx/cy
bool m_shift_points = {false};
data::ptr<data::camera, data::access::in> m_calibration {this, "calibration"};
data::ptr<data::point_list, data::access::in> m_point_list2d {this, "pointList2d"};
data::ptr<data::point_list, data::access::in> m_point_list3d {this, "pointList3d"};
data::ptr<data::matrix4, data::access::inout> m_matrix {this, "matrix"};
};
} // namespace sight::module::geometry::vision
|