<div dir="ltr">Hi,<div><br></div><div>Three things:</div><div><br></div><div>1). A possibly simpler way to tell the mapper which array to color by is:</div><div><br></div><div><span style="font-size:12.8px">mapper-></span><span style="font-size:12.8px">SetScalarModeToUseCellFieldData(); // note this is different form what you had</span><span style="color:rgb(0,0,0);font-family:Roboto,sans-serif;font-size:14px;white-space:nowrap;background-color:rgb(247,248,251)"><br></span></div><div><span style="font-size:12.8px">mapper->SelectColorArray(arrayName);</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">This does not require you to go through setting up the active scalars in the cell data as you have done in your code. That will work, but the way I suggest takes fewer lines of code.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">2). The problem you see is likely that you need to specify a lookup table range that matches your data range. Try calling</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">mapper->SetScalarRange(min, max);</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">where min and max are the min and max of your array.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">3). The default color map in VTK is not the same as in ParaView, so if you don't see a direct match after doing 2). above, don't worry. You'll just need to specify a different lookup table.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">HTH,</span></div><div><span style="font-size:12.8px">Cory</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 7, 2015 at 11:03 AM, joaoroberto88 <span dir="ltr"><<a href="mailto:joaorobertojr88@gmail.com" target="_blank">joaorobertojr88@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello VTK Users,<br>
<br>
I'm facing a problem reading a legacy VTK file that stores a<br>
vtkUnstructuredGrid with some scalar arrays. Specifically, I'm interested on<br>
waterSurfaceElevation array. When I open it on Paraview it displays<br>
correctly (please see attached), but when I try to render it in my own<br>
application a wrong result is shown (attached). Could anyone help me? I'm<br>
using the code bellow to read and render the legacy file (available at<br>
<a href="https://www.dropbox.com/s/fgm1rgne32rd0qw/output-00000001.vtk?dl=0" rel="noreferrer" target="_blank">https://www.dropbox.com/s/fgm1rgne32rd0qw/output-00000001.vtk?dl=0</a>).<br>
<br>
std::string filename = "output-00000001.vtk";<br>
std::string arrayName = "waterSurfaceElevation";<br>
<br>
vtkSmartPointer<vtkGenericDataObjectReader> reader =<br>
vtkSmartPointer<vtkGenericDataObjectReader>::New();<br>
reader->SetFileName(filename.c_str());<br>
reader->Update();<br>
<br>
vtkSmartPointer<vtkUnstructuredGrid> unstructuredGrid =<br>
reader->GetUnstructuredGridOutput();<br>
unstructuredGrid->GetCellData()->SetActiveScalars(arrayName.c_str());<br>
<br>
vtkSmartPointer<vtkDataSetMapper> mapper =<br>
vtkSmartPointer<vtkDataSetMapper>::New();<br>
mapper->SetInputData(unstructuredGrid);<br>
mapper->SetScalarModeToUseCellData();<br>
<br>
vtkSmartPointer<vtkActor> meshActor = vtkSmartPointer<vtkActor>::New();<br>
meshActor->SetMapper(mapper->GetPolyDataMapper());<br>
<br>
// All rendering stuff allocated in class constructor<br>
renderer->AddActor(meshActor);<br>
renderer->ResetCamera();<br>
<br>
Thanks!<br>
<<a href="http://vtk.1045678.n5.nabble.com/file/n5734867/paraview.png" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.com/file/n5734867/paraview.png</a>><br>
<<a href="http://vtk.1045678.n5.nabble.com/file/n5734867/wrong_result.png" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.com/file/n5734867/wrong_result.png</a>><br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Issue-when-reading-unstructured-grid-on-VTK-legacy-file-tp5734867.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.com/Issue-when-reading-unstructured-grid-on-VTK-legacy-file-tp5734867.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Cory Quammen<br>R&D Engineer<br>Kitware, Inc.</div>
</div>