From 7ad163c642079603fda78d7bd767e092611fd5fb Mon Sep 17 00:00:00 2001 From: Arne Zitting Date: Thu, 7 May 2026 19:30:02 +0200 Subject: [PATCH] =?UTF-8?q?SOR=20entfernt=20(zu=20rechenaufw=C3=A4ndig=20b?= =?UTF-8?q?ei=20gro=C3=9Fer=20Punktanzahl)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloudcompare_workflow.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cloudcompare_workflow.py b/cloudcompare_workflow.py index 6c4f295..4d8c46f 100644 --- a/cloudcompare_workflow.py +++ b/cloudcompare_workflow.py @@ -3,8 +3,7 @@ # # Arbeitsschritte: # 1. Subsample - Punktdichte verringern -# 2. SOR - Statistical Outlier Removal - Ausreißer eliminieren -# 3. NOISE FILTER - Isolierte Punkte/Inseln entfernen +# 2. NOISE FILTER - Isolierte Punkte/Inseln entfernen # # zur Benutzung muss die Variable "cloudComprePath" korrekt gesetzt werden! # @@ -32,9 +31,7 @@ cloudComprePath = "C:\Program Files\CloudCompare\CloudCompare.exe" # minimale Distanz zwischen zwei Punkten (in Meter) subSampleDistance = "0.01" -# Ausreißer eliminieren - Anzahl der betrachteten Nachbarpunkte -sorPointCount = "20" -# Radius +# Radius für Suche nach Nachbarn (in Meter) noiseRadius = "0.02" # Verarbeitungsbefehl @@ -42,7 +39,6 @@ command = [ cloudComprePath, "-O", filename, "-SS", "SPATIAL", subSampleDistance, - "-SOR", sorPointCount, "2", "-NOISE", "RADIUS", noiseRadius, "REL", "1.0", "RIP", "-C_EXPORT_FMT", "LAS", "-SAVE_CLOUDS", "FILE", outname