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_FEATURES_SPARSE_QUANTIZED_MULTI_MOD_TEMPLATE
00039 #define PCL_FEATURES_SPARSE_QUANTIZED_MULTI_MOD_TEMPLATE
00040
00041 #include <vector>
00042
00043 #include <pcl/recognition/region_xy.h>
00044
00045 namespace pcl
00046 {
00047
00051 struct QuantizedMultiModFeature
00052 {
00054 QuantizedMultiModFeature () : x (0), y (0), modality_index (0), quantized_value (0) {}
00055
00057 int x;
00059 int y;
00061 size_t modality_index;
00063 unsigned char quantized_value;
00064
00068 bool
00069 compareForEquality (const QuantizedMultiModFeature & base)
00070 {
00071 if (base.x != x)
00072 return false;
00073 if (base.y != y)
00074 return false;
00075 if (base.modality_index != modality_index)
00076 return false;
00077 if (base.quantized_value != quantized_value)
00078 return false;
00079
00080 return true;
00081 }
00082
00085 void
00086 serialize (std::ostream & stream) const
00087 {
00088 write (stream, x);
00089 write (stream, y);
00090 write (stream, modality_index);
00091 write (stream, quantized_value);
00092 }
00093
00096 void
00097 deserialize (std::istream & stream)
00098 {
00099 read (stream, x);
00100 read (stream, y);
00101 read (stream, modality_index);
00102 read (stream, quantized_value);
00103 }
00104 };
00105
00109 struct SparseQuantizedMultiModTemplate
00110 {
00112 SparseQuantizedMultiModTemplate () : features (), region () {}
00113
00115 std::vector<QuantizedMultiModFeature> features;
00116
00118 RegionXY region;
00119
00122 void
00123 serialize (std::ostream & stream) const
00124 {
00125 const int num_of_features = static_cast<int> (features.size ());
00126 write (stream, num_of_features);
00127 for (int feature_index = 0; feature_index < num_of_features; ++feature_index)
00128 {
00129 features[feature_index].serialize (stream);
00130 }
00131
00132 region.serialize (stream);
00133 }
00134
00137 void
00138 deserialize (std::istream & stream)
00139 {
00140 features.clear ();
00141
00142 int num_of_features;
00143 read (stream, num_of_features);
00144 features.resize (num_of_features);
00145 for (int feature_index = 0; feature_index < num_of_features; ++feature_index)
00146 {
00147 features[feature_index].deserialize (stream);
00148 }
00149
00150 region.deserialize (stream);
00151 }
00152 };
00153
00154 }
00155
00156 #endif