Почему реконструкция Пуассона PCL возвращает странный результат?C++

Программы на C++. Форум разработчиков
Anonymous
Почему реконструкция Пуассона PCL возвращает странный результат?

Сообщение Anonymous »

Я хочу загрузить файл ply, например Bunny, а затем выполнить реконструкцию по Пуассону. Для этого я использую следующий код:

Код: Выделить всё

#include
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace pcl;
using namespace std;

int testRecon()
{

string plyfile = R"(E:\bunny2.obj)";
PointCloud::Ptr cloud_in(new PointCloud());
int ret = pcl::io::loadOBJFile(plyfile, *cloud_in);
std::cout 

Подробнее здесь: [url]https://stackoverflow.com/questions/79347665/why-does-pcls-poisson-reconstruction-return-the-weird-result[/url]

Вернуться в «C++»