├── .gitattributes ├── .gitignore ├── .qmake.stash ├── Calibrate.cpp ├── Calibrate.h ├── Calibration.ifg ├── CloudProcess.cpp ├── CloudProcess.h ├── ImageProcess.cpp ├── ImageProcess.h ├── LineLaser3DScan.pro ├── LineLaser3DScan.sln ├── LineLaser3DScan.vcxproj ├── LineLaser3DScan.vcxproj.filters ├── README.md ├── Threads.cpp ├── Threads.h ├── asd.pcd ├── hanfeng.pcd ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── ui_mainwindow.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/.gitignore -------------------------------------------------------------------------------- /.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/.qmake.stash -------------------------------------------------------------------------------- /Calibrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/Calibrate.cpp -------------------------------------------------------------------------------- /Calibrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/Calibrate.h -------------------------------------------------------------------------------- /Calibration.ifg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/Calibration.ifg -------------------------------------------------------------------------------- /CloudProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/CloudProcess.cpp -------------------------------------------------------------------------------- /CloudProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/CloudProcess.h -------------------------------------------------------------------------------- /ImageProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/ImageProcess.cpp -------------------------------------------------------------------------------- /ImageProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/ImageProcess.h -------------------------------------------------------------------------------- /LineLaser3DScan.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/LineLaser3DScan.pro -------------------------------------------------------------------------------- /LineLaser3DScan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/LineLaser3DScan.sln -------------------------------------------------------------------------------- /LineLaser3DScan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/LineLaser3DScan.vcxproj -------------------------------------------------------------------------------- /LineLaser3DScan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/LineLaser3DScan.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LineLaser3DScan 2 | QT5 VTK8 PCL11 3 | 线激光三维重建 4 | -------------------------------------------------------------------------------- /Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/Threads.cpp -------------------------------------------------------------------------------- /Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/Threads.h -------------------------------------------------------------------------------- /asd.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/asd.pcd -------------------------------------------------------------------------------- /hanfeng.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/hanfeng.pcd -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ader47/LineLaser3DScan/HEAD/ui_mainwindow.h --------------------------------------------------------------------------------