<?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 Problem with ippiFilterLaplace_8u_C3R (PXA270) in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiFilterLaplace-8u-C3R-PXA270/m-p/854827#M6975</link>
    <description>&lt;P&gt;I used IPP in my smartphone for a fast image processing.&lt;/P&gt;
&lt;P&gt;When I apply a ippiFilterLaplace_8u_C3R to my image buffer, the filter function&lt;BR /&gt;doesnot running completely. This means that, there is no change after running this filter&lt;BR /&gt;function which comes from IPP. In some case, program is halted immediately after running&lt;BR /&gt;filter function. (Size is correct. 240x320 image)&lt;BR /&gt;&lt;BR /&gt;I used Visual Studio 2005, amd Windows Mobile 5 SDK.&lt;BR /&gt;&lt;BR /&gt;The sample that I received from this forum works nicely on my smart phone. (C# wrapper)&lt;/P&gt;
&lt;P&gt;But, when I reproduce that library using C/C++, it isn't.&lt;/P&gt;
&lt;P&gt;Is anyone who can solve this problem?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The code sample isbelow&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;(Note that, pImageData is a BYTE* and has 320*240*3 bytes)&lt;BR /&gt;&lt;BR /&gt;Ipp8u *ipprgb = NULL;&lt;BR /&gt;Ipp8u *ippResult = NULL;&lt;BR /&gt;IppiSize size;&lt;/P&gt;
&lt;P&gt;size.width = 240;&lt;BR /&gt;size.height = 320;&lt;/P&gt;
&lt;P&gt;ipprgb = ippsMalloc_8u(size.width*size.height*3);&lt;BR /&gt;ippResult = ippsMalloc_8u(size.width*size.height*3);&lt;/P&gt;
&lt;P&gt;ippiCopy_8u_C3R(pImageData,size.width*3,ipprgb,size.width*3,size);&lt;/P&gt;
&lt;P&gt;ippiFilterLaplace_8u_C3R(ipprgb,&lt;BR /&gt;size.width*3,&lt;BR /&gt;m_tImg.pImageData,&lt;BR /&gt;size.width*3,&lt;BR /&gt;size,&lt;BR /&gt;ippMskSize3x3&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;ippiCopy_8u_C3R(ippResult,size.width*3,pImageData,size.width*3,size);&lt;/P&gt;</description>
    <pubDate>Sat, 16 Jun 2007 18:52:14 GMT</pubDate>
    <dc:creator>hi_alex_lim</dc:creator>
    <dc:date>2007-06-16T18:52:14Z</dc:date>
    <item>
      <title>Problem with ippiFilterLaplace_8u_C3R (PXA270)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiFilterLaplace-8u-C3R-PXA270/m-p/854827#M6975</link>
      <description>&lt;P&gt;I used IPP in my smartphone for a fast image processing.&lt;/P&gt;
&lt;P&gt;When I apply a ippiFilterLaplace_8u_C3R to my image buffer, the filter function&lt;BR /&gt;doesnot running completely. This means that, there is no change after running this filter&lt;BR /&gt;function which comes from IPP. In some case, program is halted immediately after running&lt;BR /&gt;filter function. (Size is correct. 240x320 image)&lt;BR /&gt;&lt;BR /&gt;I used Visual Studio 2005, amd Windows Mobile 5 SDK.&lt;BR /&gt;&lt;BR /&gt;The sample that I received from this forum works nicely on my smart phone. (C# wrapper)&lt;/P&gt;
&lt;P&gt;But, when I reproduce that library using C/C++, it isn't.&lt;/P&gt;
&lt;P&gt;Is anyone who can solve this problem?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The code sample isbelow&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;(Note that, pImageData is a BYTE* and has 320*240*3 bytes)&lt;BR /&gt;&lt;BR /&gt;Ipp8u *ipprgb = NULL;&lt;BR /&gt;Ipp8u *ippResult = NULL;&lt;BR /&gt;IppiSize size;&lt;/P&gt;
&lt;P&gt;size.width = 240;&lt;BR /&gt;size.height = 320;&lt;/P&gt;
&lt;P&gt;ipprgb = ippsMalloc_8u(size.width*size.height*3);&lt;BR /&gt;ippResult = ippsMalloc_8u(size.width*size.height*3);&lt;/P&gt;
&lt;P&gt;ippiCopy_8u_C3R(pImageData,size.width*3,ipprgb,size.width*3,size);&lt;/P&gt;
&lt;P&gt;ippiFilterLaplace_8u_C3R(ipprgb,&lt;BR /&gt;size.width*3,&lt;BR /&gt;m_tImg.pImageData,&lt;BR /&gt;size.width*3,&lt;BR /&gt;size,&lt;BR /&gt;ippMskSize3x3&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;ippiCopy_8u_C3R(ippResult,size.width*3,pImageData,size.width*3,size);&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jun 2007 18:52:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiFilterLaplace-8u-C3R-PXA270/m-p/854827#M6975</guid>
      <dc:creator>hi_alex_lim</dc:creator>
      <dc:date>2007-06-16T18:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ippiFilterLaplace_8u_C3R (PXA270)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiFilterLaplace-8u-C3R-PXA270/m-p/854828#M6976</link>
      <description>&lt;P class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Arial"&gt;Dear Customer,&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face="Arial" size="2"&gt;As you may know that Intel PXA27x processor has been sold to Marvell last year and the part of Intel IPP for PXA27x engineer team have been transferred to Marvell*, please check the related news at: &lt;/FONT&gt;&lt;A href="http://www.intel.com/pressroom/archive/releases/20060627corp.htm"&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;A href="http://www.intel.com/pressroom/archive/releases/20060627corp.htm" target="_blank"&gt;http://www.intel.com/pressroom/archive/releases/20060627corp.htm&lt;/A&gt;&lt;FONT size="2"&gt;&lt;FONT face="Arial"&gt; &lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;P&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face="Arial" size="2"&gt;That means Intel no longer produces any newer version of IPP for PXA products, if you'd like further assistance for particular this function for PXA27x platform, you may contact Marvell via &lt;/FONT&gt;&lt;A href="http://support.marvell.com/"&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;A href="http://support.marvell.com" target="_blank"&gt;http://support.marvell.com&lt;/A&gt;&lt;FONT face="Arial" size="2"&gt;. &lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;Thanks,&lt;BR /&gt;Ying S&lt;BR /&gt;Intel Corp.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1"&gt;&lt;FONT size="1"&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2007 06:44:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiFilterLaplace-8u-C3R-PXA270/m-p/854828#M6976</guid>
      <dc:creator>Ying_S_Intel</dc:creator>
      <dc:date>2007-06-27T06:44:53Z</dc:date>
    </item>
  </channel>
</rss>

