vtk4.2 is a really old version. I am not surprised that the example does not work. Is there a compelling reason why you cannot upgrade to a more recent version?<br><br>Bill<br><br><div class="gmail_quote">On Tue, Apr 26, 2011 at 4:34 PM, chrisyeshi <span dir="ltr">&lt;<a href="mailto:chrisyeshi@gmail.com">chrisyeshi@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Hi<br>
<br>
I have read the example<br>
<a href="http://www.vtk.org/Wiki/VTK/Examples/Visualization/TextureMapQuad" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Visualization/TextureMapQuad</a><br>
<a href="http://www.vtk.org/Wiki/VTK/Examples/Visualization/TextureMapQuad" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Visualization/TextureMapQuad</a><br>
But it doesn&#39;t work when I &quot;copy&quot; it to my application.<br>
My VTK is 4.2, so I cannot direct copy it. Instead, I rewrite it in the 4.2<br>
compatible way.<br>
The logic should be exactly the same...<br>
While my picture is a colorful picture, the quad is just white at the<br>
beginning.<br>
When I interact with the scene (rotate), it changes colors, which is weird,<br>
I have no code to make it respond to interactions.<br>
However, I do see a relationship between the colors and the picture&#39;s<br>
colors.<br>
<br>
Here&#39;s my codes:<br>
<br>
        vtkJPEGReader *reader = vtkJPEGReader::New();<br>
        std::string path = AnatomageApplicationImpl::GetApplicationPath();<br>
        reader-&gt;SetFileName(&quot;C:/Users/Yucong/Desktop/Samples/images.jpg&quot;);<br>
<br>
        vtkPoints *pts = vtkPoints::New();<br>
        pts-&gt;InsertNextPoint(0.0, 0.0, 0.0);<br>
        pts-&gt;InsertNextPoint(1.0, 0.0, 0.0);<br>
        pts-&gt;InsertNextPoint(1.0, 1.0, 0.0);<br>
        pts-&gt;InsertNextPoint(0.0, 1.0, 0.0);<br>
<br>
        vtkCellArray *polygons = vtkCellArray::New();<br>
        vtkPolygon *polygon = vtkPolygon::New();<br>
        polygon-&gt;GetPointIds()-&gt;SetNumberOfIds(4);<br>
        polygon-&gt;GetPointIds()-&gt;SetId(0, 0);<br>
        polygon-&gt;GetPointIds()-&gt;SetId(1, 1);<br>
        polygon-&gt;GetPointIds()-&gt;SetId(2, 2);<br>
        polygon-&gt;GetPointIds()-&gt;SetId(3, 3);<br>
<br>
        polygons-&gt;InsertNextCell(polygon);<br>
<br>
        vtkPolyData *quad = vtkPolyData::New();<br>
        quad-&gt;SetPoints(pts);<br>
        quad-&gt;SetPolys(polygons);<br>
<br>
        vtkFloatArray *textureCoordinates = vtkFloatArray::New();<br>
        textureCoordinates-&gt;SetNumberOfComponents(3);<br>
        textureCoordinates-&gt;SetName(&quot;TextureCoordinates&quot;);<br>
<br>
        float tuple[3] = {0.0, 0.0, 0.0};<br>
        textureCoordinates-&gt;InsertNextTuple(tuple);<br>
        tuple[0] = 1.0; tuple[1] = 0.0; tuple[2] = 0.0;<br>
        textureCoordinates-&gt;InsertNextTuple(tuple);<br>
        tuple[0] = 1.0; tuple[1] = 1.0; tuple[2] = 0.0;<br>
        textureCoordinates-&gt;InsertNextTuple(tuple);<br>
        tuple[0] = 0.0; tuple[1] = 1.0; tuple[2] = 0.0;<br>
        textureCoordinates-&gt;InsertNextTuple(tuple);<br>
<br>
        quad-&gt;GetPointData()-&gt;SetTCoords(textureCoordinates);<br>
<br>
        vtkTexture *texture = vtkTexture::New();<br>
        texture-&gt;InterpolateOff();<br>
        texture-&gt;RepeatOff();<br>
        texture-&gt;SetInput(reader-&gt;GetOutput());<br>
<br>
        vtkPolyDataMapper *mapper = vtkPolyDataMapper::New();<br>
        mapper-&gt;SetInput(quad);<br>
<br>
        vtkActor *actor = vtkActor::New();<br>
        actor-&gt;SetMapper(mapper);<br>
        actor-&gt;SetTexture(texture);<br>
<br>
        d_ctrlRenderer-&gt;AddVTKProp(actor);<br>
<br>
Please Help!~<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Texture-mapping-on-quad-tp4341973p4341973.html" target="_blank">http://vtk.1045678.n5.nabble.com/Texture-mapping-on-quad-tp4341973p4341973.html</a><br>

Sent from the VTK - Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <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: <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://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br>