Commit b4b09546ffdcfbcfa16f049e68f4c21bc923a7b3

Authored by Paulo Henrique Junqueira Amorim
1 parent 90911e2a

FIX: Cleaned seam from parallel surface

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
invesalius/data/surface_process.py
... ... @@ -94,7 +94,8 @@ class SurfaceProcess(multiprocessing.Process):
94 94 decimation.SetInput(polydata)
95 95 decimation.SetTargetReduction(0.3)
96 96 decimation.PreserveTopologyOn()
97   - #decimation.SplittingOff()
  97 + decimation.SplittingOff()
  98 + decimation.BoundaryVertexDeletionOff()
98 99 polydata = decimation.GetOutput()
99 100  
100 101 #decimation = vtk.vtkQuadricClustering()
... ...