# cloudtool **Repository Path**: EricGao2020/cloudtool ## Basic Information - **Project Name**: cloudtool - **Description**: 基于QT的点云操作工具 - **Primary Language**: C++ - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 3 - **Created**: 2023-04-23 - **Last Updated**: 2025-06-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## CloudTool A 3D point cloud processing software base on PCL and QT; ![](images/cloudtool.png) ## Preview ### 1. Color ![](images/color.gif) ### 2. Normals ![](images/normals.gif) ### 3. Filters ![](images/filters.gif) ### 4. Cutting ![](images/cutting.gif) ### 5. Measure ![](images/measure.gif) ### 6. Segmetation ![](images/segmetation.gif) ### 7. Registration ![](images/registration.gif) ### 8. Surface ![](images/surface.gif) ## Depend on | Dependencies | Min Version | | ------------ | ------- | | QT | 5.12.0 | | PCL | 1.11.0 | | VTK (WITH_QT) | 8.2.0 | ## How to build ### Windows Compilers:MSCV2019 ```shell mkdir build cd build cmake -DCMAKE_PREFIX_PATH=D:\Qt\5.15.2\msvc2019_64 -Wno-dev .. cmake --build . --config Release --target cloudtool -j 14 -- cmake --build . --config Release --target install ``` ### Ubuntu 20.04 Compilers:GUN ```shell mkdir build cd build cmake .. make -j 14 make install ```