<?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 Re: Help with ippiCopyReplicateBorder function in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884626#M10557</link>
    <description>&lt;P&gt;Vladimir,&lt;/P&gt;
&lt;P&gt;Thanks for the clarification. I guess for my filtering applicationthe in-place operation is not necessary since itadds extra steps to get the same final point (since the "not in-place" Copy operation creates the wanted image with the border in function call step). &lt;/P&gt;
&lt;P&gt;Thanks for your time,&lt;/P&gt;
&lt;P&gt;Petrovic&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2007 04:06:26 GMT</pubDate>
    <dc:creator>losh96</dc:creator>
    <dc:date>2007-02-06T04:06:26Z</dc:date>
    <item>
      <title>Help with ippiCopyReplicateBorder function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884624#M10555</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I am having trouble with using the ippiCopyReplicateBorder function when performing the in-place operation. I used the not-in-place operation without a problem but I get "Access violation reading location" errors when I try to use the "in-place" Copy version.&lt;BR /&gt;&lt;BR /&gt;I have a 1504x1504 byte image and I am trying to add a (16 pixel) border around in order to run the Median Filter function on the image. My confusion is what to set the "srcDstStep" argument to? I tried 1504 and 1536. I am not sure where my error is.&lt;BR /&gt;&lt;BR /&gt;Can I copy the whole image using the "in-place" operation and add the needed border to it? Then I would not need to create a copy of the image on which I perform the median filtering. &lt;BR /&gt;&lt;BR /&gt;Function call:&lt;BR /&gt;ippiCopyReplicateBorder_8u_C1IR(ippImg,srcDstStep,roi,roi2,height,width);&lt;BR /&gt;ippImg = 1504 by 1504 byte image&lt;BR /&gt;roi = 1504x1504&lt;BR /&gt;roi2 = 1536x1536&lt;BR /&gt;height = 16&lt;BR /&gt;width = 16&lt;BR /&gt;&lt;BR /&gt;Thanks for your help in advance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ippiCopyReplicateBorder_8u_C1IR(ippImg+stepBytes*10,500,roi4,roi3,16,16);</description>
      <pubDate>Tue, 06 Feb 2007 03:30:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884624#M10555</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2007-02-06T03:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ippiCopyReplicateBorder function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884625#M10556</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;in case of in-place operations, your source image should be located inside your destination image. It means you allocate extra memory, taking into account border size, then somehow you place your data inside that bigger image (you point pSrc to the first pixel of your inner image). The line step is step in your outer image. The function will just set border pixels into specified value, no image copy operation is needed in that case.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2007 03:50:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884625#M10556</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-02-06T03:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ippiCopyReplicateBorder function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884626#M10557</link>
      <description>&lt;P&gt;Vladimir,&lt;/P&gt;
&lt;P&gt;Thanks for the clarification. I guess for my filtering applicationthe in-place operation is not necessary since itadds extra steps to get the same final point (since the "not in-place" Copy operation creates the wanted image with the border in function call step). &lt;/P&gt;
&lt;P&gt;Thanks for your time,&lt;/P&gt;
&lt;P&gt;Petrovic&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2007 04:06:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884626#M10557</guid>
      <dc:creator>losh96</dc:creator>
      <dc:date>2007-02-06T04:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ippiCopyReplicateBorder function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884627#M10558</link>
      <description>&lt;P&gt;It is up to you to decide what is better fits your needs. Just note from my side is that with in-place operations you use less memory, so more chances to keep everything in cache (at least L2 in case of your big images)&lt;/P&gt;
&lt;P&gt;Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2007 04:11:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-ippiCopyReplicateBorder-function/m-p/884627#M10558</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-02-06T04:11:52Z</dc:date>
    </item>
  </channel>
</rss>

