<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Replacement for ippiAddRotateShift()? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161755#M26639</link>
    <description>&lt;P&gt;I have to port some legacy code from IPP 7.0 to current IPP 9.0. Unfortunately the former function&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;ippiAddRotateShift (double xCenter, double yCenter, double angle, double * xShift, double * yShift) 
&lt;/PRE&gt;

&lt;P&gt;is deleted without replacement in IPP 9.0:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/ipp-dev-reference-appendix-c-removed-functions-for-image-and-video-processing"&gt;https://software.intel.com/en-us/ipp-dev-reference-appendix-c-removed-functions-for-image-and-video-processing&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;What's the calculation rule of that function? How can i calculate xShift and yShift?&lt;/P&gt;

&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
    <pubDate>Tue, 27 Mar 2018 19:55:39 GMT</pubDate>
    <dc:creator>Bayer__Stefan</dc:creator>
    <dc:date>2018-03-27T19:55:39Z</dc:date>
    <item>
      <title>Replacement for ippiAddRotateShift()?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161755#M26639</link>
      <description>&lt;P&gt;I have to port some legacy code from IPP 7.0 to current IPP 9.0. Unfortunately the former function&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;ippiAddRotateShift (double xCenter, double yCenter, double angle, double * xShift, double * yShift) 
&lt;/PRE&gt;

&lt;P&gt;is deleted without replacement in IPP 9.0:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/ipp-dev-reference-appendix-c-removed-functions-for-image-and-video-processing"&gt;https://software.intel.com/en-us/ipp-dev-reference-appendix-c-removed-functions-for-image-and-video-processing&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;What's the calculation rule of that function? How can i calculate xShift and yShift?&lt;/P&gt;

&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 19:55:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161755#M26639</guid>
      <dc:creator>Bayer__Stefan</dc:creator>
      <dc:date>2018-03-27T19:55:39Z</dc:date>
    </item>
    <item>
      <title>Hi Stefan,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161756#M26640</link>
      <description>&lt;P&gt;Hi Stefan,&lt;/P&gt;

&lt;P&gt;Please use the following code to compute xShift and yShift:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;void AddRotateShift(double xCenter, double yCenter, double angle, double *xShift, double *yShift)
{
    double  sx, sy;

    ippiGetRotateShift(xCenter, yCenter, angle, &amp;amp;sx, &amp;amp;sy);
    *xShift += sx;
    *yShift += sy;

    return;
}&lt;/PRE&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	Valentin&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 21:13:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161756#M26640</guid>
      <dc:creator>Valentin_K_Intel</dc:creator>
      <dc:date>2018-03-27T21:13:16Z</dc:date>
    </item>
    <item>
      <title>Thank you very much Valentin</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161757#M26641</link>
      <description>&lt;P&gt;&lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN&gt;Thank you very much &lt;/SPAN&gt;&lt;/SPAN&gt;Valentin &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;for your quick answer. &lt;/SPAN&gt;&lt;/SPAN&gt;Your suggestion works great!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 22:11:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacement-for-ippiAddRotateShift/m-p/1161757#M26641</guid>
      <dc:creator>Bayer__Stefan</dc:creator>
      <dc:date>2018-03-27T22:11:13Z</dc:date>
    </item>
  </channel>
</rss>

