我安装了pcl。 select date_time, value
from t1,
(select floor(unix_timestamp(date_time)/(15 * 60)) h,
min(value) min, max(value) max
from t1
group by h
) t
where value in (min, max)
and floor(unix_timestamp(date_time)/(15 * 60)) = h
下有一个pcl文件夹。我将user/include/pcl-1.7
行添加到cpp文件中。在终端上,我尝试编译这个文件。
#include <pcl/ModelCoefficients.h>
如何解决此错误?
答案 0 :(得分:0)
使用<template name="foo">
告诉编译器在-I
路径中搜索头文件:
user/include/plc-1.7
更多信息: