<?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>Intel® Integrated Performance Primitives의 주제 Copy and extend border for Ipp32f image</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915427#M15042</link>
    <description>Hi all,&lt;BR /&gt;I'd like to extend an image in order to filter it. IPP already have three functions that may do this (ippiConstCopyBorder, ReplicateBorder,WrapBorder). The problem is that, those function seem to not accept Ipp32f image but only (8u,16s,32) so how can I do to extend my Ipp32f image ?&lt;BR /&gt;&lt;BR /&gt;Thank you for your help,&lt;BR /&gt;&lt;BR /&gt;Jaonary&lt;BR /&gt;</description>
    <pubDate>Sat, 22 Jul 2006 00:22:09 GMT</pubDate>
    <dc:creator>jaonary</dc:creator>
    <dc:date>2006-07-22T00:22:09Z</dc:date>
    <item>
      <title>Copy and extend border for Ipp32f image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915427#M15042</link>
      <description>Hi all,&lt;BR /&gt;I'd like to extend an image in order to filter it. IPP already have three functions that may do this (ippiConstCopyBorder, ReplicateBorder,WrapBorder). The problem is that, those function seem to not accept Ipp32f image but only (8u,16s,32) so how can I do to extend my Ipp32f image ?&lt;BR /&gt;&lt;BR /&gt;Thank you for your help,&lt;BR /&gt;&lt;BR /&gt;Jaonary&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Jul 2006 00:22:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915427#M15042</guid>
      <dc:creator>jaonary</dc:creator>
      <dc:date>2006-07-22T00:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy and extend border for Ipp32f image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915428#M15043</link>
      <description>&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Hi, &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Could you use 32s functions as an workaround? They expect to be working for 32f image.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;Chao&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2006 13:24:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915428#M15043</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2006-07-24T13:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Copy and extend border for Ipp32f image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915429#M15044</link>
      <description>Hi,&lt;BR /&gt;Here is the code of what I'm trying to do :&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt; Ipp32f* image0,*image1,*res;&lt;/PRE&gt;&lt;PRE&gt; int p_step0,p_step1;&lt;/PRE&gt;&lt;PRE&gt;&lt;BR /&gt; int w0 = 10;&lt;/PRE&gt;&lt;PRE&gt; int w1 = 12;&lt;/PRE&gt;&lt;PRE&gt; int h0 = 10;&lt;/PRE&gt;&lt;PRE&gt; int h1 = 10;&lt;/PRE&gt;&lt;PRE&gt;&lt;BR /&gt; image0 = ippiMalloc_32f_C1(w0,h0,&amp;amp;p_step0);&lt;/PRE&gt;&lt;PRE&gt; image1 = ippiMalloc_32f_C1(w1,h1,&amp;amp;p_step1);&lt;/PRE&gt;&lt;PRE&gt;&lt;BR /&gt; &lt;/PRE&gt;&lt;PRE&gt; for(int i=0;i&lt;W0&gt;=0.5;&lt;/W0&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;BR /&gt; IppiSize size0 = {w0,h0};&lt;/PRE&gt;&lt;PRE&gt; IppiSize size1 = {w1,h1};&lt;/PRE&gt;&lt;PRE&gt;&lt;BR /&gt; IppStatus stat;&lt;/PRE&gt;&lt;PRE&gt;&lt;BR /&gt; stat = ippiCopyConstBorder_32s_C1R(image0,p_step0,size0,&lt;/PRE&gt;&lt;PRE&gt;          image1,p_step1,size1,&lt;/PRE&gt;&lt;PRE&gt;          0,1,0);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;With this code I get a compilation error. In fact, the function &lt;/P&gt;&lt;PRE&gt;ippiCopyConstBorder_32s_C1R&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;exptects an Ipp32s* as input. If I do a static cast like this :&lt;/P&gt;&lt;PRE&gt;ippiCopyConstBorder_32s_C1R( (Ipp32s*)image0,p_step0,size0,&lt;/PRE&gt;&lt;PRE&gt;       (Ipp32s*)image1,p_step1,size1,&lt;/PRE&gt;&lt;PRE&gt;          0,1,0);&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;The compilation goes well but the resul is wrong : the first row is correct but the others are not set correctly. So it seems that if we want to handle Ipp32f datas with 32s functions there's something more to do. But I just can't figure it out.&lt;/P&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Jaonary&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Jul 2006 18:10:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915429#M15044</guid>
      <dc:creator>jaonary</dc:creator>
      <dc:date>2006-07-24T18:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Copy and extend border for Ipp32f image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915430#M15045</link>
      <description>you probably meant h1 = 12 (instead of 10)?</description>
      <pubDate>Tue, 01 Aug 2006 01:15:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Copy-and-extend-border-for-Ipp32f-image/m-p/915430#M15045</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-08-01T01:15:56Z</dc:date>
    </item>
  </channel>
</rss>

