Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef PCL_RECOGNITION_DOTMOD
00039 #define PCL_RECOGNITION_DOTMOD
00040
00041 #include <vector>
00042 #include <cstddef>
00043 #include <string.h>
00044 #include <pcl/pcl_macros.h>
00045 #include <pcl/recognition/dot_modality.h>
00046 #include <pcl/recognition/dense_quantized_multi_mod_template.h>
00047 #include <pcl/recognition/mask_map.h>
00048 #include <pcl/recognition/region_xy.h>
00049
00050 namespace pcl
00051 {
00052
00053 struct DOTMODDetection
00054 {
00055 size_t bin_x;
00056 size_t bin_y;
00057 size_t template_id;
00058 float score;
00059 };
00060
00065 class PCL_EXPORTS DOTMOD
00066 {
00067 public:
00069 DOTMOD (size_t template_width,
00070 size_t template_height);
00071
00073 virtual ~DOTMOD ();
00074
00080 size_t
00081 createAndAddTemplate (const std::vector<DOTModality*> & modalities,
00082 const std::vector<MaskMap*> & masks,
00083 size_t template_anker_x,
00084 size_t template_anker_y,
00085 const RegionXY & region);
00086
00087 void
00088 detectTemplates (const std::vector<DOTModality*> & modalities,
00089 float template_response_threshold,
00090 std::vector<DOTMODDetection> & detections,
00091 const size_t bin_size) const;
00092
00093 inline const DenseQuantizedMultiModTemplate &
00094 getTemplate (size_t template_id) const
00095 {
00096 return (templates_[template_id]);
00097 }
00098
00099 inline size_t
00100 getNumOfTemplates ()
00101 {
00102 return (templates_.size ());
00103 }
00104
00105 void
00106 saveTemplates (const char * file_name) const;
00107
00108 void
00109 loadTemplates (const char * file_name);
00110
00111 void
00112 serialize (std::ostream & stream) const;
00113
00114 void
00115 deserialize (std::istream & stream);
00116
00117
00118 private:
00120 size_t template_width_;
00122 size_t template_height_;
00124 std::vector<DenseQuantizedMultiModTemplate> templates_;
00125 };
00126
00127 }
00128
00129 #endif