<div dir="ltr"><div><div><div><div><div><div>Thanks for your timely reply, Cory.<br></div>After reading some code of VTK, maybe I find the reason. When VTK reads one ply mesh with color, the color information is stored in scalars field of vtkPointData. I hope to find the shortest path with weight on the mesh.<br>
</div>In the implementation of vtkDijkstraGraphGeodesicPath, the weight is obtained from scalar field of the vtkPolyData.<br></div>So when I set the scalars, the color information of the mesh is overwritten.  I can only store color information or weight information, but not simultaneously.<br>
<br></div>Is there one way to use the color information and weight information at the same time?<br><br></div>Regards<br></div>Jogging Song <br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Aug 27, 2014 at 9:01 PM, Cory Quammen <span dir="ltr"><<a href="mailto:cory.quammen@kitware.com" target="_blank">cory.quammen@kitware.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Jogging,<br>
<br>
Without seeing any code, it's tough to tell you where to make the<br>
change. I'll assume you have a vtkMapper (or subclass) somewhere in<br>
your code, and I'll assume C++. To disable coloring by the scalar<br>
value, call<br>
<br>
mapper->ScalarVisibilityOff();<br>
<br>
I hope that helps,<br>
Cory<br>
<div><div class="h5"><br>
On Wed, Aug 27, 2014 at 4:03 AM, Jogging Song <<a href="mailto:joggingsong@gmail.com">joggingsong@gmail.com</a>> wrote:<br>
> Hi, all<br>
><br>
> I read one triangle mesh file from the disk. The mesh itself contains color<br>
> information. I can render the mesh correctly.  The color of rendered mesh is<br>
> from the color information of the mesh. To use the scalars, I call the<br>
> function SetScalars.  The color of the rendered mesh is changed and now the<br>
> color is from scalars. However I hope to use the color of the mesh. I can<br>
> find the answer from the internet. Can anyone help me?<br>
><br>
> Regards<br>
> Jogging Song<br>
><br>
</div></div>> _______________________________________________<br>
> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
><br>
> Visit other Kitware open-source projects at<br>
> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
><br>
> Please keep messages on-topic and check the VTK FAQ at:<br>
> <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
><br>
> Follow this link to subscribe/unsubscribe:<br>
> <a href="http://public.kitware.com/mailman/listinfo/vtkusers" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
><br>
</blockquote></div><br></div>