Добавить PLY-загрузку и Docker Web UI с PCL-пайплайном.

PLY читается в FilePointCloudSource, CLI отдаёт геометрию в output JSON,
а Docker/FastAPI/Three.js дают веб-запуск пайплайна без конфликта libpq на хосте.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-18 10:39:34 +03:00
co-authored by Cursor
parent 98afe5af5a
commit 45b2ed6e22
17 changed files with 1332 additions and 36 deletions
@@ -0,0 +1,17 @@
#ifndef PLY_POINT_CLOUD_LOADER_H
#define PLY_POINT_CLOUD_LOADER_H
#include <QString>
#include <QVector>
#include "../../core/point_cloud_types.h"
namespace adapters
{
namespace sources
{
bool loadPointsFromPly(const QString &filePath, QVector<core::Point3f> &points, QString &errorText);
} // namespace sources
} // namespace adapters
#endif // PLY_POINT_CLOUD_LOADER_H