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 26
26
__revision__ = '$Format:%H$'
27
27
28
28
import os
29
- import subprocess
30
29
from processing .core .parameters import ParameterFile
31
30
from processing .core .parameters import ParameterNumber
32
31
from processing .core .outputs import OutputFile
@@ -59,7 +58,7 @@ def processAlgorithm(self, progress):
59
58
commands = [os .path .join (FusionUtils .FusionPath (), 'FilterData.exe' )]
60
59
commands .append ('/verbose' )
61
60
self .addAdvancedModifiersToCommand (commands )
62
- commands .append ('outlier' )
61
+ commands .append ('/ outlier' )
63
62
commands .append (unicode (self .getParameterValue (self .VALUE )))
64
63
commands .append (unicode (self .getParameterValue (self .WINDOWSIZE )))
65
64
outFile = self .getOutputValue (self .OUTPUT )
@@ -71,5 +70,3 @@ def processAlgorithm(self, progress):
71
70
FusionUtils .createFileList (files )
72
71
commands .append (FusionUtils .tempFileListFilepath ())
73
72
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