File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
python/plugins/processing/algs/lidar/fusion Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 2626__revision__ = '$Format:%H$'
2727
2828import os
29- import subprocess
3029from processing .core .parameters import ParameterFile
3130from processing .core .parameters import ParameterNumber
3231from processing .core .outputs import OutputFile
@@ -59,7 +58,7 @@ def processAlgorithm(self, progress):
5958 commands = [os .path .join (FusionUtils .FusionPath (), 'FilterData.exe' )]
6059 commands .append ('/verbose' )
6160 self .addAdvancedModifiersToCommand (commands )
62- commands .append ('outlier' )
61+ commands .append ('/ outlier' )
6362 commands .append (unicode (self .getParameterValue (self .VALUE )))
6463 commands .append (unicode (self .getParameterValue (self .WINDOWSIZE )))
6564 outFile = self .getOutputValue (self .OUTPUT )
@@ -71,5 +70,3 @@ def processAlgorithm(self, progress):
7170 FusionUtils .createFileList (files )
7271 commands .append (FusionUtils .tempFileListFilepath ())
7372 FusionUtils .runFusion (commands , progress )
74- p = subprocess .Popen (commands , shell = True )
75- p .wait ()
You can’t perform that action at this time.
0 commit comments