<div dir="ltr">The time will be proportional to the number of slices in the volume.<div><br></div><div>I've pushed a change to github so that you can call the following method to speed things up:</div><div><br></div><div>  rectify->SetInterpolationModeToLinear();<br></div><div><br></div><div>Linear interpolation will be at least 10 times faster than sinc interpolation.</div><div>Just grab the latest master branch and this method will be available.</div><div><br></div><div>When I have some time, I'll dig into the sinc interpolation code to speed it up.</div><div>Right now it's just using vtkImageReslice and a 3D sinc kernel, but CT</div><div>rectification really only needs a one-dimensional kernel.</div><div><br></div><div> - David</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Nov 30, 2017 at 8:24 AM, satwik k <span dir="ltr"><<a href="mailto:satwik.k8@gmail.com" target="_blank">satwik.k8@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto">Last time when I used this API.. By mistake added in loop.. so it was taking more time... But now I moved it some where else method.. Now it is taking around 10sec... My doubt is, for 144 images.. it is taking this much extra time.. wht if have 1000images..? <div dir="auto"><br></div><div dir="auto">will it take same time or more?</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto">Regards,</div><div dir="auto">Satwik k</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Nov 30, 2017 19:31, "David Gobbi" <<a href="mailto:david.gobbi@gmail.com" target="_blank">david.gobbi@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Satwik,<div><br></div><div>I tested a 512x512x144 volume on my laptop, and it took 15 seconds.</div><div>So, no, that's not very fast.  The class uses a windowed sinc interpolator,</div><div>which is computationally expensive.  I could add an option to use linear</div><div>interpolation.  With linear interpolation it only takes 1 second.</div><div><br></div><div> - David</div><div><br></div><div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Nov 29, 2017 at 10:29 PM, Satwik <span dir="ltr"><<a href="mailto:satwik.k8@gmail.com" target="_blank">satwik.k8@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
Dimensions of my volume is (512, 512, 144).<br>
<br>
///My Code///<br>
vtkDICOMCTRectifier* m_rectify = vtkDICOMCTRectifier::New();<br>
m_rectify->SetEnableSMP(true);<br>
m_rectify->SetVolumeMatrix(d-><wbr>m_initOrient); //passing orientation matrix<br>
m_rectify->SetInputData(d->m_i<wbr>mageData); //passing image data<br>
m_rectify->Update();<br>
<br>
Regards,<br>
Satwik K.<br>
<div class="m_2159851193460829562m_-3182807702096780990HOEnZb"><div class="m_2159851193460829562m_-3182807702096780990h5"><br></div></div></blockquote></div></div></div></div>
</blockquote></div></div>
</div></div></blockquote></div><br></div>