<?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: ippFilterSharpen_8u_C1R crash in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991727#M22427</link>
    <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;filter window have achor point, so your image you are going to filter should be extended in memory to provide neccessary borders outside actual image&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Vladimir&lt;/DIV&gt;&lt;P&gt;Message Edited by vdudnik on &lt;SPAN class="date_text"&gt;05-13-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;07:49 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 May 2005 21:48:24 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2005-05-13T21:48:24Z</dc:date>
    <item>
      <title>ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991721#M22421</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I get access violation in &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;t7_ownPrevColV_8u() &lt;/DIV&gt;
&lt;DIV&gt;movq xmm0, mmword ptr [esi] &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;when trying to useabove function on640x480 picture. With smaller images everything seems to be ok. There is no crashif Iadd 550 tosource and destination pointer.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I have WindowsXP,Pentium4/HT2, IPP4.1&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;BTW:&lt;/DIV&gt;
&lt;DIV&gt;Where can I find release noteswith list of fixes for each IPP version ?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Apr 2005 02:14:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991721#M22421</guid>
      <dc:creator>kamildobk1</dc:creator>
      <dc:date>2005-04-28T02:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991722#M22422</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;could you please share code snippet to show how do you call this functions?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;/DIV&gt;
&lt;DIV&gt; Vladimir&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Apr 2005 18:14:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991722#M22422</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-04-28T18:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991723#M22423</link>
      <description>&lt;DIV&gt;BTW,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regarding IPP manual,youshould calculate starting point to applay this filter with formulae:&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT color="#000080" size="2"&gt;
&lt;P&gt;strtSrc = (Ipp8u*)pSrc - ( kHeight - anchor.y - 1 ) * srcStep - ( kWidth - anchor.x - 1 );&lt;/P&gt;&lt;FONT color="#000080" size="2"&gt;
&lt;P&gt;so foryour image (ifyou want to filter the whole image) strtSrc point should be at the upper left corner of the border and he should pass pSrc pointer to the function. It is users responsibility to provide appropriate border for correct function work.&lt;/P&gt;&lt;/FONT&gt;&lt;FONT face="Courier New CYR" color="#000080" size="2"&gt;
&lt;P&gt;Fffffbbbbbbbbbb&lt;BR /&gt;fffffbbbbbbbbbb&lt;BR /&gt;ffAffiiiiiiiiii&lt;BR /&gt;fffffiiiiiiiiii&lt;BR /&gt;fffffiiiiiiiiii&lt;BR /&gt;bbiiiiiiiiiiiii&lt;BR /&gt;bbiiiiiiiiiiiii&lt;/P&gt;&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;
&lt;P&gt;Here is an example for 5x5 mask, C1 image and anchor in the center of the kernel:&lt;/P&gt;
&lt;P&gt;f = filter mask&lt;BR /&gt;b = border&lt;BR /&gt;i = image&lt;BR /&gt;A = the anchor point and it should point to the same position as pSrc&lt;BR /&gt;F = the upper left corner or strtSrc point, from which filtering begins.&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Apr 2005 19:19:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991723#M22423</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-04-28T19:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991724#M22424</link>
      <description>Uff, now I see. This is in the chapter introduction and I read only documentation for the ippSharpen() function and couldn't find anything about border restrictions.&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Kamil</description>
      <pubDate>Fri, 29 Apr 2005 23:21:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991724#M22424</guid>
      <dc:creator>Maciej_K_</dc:creator>
      <dc:date>2005-04-29T23:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991725#M22425</link>
      <description>&lt;DIV&gt;Hi Kamil,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;great, I'm glad you solved issue. Do you have any comments about interface, usability or performance ofIPP functions you use? Are you satisfied with functionality offered by IPP?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;/DIV&gt;
&lt;DIV&gt; Vladimir&lt;/DIV&gt;</description>
      <pubDate>Sat, 30 Apr 2005 00:21:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991725#M22425</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-04-30T00:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991726#M22426</link>
      <description>&lt;DIV&gt;Hi &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I think that may be, the errors that I'm havingwith filters, owe to this problem also.&lt;/DIV&gt;
&lt;DIV&gt;(see the post "Getting started whit ipps...")&lt;/DIV&gt;
&lt;DIV&gt;Since other functions work perfectly, on the other hand, when I use some function of filters if the image is big, sometimes it crash.&lt;BR /&gt;Is the well-read one this part of the manual but I do not understand it well. &lt;BR /&gt;StrtSrc = (Ipp8u *) pSrc - (kHeight - anchor.y - 1) * srcStep - (kWidth - anchor.x - 1);&lt;BR /&gt;Where do I obtain the value of anchor.x and anchor.y?&lt;BR /&gt;KWidth does it refer to the total width of the image?&lt;BR /&gt;This one is the code that I was using:&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;
&lt;P&gt;status = ippiFilterMax_8u_C3R( (Ipp8u*)pSrc-&amp;gt;DataPtr() , pSrc-&amp;gt;Step() ,(Ipp8u*)pDst-&amp;gt;DataPtr(), pDst-&amp;gt;Step(), pSrc-&amp;gt;Size(), mask, anchor);&lt;/P&gt;
&lt;P&gt;And it works very well whit small images.&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 09 May 2005 16:22:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991726#M22426</guid>
      <dc:creator>jimawary_lauril1</dc:creator>
      <dc:date>2005-05-09T16:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: ippFilterSharpen_8u_C1R crash</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991727#M22427</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;filter window have achor point, so your image you are going to filter should be extended in memory to provide neccessary borders outside actual image&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Vladimir&lt;/DIV&gt;&lt;P&gt;Message Edited by vdudnik on &lt;SPAN class="date_text"&gt;05-13-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;07:49 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2005 21:48:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippFilterSharpen-8u-C1R-crash/m-p/991727#M22427</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-05-13T21:48:24Z</dc:date>
    </item>
  </channel>
</rss>

