<?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 Hi pvonkaenel.For in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954504#M18909</link>
    <description>&lt;P&gt;Hi pvonkaenel.&lt;/P&gt;
&lt;P&gt;For&amp;nbsp;ippiMorphOpenBorder_8u_C1R&amp;nbsp;and ippiMorphOpenBorder_16u_C1R&amp;nbsp;uses the same pipeline as for 32f.&lt;/P&gt;
&lt;P&gt;The difference is pMorthSpec instead of pState and borderType&amp;nbsp;allowed to be one&amp;nbsp;of ippBorderConst / ippBorderRepl / ippBorderInMem[Left&lt;BR /&gt;&amp;nbsp;| Right | Top | Bottom]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Apr 2014 10:21:39 GMT</pubDate>
    <dc:creator>Andrey_B_Intel</dc:creator>
    <dc:date>2014-04-03T10:21:39Z</dc:date>
    <item>
      <title>ippiMorphOpenBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954497#M18902</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm porting from Ipp 7.0.6 to Ipp 8.1.0 a function that use&amp;nbsp;ippiMorphOpenBorder_32f_C1R. Code doesn't compile with this error&lt;/P&gt;

&lt;P&gt;error C2660: 'ippiMorphOpenBorder_32f_C1R' : function does not take 7 arguments.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I've find a &lt;STRONG&gt;difference&lt;/STRONG&gt; from&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Ipp 8.1.0 documentation and function prototype in ippcv.h&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Documentation states :&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;IppStatus ippiMorphOpenBorder_&amp;lt;mod&amp;gt;(const Ipp&amp;lt;datatype&amp;gt;*&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;pSrc&lt;/SPAN&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;, int&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;srcStep&lt;/SPAN&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;, Ipp&amp;lt;datatype&amp;gt;*&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;pDst&lt;/SPAN&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;, int&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;dstStep&lt;/SPAN&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;, IppiSize&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;roiSize&lt;/SPAN&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;, IppiBorderType&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;borderType&lt;/SPAN&gt;&lt;SPAN class="kwd" style="font-family: 'Courier New', Courier, monospace;"&gt;, IppiMorphAdvState*&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="var" style="font-style: italic; font-family: 'Courier New', Courier, monospace;"&gt;pState&lt;/SPAN&gt;&lt;SPAN class="delim" style="font-family: 'Courier New', Courier, monospace;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-family: 'Courier New', Courier, monospace; font-size: 1em; line-height: 1.5;"&gt;Header function definition :&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;IPPAPI( IppStatus, ippiMorphOpenBorder_32f_C1R,(&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const Ipp32f* pSrc, int srcStep, Ipp32f* pDst, int dstStep,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IppiSize roiSize, IppiBorderType borderType, Ipp32f borderValue, const IppiMorphAdvState* pMorthSpec, Ipp8u* pBuffer ))&lt;/P&gt;

&lt;P&gt;Assuming that the header definition is right it's not clear for me which is the size of pBuffer and which function I must call to obtain this size.&lt;/P&gt;

&lt;P&gt;Thank's in advance&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2014 09:31:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954497#M18902</guid>
      <dc:creator>giacomo_c_</dc:creator>
      <dc:date>2014-03-20T09:31:39Z</dc:date>
    </item>
    <item>
      <title>pls look here -- you will see</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954498#M18903</link>
      <description>&lt;P&gt;pls look here -- you will see the example how to make the call of this function -&amp;nbsp;http://software.intel.com/en-us/forums/topic/293581&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2014 03:34:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954498#M18903</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2014-03-21T03:34:47Z</dc:date>
    </item>
    <item>
      <title>regard to documentation - It</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954499#M18904</link>
      <description>&lt;P&gt;regard to documentation - It looks like the description is not correct - we will check it. Thanks for the issue.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2014 03:45:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954499#M18904</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2014-03-21T03:45:29Z</dc:date>
    </item>
    <item>
      <title>The example at http:/</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954500#M18905</link>
      <description>&lt;P&gt;The example at&amp;nbsp;&lt;A href="http://software.intel.com/en-us/forums/topic/293581" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px;"&gt;http://software.intel.com/en-us/forums/topic/293581&lt;/A&gt;&amp;nbsp;seam broken ....&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px;"&gt;// I got ippStsMemAllocErr error over here.&amp;nbsp;&lt;/SPAN&gt;&lt;BR style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px;" /&gt;
	&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px;"&gt;// I am not sure about this error (error on the pMask or pState?).&lt;/SPAN&gt;&lt;BR style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px;" /&gt;
	&lt;B style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px;"&gt;stat = ippiMorphAdvInitAlloc_32f_C1R(&amp;amp;pState, imgSz, pMask, maskSz, anchorPt);&amp;nbsp;&lt;/B&gt;&lt;/P&gt;

&lt;P&gt;and probably (year 2009) refer to Ipp version before 8.1!!&lt;/P&gt;

&lt;P&gt;The right function prototype now is :&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 1.5; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;IPPAPI( IppStatus, ippiMorphOpenBorder_32f_C1R,(&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const Ipp32f* pSrc, int srcStep, Ipp32f* pDst, int dstStep,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IppiSize roiSize, IppiBorderType borderType, Ipp32f borderValue, const IppiMorphAdvState* pMorthSpec, Ipp8u* pBuffer ))&lt;/P&gt;

&lt;P&gt;and my problem is how to calculate pBuffer size. Now I'm using&amp;nbsp;&lt;SPAN style="font-weight: 700;"&gt;ippiMorphAdvGetSize_32f_C1R&lt;/SPAN&gt;&amp;nbsp;but I'm not sure.&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2014 08:20:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954500#M18905</guid>
      <dc:creator>giacomo_c_</dc:creator>
      <dc:date>2014-03-21T08:20:13Z</dc:date>
    </item>
    <item>
      <title>Is there an update on this</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954501#M18906</link>
      <description>&lt;P&gt;Is there an update on this topic?&amp;nbsp; I also just ran into the upgrade error listed here, and was not able to find any useful documentation on this API change.&amp;nbsp; Note that I have never run into an IPP API change before .. deprecation yes, but never a change.&amp;nbsp; Is this a bug or was it intentional?&amp;nbsp; Note that there also seems to be problems with the #pragmas in 8.1 which identify how to link with the different libraries (static vs. dynamic, and sequential vs. threaded).&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Peter&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2014 20:16:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954501#M18906</guid>
      <dc:creator>pvonkaenel</dc:creator>
      <dc:date>2014-03-24T20:16:26Z</dc:date>
    </item>
    <item>
      <title>Hi pvonkaenel.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954502#M18907</link>
      <description>&lt;P&gt;Hi pvonkaenel.&lt;BR /&gt;
	I am so sorry about inconvinience for you. But we are trying to do IPP library as best as possible.&lt;BR /&gt;
	In one recent version of IPP libray the some new advanced mophology functions were added. For example&lt;BR /&gt;
	IPPAPI( IppStatus, ippiMorphOpenBorder_16u_C1R,(&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; const Ipp16u* pSrc, int srcStep, Ipp16u* pDst, int dstStep,&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IppiSize roiSize, IppiBorderType borderType, Ipp16u borderValue, const IppiMorphAdvState* pMorthSpec, Ipp8u* pBuffer ))&lt;BR /&gt;
	It supports InMemory,Replicate and Const border types and allows processing images in parallel mode.&lt;BR /&gt;
	To add the same support of borders the API of already presented functions was changed too.&lt;/P&gt;

&lt;P&gt;To call ippiMorphOpenBorder_32f_C1R please use pipeline below&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IppStatus status;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int specSize = 0, bufferSize = 0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IppiMorphAdvState* pState;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ipp8u* pBuffer;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = ippiMorphAdvGetSize_32f_C1R( roiSize, maskSize, &amp;amp;specSize, &amp;amp;bufferSize );&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pState = (IppiMorphAdvState*)ippsMalloc_8u(specSize);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pBuffer = (Ipp8u*)ippsMalloc_8u(bufferSize);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = ippiMorphAdvInit_32f_C1R( roiSize, pMask, maskSize, pState, pBuffer );&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = ippiMorphOpenBorder_32f_C1R (pSrc, srcStep, pDst, dstStep,&amp;nbsp; roiSize, border, borderValue, pState, pBuffer);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return status;&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;In nearest release, the documentation will be aligned with headers.&lt;BR /&gt;
	Thank you for using IPP.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2014 09:16:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954502#M18907</guid>
      <dc:creator>Andrey_B_Intel</dc:creator>
      <dc:date>2014-03-26T09:16:18Z</dc:date>
    </item>
    <item>
      <title>Hi Andrey,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954503#M18908</link>
      <description>&lt;P&gt;Hi Andrey,&lt;/P&gt;

&lt;P&gt;Thanks for the response - it does help a bit in figuring out how to change my existing call. &amp;nbsp;Is it fair to say that the parameters for the new 16u_C1R call should match the functionality for the changed parameters in the 8u_C1R call I have been using?&lt;/P&gt;

&lt;P&gt;Thanks again,&lt;/P&gt;

&lt;P&gt;Peter&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2014 15:13:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954503#M18908</guid>
      <dc:creator>pvonkaenel</dc:creator>
      <dc:date>2014-03-27T15:13:27Z</dc:date>
    </item>
    <item>
      <title>Hi pvonkaenel.For</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954504#M18909</link>
      <description>&lt;P&gt;Hi pvonkaenel.&lt;/P&gt;
&lt;P&gt;For&amp;nbsp;ippiMorphOpenBorder_8u_C1R&amp;nbsp;and ippiMorphOpenBorder_16u_C1R&amp;nbsp;uses the same pipeline as for 32f.&lt;/P&gt;
&lt;P&gt;The difference is pMorthSpec instead of pState and borderType&amp;nbsp;allowed to be one&amp;nbsp;of ippBorderConst / ippBorderRepl / ippBorderInMem[Left&lt;BR /&gt;&amp;nbsp;| Right | Top | Bottom]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2014 10:21:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954504#M18909</guid>
      <dc:creator>Andrey_B_Intel</dc:creator>
      <dc:date>2014-04-03T10:21:39Z</dc:date>
    </item>
    <item>
      <title>Thanks.  I've been able to</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954505#M18910</link>
      <description>&lt;P&gt;Thanks. &amp;nbsp;I've been able to change my call.&lt;/P&gt;

&lt;P&gt;Peter&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2014 11:29:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiMorphOpenBorder-32f-C1R/m-p/954505#M18910</guid>
      <dc:creator>pvonkaenel</dc:creator>
      <dc:date>2014-04-03T11:29:44Z</dc:date>
    </item>
  </channel>
</rss>

