<div dir="ltr">I used vtkTransfor mtho rotate a vtkImageData.<br><br>Jothy<br><br><div class="gmail_quote">On Fri, Jul 9, 2010 at 2:52 PM, Lic. José M. Rodriguez Bacallao <span dir="ltr">&lt;<a href="mailto:jmrbcu@gmail.com">jmrbcu@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;">this may be a silly question:<br>
1- which is the correct preffered way to rotate(transform) an image,<br>
with the camera or with vtkImageReslice?<br>
2- does vtkImageReslice change/transform the pixel matrix?<br>
<div><div></div><div class="h5"><br>
<br>
On Fri, Jul 9, 2010 at 7:34 AM, Jothy &lt;<a href="mailto:jothybasu@gmail.com">jothybasu@gmail.com</a>&gt; wrote:<br>
&gt; Some sort of padding befor rotation should help.<br>
&gt;<br>
&gt; Jothy<br>
&gt;<br>
&gt; On Fri, Jul 9, 2010 at 12:32 PM, Srinivasa Rao &lt;<a href="mailto:srinivas@rsageventures.com">srinivas@rsageventures.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi All,<br>
&gt;&gt;    I am trying to rotate vtkImageData using vtkTransform and<br>
&gt;&gt; vtkImageReslice, i used following code to do the job.<br>
&gt;&gt;<br>
&gt;&gt; vtkImageData * rotateImage(vtkImageData *data, QPointF center, int angle)<br>
&gt;&gt; {<br>
&gt;&gt;         vtkTransform *imageTransform = vtkTransform::New();<br>
&gt;&gt;         imageTransform-&gt;PostMultiply();<br>
&gt;&gt;         imageTransform-&gt;Translate(center.x(), center.y(), 0.0);<br>
&gt;&gt;         imageTransform-&gt;RotateZ(angle);<br>
&gt;&gt;        imageTransform-&gt;Translate(-center.x(), -center.y(), 0.0);<br>
&gt;&gt;         // Now create filter and set previously created transformation<br>
&gt;&gt;         vtkImageReslice *algo = vtkImageReslice::New();<br>
&gt;&gt;         algo-&gt;SetInput(data);<br>
&gt;&gt;         algo-&gt;SetInformationInput(data);<br>
&gt;&gt;         algo-&gt;SetResliceTransform(imageTransform);<br>
&gt;&gt;         algo-&gt;SetInterpolationModeToLinear();<br>
&gt;&gt;         algo-&gt;Update();<br>
&gt;&gt;         return algo-&gt;GetOutput();<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; When i try to rotate image data, after rotation the data which is outside<br>
&gt;&gt; the image is getting lost.<br>
&gt;&gt; Is there a way around to rotate image data without data loss..<br>
&gt;&gt; thanks in advance.<br>
&gt;&gt; regards,<br>
&gt;&gt; srinivas.<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
</div></div>--<br>
Lic. José M. Rodriguez Bacallao<br>
Centro de Biofisica Medica<br>
-----------------------------------------------------------------<br>
Todos somos muy ignorantes, lo que ocurre es que no todos ignoramos lo mismo.<br>
<br>
Recuerda: El arca de Noe fue construida por aficionados, el titanic<br>
por profesionales<br>
-----------------------------------------------------------------<br>
</blockquote></div><br></div>