Export STL files from WinWerth, run Soll-Ist comparison, and view deviation reports.
Trigger STL export from WinWerth (Kontur -> VxVol -> Grafik3D -> Save), run Soll-Ist (nominal vs. actual) comparison against CAD reference models, and view deviation reports with color maps.
Check for completed scan data
curl -s http://localhost:4802/scan/status
/autopilot-scan firstTrigger STL export pipeline
curl -X POST http://localhost:4802/export/stl \
-H "Content-Type: application/json" \
-d '{"outputName": "<part-name>", "outputDir": "D:/CT-Scans/output"}'
curl -s http://localhost:4802/export/status
Verify STL output
curl -s http://localhost:4802/export/result
List available STL files
curl -s http://localhost:4802/export/list
Run Soll-Ist comparison (optional)
curl -X POST http://localhost:4802/analysis/soll-ist \
-H "Content-Type: application/json" \
-d '{"scanStl": "<scan-file>.stl", "referenceStl": "<cad-file>.stl", "tolerance": 0.05}'
View deviation report
curl -s http://localhost:4802/analysis/deviation-report?scan=<scan-file>
Export deviation report
curl -X POST http://localhost:4802/analysis/export-report \
-H "Content-Type: application/json" \
-d '{"scan": "<scan-file>", "format": "pdf"}'
/autopilot-scan — Run another scan with adjusted parameters if deviations are too high/autopilot-calibrate — Recalibrate if systematic deviations are detected/autopilot-status — View scan history and compare multiple measurements