<div dir="ltr">Hello,<div><br></div><div>I have a vtkMRMLModelnode that I want to combine two of its scalar overlays(labels) and generate a new set (union of given scalars). Here is what I do:</div><div><br></div><div>Labels = Model.GetPolyData().GetPointData()</div><div>Label1 = Labels.GetArray(1)  /* Label1(name:alpha) and Label2(name:betha) are vtkfloatarray with */</div><div>Label2 = Labels.GetArray(2)</div><div>calc = vtkArrayCalculator()</div><div>calc.AddScalarArrayName('alpha')</div><div>calc.AddScalarArrayName('betha')</div><div>calc.SetFunction('betha+alpha') // I am not sure if "+" will concatenate these two arrays??</div><div><br></div><div>Would you please correct my code if there is something wrong or missing?</div><div><br></div><div>Best,</div><div>SMB</div><div><br></div></div>