解读void loadData(int argc, char **argv, std::vector<PLY, Eigen::aligned_allocator<PLY> > &models)
时间: 2024-06-10 21:05:56 浏览: 140
这是一段 C++ 代码,其中的函数名为 `loadData`,它有三个输入参数,分别为 `int argc`,`char **argv` 和 `std::vector<PLY, Eigen::aligned_allocator<PLY> >`。其中,`int argc` 表示命令行输入参数的数量,`char **argv` 表示命令行输入的参数数组,`std::vector<PLY, Eigen::aligned_allocator<PLY> >` 表示一个模板参数为 `PLY` 类型的向量(vector),其中 `Eigen::aligned_allocator<PLY>` 是一种用于分配内存的内存分配器。这段代码的作用是加载一个或多个 `PLY` 类型的文件。
阅读全文