<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"><<a href="mailto:jmrbcu@gmail.com">jmrbcu@gmail.com</a>></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 <<a href="mailto:jothybasu@gmail.com">jothybasu@gmail.com</a>> wrote:<br>
> Some sort of padding befor rotation should help.<br>
><br>
> Jothy<br>
><br>
> On Fri, Jul 9, 2010 at 12:32 PM, Srinivasa Rao <<a href="mailto:srinivas@rsageventures.com">srinivas@rsageventures.com</a>><br>
> wrote:<br>
>><br>
>> Hi All,<br>
>> I am trying to rotate vtkImageData using vtkTransform and<br>
>> vtkImageReslice, i used following code to do the job.<br>
>><br>
>> vtkImageData * rotateImage(vtkImageData *data, QPointF center, int angle)<br>
>> {<br>
>> vtkTransform *imageTransform = vtkTransform::New();<br>
>> imageTransform->PostMultiply();<br>
>> imageTransform->Translate(center.x(), center.y(), 0.0);<br>
>> imageTransform->RotateZ(angle);<br>
>> imageTransform->Translate(-center.x(), -center.y(), 0.0);<br>
>> // Now create filter and set previously created transformation<br>
>> vtkImageReslice *algo = vtkImageReslice::New();<br>
>> algo->SetInput(data);<br>
>> algo->SetInformationInput(data);<br>
>> algo->SetResliceTransform(imageTransform);<br>
>> algo->SetInterpolationModeToLinear();<br>
>> algo->Update();<br>
>> return algo->GetOutput();<br>
>> }<br>
>><br>
>> When i try to rotate image data, after rotation the data which is outside<br>
>> the image is getting lost.<br>
>> Is there a way around to rotate image data without data loss..<br>
>> thanks in advance.<br>
>> regards,<br>
>> srinivas.<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<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://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
>><br>
><br>
><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<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://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
><br>
><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>