Hi,<br><br>I am trying to debug some mesh partitioning algorithm, and
need to label the points of the new a unstructured vtk (sub-)grid
according to the global numbering of the old mesh. I have tried the
vtkLabeledDataMapper in combination with vtkIdFilter after setting the
global numbering as field data of the unstructured mesh given as input
to the vtkIdFilter, but I guess this is not the way to go (at least, I
can&#39;t get it to work).<br>
<br>This is my, probably retarded, attempt:<br><br>&nbsp;&nbsp;&nbsp; def add_point_labels(self, labels=None):<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm = vtk.vtkLabeledDataMapper()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm.SetLabelFormat(&quot;%g&quot;)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ids = vtk.vtkIdFilter()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if labels != None:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arr = vtk.vtkIdTypeArray()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arr.SetVoidArray(labels, len(labels), 1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arr.SetName(&quot;point labels&quot;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.vtkgrid.GetFieldData().AddArray(arr)<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ids.SetInput(self.vtkgrid)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ids.SetFieldData(1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm.SetFieldDataArray(0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm.SetLabelModeToLabelFieldData()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ids.SetInput(self.vtkgrid)<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ids.PointIdsOn()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ids.FieldDataOn()<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm.SetInputConnection(ids.GetOutputPort())<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm.GetLabelTextProperty().SetColor(0, 0, 0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ldm.GetLabelTextProperty().BoldOn()<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pointLabels = vtk.vtkActor2D()<br clear="all"><br>From
my understanding of the nightly documentation, it should be possible to
do what I want, but the example provided online doesn&#39;t cover this
corner. Any help is greatly appreciated.<br>
<br>Sincerely,<br clear="all"><br>-- <br>Ola Skavhaug<br>