I have a reader which outputs a Multi-block Dataset containing a polygonal mesh of vertices in one block. I am trying to add another block to contain a 2D image on a plane. I am reading in the image as such:<br><br>[code]<br>
 vtkSmartPointer&lt;vtkImageReader2Factory&gt; imageFactory =<br>     vtkSmartPointer&lt;vtkImageReader2Factory&gt;::New();<br> vtkSmartPointer&lt;vtkImageReader2&gt; reader =<br>      imageFactory-&gt;CreateImageReader2(filename);<br>
 reader-&gt;SetFileName(filename);<br> reader-&gt;Update();<br><br> vtkSmartPointer&lt;vtkTextureMapToPlane&gt; texturePlane =<br>     vtkSmartPointer&lt;vtkTextureMapToPlane&gt;::New();<br> texturePlane-&gt;SetInput(reader-&gt;GetOutput());<br>
 texturePlane-&gt;SetOrigin(0,0,0);<br> texturePlane-&gt;SetPoint1(1, 0, 0);<br> texturePlane-&gt;SetPoint2(0, 1, 0);<br><br> mb-&gt;SetBlock(1, texturePlane-&gt;GetOutput());<br>[\code]<br><br>Under the Information Tab in the Object Inspector, I see the Image (Uniform Rectilinear Grid) under the Multi-block DataSet. It has no cells or points. The image does not show up in the 3d view either.<br>
<br>How can I get the image to show up?<br><br>Thanks,<br>Brian Panneton<br>