如何将pcl :: Histogram保存为PNG或JPG文件?

时间:2014-02-09 19:23:24

标签: c++ image-processing point-cloud-library

我想在文件中保存使用PCL API的PCLHistogramVisualizer获得的相同图像。

这是我需要在点[0]保存的直方图的变量。

pcl::PointCloud<Histogram<100> > hist;

我认为可以通过

来完成
pcl::io::savePNGFile(path, *hist);

但这是我得到的错误

warning: ‘void pcl::io::savePNGFile(const string&, const pcl::PointCloud<PointT>&) [with T = pcl::Histogram<50>, std::string = std::basic_string<char>]’ is deprecated (declared at /usr/local/include/pcl-1.7/pcl/io/png_io.h:123): pcl::io::savePNGFile<typename T> (file_name, cloud) is deprecated, please use a new generic function pcl::io::savePNGFile (file_name, cloud, field_name) with "rgb" as the field name. [-Wdeprecated-declarations]

/usr/local/include/pcl-1.7/pcl/io/png_io.h:129:9: error: ‘const struct pcl::Histogram<50>’ has no member named ‘r’

/usr/local/include/pcl-1.7/pcl/io/png_io.h:130:9: error: ‘const struct pcl::Histogram<50>’ has no member named ‘g’

/usr/local/include/pcl-1.7/pcl/io/png_io.h:131:9: error: ‘const struct pcl::Histogram<50>’ has no member named ‘b’

所以我不能这样做,因为它没有任何rgb字段,但我真的需要保存大量的直方图,而且我无法一直截屏。

1 个答案:

答案 0 :(得分:1)

我建议您使用PCL mailing list来解决这些具体问题。开发人员很可能会在那里回答。