2019-02-14 06:09:54 +05:30
|
|
|
#!/usr/bin/env python3
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
import os,vtk
|
2013-11-27 01:49:27 +05:30
|
|
|
import damask
|
2016-04-14 03:33:40 +05:30
|
|
|
from collections import defaultdict
|
2014-12-19 00:56:52 +05:30
|
|
|
from optparse import OptionParser
|
2016-09-09 03:35:49 +05:30
|
|
|
from vtk.util import numpy_support
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2014-12-19 00:56:52 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption,
|
2019-02-17 02:50:10 +05:30
|
|
|
usage='%prog options [ASCIItable(s)]',
|
2016-09-09 03:35:49 +05:30
|
|
|
description = """Add scalar and RGB tuples from ASCIItable to existing VTK point cloud (.vtp).""",
|
|
|
|
version = scriptID)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
parser.add_option( '--vtk',
|
|
|
|
dest = 'vtk',
|
|
|
|
type = 'string', metavar = 'string',
|
2013-11-27 01:49:27 +05:30
|
|
|
help = 'VTK file name')
|
2016-04-14 03:33:40 +05:30
|
|
|
parser.add_option('-r', '--render',
|
|
|
|
dest = 'render',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'open output in VTK render window')
|
2016-09-15 05:29:26 +05:30
|
|
|
parser.add_option('-d', '--data',
|
|
|
|
dest = 'data',
|
2016-04-14 03:33:40 +05:30
|
|
|
action = 'extend', metavar = '<string LIST>',
|
2016-09-15 05:29:26 +05:30
|
|
|
help = 'scalar/vector value(s) label(s)')
|
2016-09-01 22:17:26 +05:30
|
|
|
parser.add_option('-t', '--tensor',
|
|
|
|
dest = 'tensor',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
|
|
|
help = 'tensor (3x3) value label(s)')
|
2016-05-13 12:58:54 +05:30
|
|
|
parser.add_option('-c', '--color', dest='color', action='extend',
|
|
|
|
metavar ='<string LIST>',
|
2013-11-27 01:49:27 +05:30
|
|
|
help = 'RGB color tuples')
|
|
|
|
|
2016-09-15 05:29:26 +05:30
|
|
|
parser.set_defaults(data = [],
|
2016-09-01 22:17:26 +05:30
|
|
|
tensor = [],
|
2016-04-14 03:33:40 +05:30
|
|
|
color = [],
|
|
|
|
)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
|
|
|
(options, filenames) = parser.parse_args()
|
|
|
|
|
2017-08-17 00:48:29 +05:30
|
|
|
if not options.vtk: parser.error('no VTK file specified.')
|
2016-04-14 03:33:40 +05:30
|
|
|
if not os.path.exists(options.vtk): parser.error('VTK file does not exist.')
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-02-26 05:18:40 +05:30
|
|
|
vtk_file,vtk_ext = os.path.splitext(options.vtk)
|
|
|
|
|
|
|
|
if vtk_ext == '.vtp':
|
2016-04-19 00:38:29 +05:30
|
|
|
reader = vtk.vtkXMLPolyDataReader()
|
|
|
|
reader.SetFileName(options.vtk)
|
|
|
|
reader.Update()
|
|
|
|
Polydata = reader.GetOutput()
|
2019-02-26 05:18:40 +05:30
|
|
|
elif vtk_ext == '.vtk':
|
2016-04-19 00:38:29 +05:30
|
|
|
reader = vtk.vtkGenericDataObjectReader()
|
|
|
|
reader.SetFileName(options.vtk)
|
|
|
|
reader.Update()
|
|
|
|
Polydata = reader.GetPolyDataOutput()
|
|
|
|
else:
|
2017-08-17 00:48:29 +05:30
|
|
|
parser.error('unsupported VTK file type extension.')
|
2016-04-19 00:38:29 +05:30
|
|
|
|
|
|
|
Npoints = Polydata.GetNumberOfPoints()
|
|
|
|
Ncells = Polydata.GetNumberOfCells()
|
|
|
|
Nvertices = Polydata.GetNumberOfVerts()
|
2013-11-27 01:49:27 +05:30
|
|
|
|
|
|
|
if Npoints != Ncells or Npoints != Nvertices:
|
2017-08-17 00:48:29 +05:30
|
|
|
parser.error('number of points, cells, and vertices in VTK differ from each other.')
|
2016-04-14 03:33:40 +05:30
|
|
|
|
2017-08-17 00:48:29 +05:30
|
|
|
damask.util.croak('{}: {} points/vertices/cells...'.format(options.vtk,Npoints))
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
for name in filenames:
|
|
|
|
try: table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False,
|
|
|
|
readonly = True)
|
|
|
|
except: continue
|
|
|
|
damask.util.report(scriptName, name)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
# --- interpret header ----------------------------------------------------------------------------
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
table.head_read()
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
remarks = []
|
|
|
|
errors = []
|
|
|
|
VTKarray = {}
|
|
|
|
active = defaultdict(list)
|
2016-09-01 22:17:26 +05:30
|
|
|
|
2017-08-17 00:48:29 +05:30
|
|
|
for datatype,dimension,label in [['data',0,options.data],
|
2016-09-01 22:17:26 +05:30
|
|
|
['tensor',9,options.tensor],
|
2016-09-09 03:35:49 +05:30
|
|
|
['color' ,3,options.color],
|
2016-04-14 03:33:40 +05:30
|
|
|
]:
|
|
|
|
for i,dim in enumerate(table.label_dimension(label)):
|
|
|
|
me = label[i]
|
2016-09-09 03:35:49 +05:30
|
|
|
if dim == -1: remarks.append('{} "{}" not found...'.format(datatype,me))
|
2017-08-17 00:48:29 +05:30
|
|
|
elif dimension > 0 \
|
|
|
|
and dim != dimension: remarks.append('"{}" not of dimension {}...'.format(me,dimension))
|
2016-04-14 03:33:40 +05:30
|
|
|
else:
|
2017-08-17 00:48:29 +05:30
|
|
|
remarks.append('adding {}{} "{}"...'.format(datatype if dim > 1 else 'scalar',
|
|
|
|
'' if dimension > 0 or dim == 1 else '[{}]'.format(dim),
|
|
|
|
me))
|
2016-04-14 03:33:40 +05:30
|
|
|
active[datatype].append(me)
|
|
|
|
|
|
|
|
if remarks != []: damask.util.croak(remarks)
|
|
|
|
if errors != []:
|
|
|
|
damask.util.croak(errors)
|
|
|
|
table.close(dismiss = True)
|
|
|
|
continue
|
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
# --------------------------------------- process and add data -----------------------------------
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
table.data_readArray([item for sublist in active.values() for item in sublist]) # read all requested data
|
2016-09-01 22:17:26 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
for datatype,labels in active.items(): # loop over scalar,color
|
|
|
|
for me in labels: # loop over all requested items
|
|
|
|
VTKtype = vtk.VTK_DOUBLE
|
|
|
|
VTKdata = table.data[:, table.label_indexrange(me)].copy() # copy to force contiguous layout
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
if datatype == 'color':
|
|
|
|
VTKtype = vtk.VTK_UNSIGNED_CHAR
|
|
|
|
VTKdata = (VTKdata*255).astype(int) # translate to 0..255 UCHAR
|
|
|
|
elif datatype == 'tensor':
|
|
|
|
VTKdata[:,1] = VTKdata[:,3] = 0.5*(VTKdata[:,1]+VTKdata[:,3])
|
|
|
|
VTKdata[:,2] = VTKdata[:,6] = 0.5*(VTKdata[:,2]+VTKdata[:,6])
|
|
|
|
VTKdata[:,5] = VTKdata[:,7] = 0.5*(VTKdata[:,5]+VTKdata[:,7])
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-15 00:36:00 +05:30
|
|
|
VTKarray[me] = numpy_support.numpy_to_vtk(num_array=VTKdata,deep=True,array_type=VTKtype)
|
2016-09-09 03:35:49 +05:30
|
|
|
VTKarray[me].SetName(me)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
if datatype == 'color':
|
|
|
|
Polydata.GetPointData().SetScalars(VTKarray[me])
|
|
|
|
Polydata.GetCellData().SetScalars(VTKarray[me])
|
|
|
|
else:
|
|
|
|
Polydata.GetPointData().AddArray(VTKarray[me])
|
|
|
|
Polydata.GetCellData().AddArray(VTKarray[me])
|
2016-04-14 03:33:40 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
|
|
|
|
table.input_close() # close input ASCII table
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-01 22:17:26 +05:30
|
|
|
# ------------------------------------------ output result ---------------------------------------
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
Polydata.Modified()
|
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
writer = vtk.vtkXMLPolyDataWriter()
|
|
|
|
writer.SetDataModeToBinary()
|
|
|
|
writer.SetCompressorTypeToZLib()
|
2019-03-09 05:10:50 +05:30
|
|
|
writer.SetFileName(vtk_file+'.'+writer.GetDefaultFileExtension())
|
2019-02-17 02:50:10 +05:30
|
|
|
writer.SetInputData(Polydata)
|
2016-04-14 03:33:40 +05:30
|
|
|
writer.Write()
|
|
|
|
|
2016-09-01 22:17:26 +05:30
|
|
|
# ------------------------------------------ render result ---------------------------------------
|
2016-04-14 03:33:40 +05:30
|
|
|
|
|
|
|
if options.render:
|
|
|
|
mapper = vtk.vtkDataSetMapper()
|
|
|
|
mapper.SetInputData(Polydata)
|
|
|
|
actor = vtk.vtkActor()
|
|
|
|
actor.SetMapper(mapper)
|
|
|
|
|
|
|
|
# Create the graphics structure. The renderer renders into the
|
2016-09-09 03:35:49 +05:30
|
|
|
# render window. The render window interactively captures mouse events
|
2016-04-14 03:33:40 +05:30
|
|
|
# and will perform appropriate camera or actor manipulation
|
|
|
|
# depending on the nature of the events.
|
|
|
|
|
|
|
|
ren = vtk.vtkRenderer()
|
|
|
|
|
|
|
|
renWin = vtk.vtkRenderWindow()
|
|
|
|
renWin.AddRenderer(ren)
|
|
|
|
|
|
|
|
ren.AddActor(actor)
|
|
|
|
ren.SetBackground(1, 1, 1)
|
|
|
|
renWin.SetSize(200, 200)
|
|
|
|
|
|
|
|
iren = vtk.vtkRenderWindowInteractor()
|
|
|
|
iren.SetRenderWindow(renWin)
|
2016-09-01 22:17:26 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
iren.Initialize()
|
|
|
|
renWin.Render()
|
|
|
|
iren.Start()
|