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 00039 00040 #include <pcl/apps/point_cloud_editor/statistics.h> 00041 00042 std::vector<Statistics*> Statistics::stat_vec_; 00043 00044 std::string 00045 Statistics::getStats() 00046 { 00047 std::string result = ""; 00048 std::vector<Statistics*>::const_iterator stat_vec_it; 00049 for(stat_vec_it = stat_vec_.begin(); stat_vec_it != stat_vec_.end(); ++stat_vec_it) 00050 { 00051 std::string stat_string = (*stat_vec_it) -> getStat(); 00052 if (stat_string != "") 00053 { 00054 result += (stat_string + "\n"); 00055 } 00056 } 00057 00058 if (result == "") 00059 return ("Please load your cloud."); 00060 return (result); 00061 } 00062 00063 void 00064 Statistics::clear() 00065 { 00066 stat_vec_.clear(); 00067 } 00068 00069 void 00070 Statistics::registerStats () 00071 { 00072 stat_vec_.push_back(this); 00073 } 00074