Hi everyone,<br><br>I have a small problem when zooming out of an image.<br><br>I have a vtkImageReslice and I use the transformation object to zoom as follows:<br><br>m_transform-&gt;Scale(scaling, scaling, 1.0);&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;  
<br>m_slicer-&gt;SetResliceTransform(m_transform);<br>Render();<br><br>This works perfectly with no problems.<br><br>However, now I wanted the zoom to ahppen around the Center of the image and I wanted the reslicer to update itself before I call Render and some other methods...
<br>So, I have the following:<br><br>this-&gt;m_slicer-&gt;Update();<br>Center();<br>Render();<br><br>However, it seems that it requests seem to be out of bounds.<br><br>I tried calling SetOutputExtentToDefault() but to no avail.
<br><br>I am basically getting a bunch of the following error as I zoom out:<br><br>&lt;b&gt;<br>vtk-5.0.1/Filtering/vtkStreamingDemandDrivenPipeline.cxx, line 628<br>vtkStreamingDemandDrivenPipeline (0xabd0f0): The update extent specified in the information for output port 0 on algorithm Reslicer(0xaa8ee0) is 84 607 35 501 0 0, which is outside the whole extent 0 255 0 197 0 0.
<br>&lt;/b&gt;<br><br>Does anyone know how I can fix this?? Should I manually set the extent??<br><br>Thanks,<br>Anja<br>