pose_3d.hpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. //
  2. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  3. //
  4. // By downloading, copying, installing or using the software you agree to this license.
  5. // If you do not agree to this license, do not download, install,
  6. // copy or use the software.
  7. //
  8. //
  9. // License Agreement
  10. // For Open Source Computer Vision Library
  11. //
  12. // Copyright (C) 2014, OpenCV Foundation, all rights reserved.
  13. // Third party copyrights are property of their respective owners.
  14. //
  15. // Redistribution and use in source and binary forms, with or without modification,
  16. // are permitted provided that the following conditions are met:
  17. //
  18. // * Redistribution's of source code must retain the above copyright notice,
  19. // this list of conditions and the following disclaimer.
  20. //
  21. // * Redistribution's in binary form must reproduce the above copyright notice,
  22. // this list of conditions and the following disclaimer in the documentation
  23. // and/or other materials provided with the distribution.
  24. //
  25. // * The name of the copyright holders may not be used to endorse or promote products
  26. // derived from this software without specific prior written permission.
  27. //
  28. // This software is provided by the copyright holders and contributors "as is" and
  29. // any express or implied warranties, including, but not limited to, the implied
  30. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  31. // In no event shall the Intel Corporation or contributors be liable for any direct,
  32. // indirect, incidental, special, exemplary, or consequential damages
  33. // (including, but not limited to, procurement of substitute goods or services;
  34. // loss of use, data, or profits; or business interruption) however caused
  35. // and on any theory of liability, whether in contract, strict liability,
  36. // or tort (including negligence or otherwise) arising in any way out of
  37. // the use of this software, even if advised of the possibility of such damage.
  38. /** @file
  39. @author Tolga Birdal <tbirdal AT gmail.com>
  40. */
  41. #ifndef __OPENCV_SURFACE_MATCHING_POSE3D_HPP__
  42. #define __OPENCV_SURFACE_MATCHING_POSE3D_HPP__
  43. #include "opencv2/core/cvstd.hpp" // cv::Ptr
  44. #include <vector>
  45. #include <string>
  46. namespace cv
  47. {
  48. namespace ppf_match_3d
  49. {
  50. //! @addtogroup surface_matching
  51. //! @{
  52. class Pose3D;
  53. typedef Ptr<Pose3D> Pose3DPtr;
  54. class PoseCluster3D;
  55. typedef Ptr<PoseCluster3D> PoseCluster3DPtr;
  56. /**
  57. * @brief Class, allowing the storage of a pose. The data structure stores both
  58. * the quaternions and the matrix forms. It supports IO functionality together with
  59. * various helper methods to work with poses
  60. *
  61. */
  62. class CV_EXPORTS Pose3D
  63. {
  64. public:
  65. Pose3D()
  66. {
  67. alpha=0;
  68. modelIndex=0;
  69. numVotes=0;
  70. residual = 0;
  71. for (int i=0; i<16; i++)
  72. pose[i]=0;
  73. }
  74. Pose3D(double Alpha, unsigned int ModelIndex=0, unsigned int NumVotes=0)
  75. {
  76. alpha = Alpha;
  77. modelIndex = ModelIndex;
  78. numVotes = NumVotes;
  79. residual=0;
  80. for (int i=0; i<16; i++)
  81. pose[i]=0;
  82. }
  83. /**
  84. * \brief Updates the pose with the new one
  85. * \param [in] NewPose New pose to overwrite
  86. */
  87. void updatePose(double NewPose[16]);
  88. /**
  89. * \brief Updates the pose with the new one
  90. */
  91. void updatePose(double NewR[9], double NewT[3]);
  92. /**
  93. * \brief Updates the pose with the new one, but this time using quaternions to represent rotation
  94. */
  95. void updatePoseQuat(double Q[4], double NewT[3]);
  96. /**
  97. * \brief Left multiplies the existing pose in order to update the transformation
  98. * \param [in] IncrementalPose New pose to apply
  99. */
  100. void appendPose(double IncrementalPose[16]);
  101. void printPose();
  102. Pose3DPtr clone();
  103. int writePose(FILE* f);
  104. int readPose(FILE* f);
  105. int writePose(const std::string& FileName);
  106. int readPose(const std::string& FileName);
  107. virtual ~Pose3D() {}
  108. double alpha, residual;
  109. unsigned int modelIndex;
  110. unsigned int numVotes;
  111. double pose[16], angle, t[3], q[4];
  112. };
  113. /**
  114. * @brief When multiple poses (see Pose3D) are grouped together (contribute to the same transformation)
  115. * pose clusters occur. This class is a general container for such groups of poses. It is possible to store,
  116. * load and perform IO on these poses.
  117. */
  118. class CV_EXPORTS PoseCluster3D
  119. {
  120. public:
  121. PoseCluster3D()
  122. {
  123. numVotes=0;
  124. id=0;
  125. }
  126. PoseCluster3D(Pose3DPtr newPose)
  127. {
  128. poseList.clear();
  129. poseList.push_back(newPose);
  130. numVotes=newPose->numVotes;
  131. id=0;
  132. }
  133. PoseCluster3D(Pose3DPtr newPose, int newId)
  134. {
  135. poseList.push_back(newPose);
  136. this->numVotes = newPose->numVotes;
  137. this->id = newId;
  138. }
  139. virtual ~PoseCluster3D()
  140. {}
  141. /**
  142. * \brief Adds a new pose to the cluster. The pose should be "close" to the mean poses
  143. * in order to preserve the consistency
  144. * \param [in] newPose Pose to add to the cluster
  145. */
  146. void addPose(Pose3DPtr newPose);
  147. int writePoseCluster(FILE* f);
  148. int readPoseCluster(FILE* f);
  149. int writePoseCluster(const std::string& FileName);
  150. int readPoseCluster(const std::string& FileName);
  151. std::vector<Pose3DPtr> poseList;
  152. int numVotes;
  153. int id;
  154. };
  155. //! @}
  156. } // namespace ppf_match_3d
  157. } // namespace cv
  158. #endif