<?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: IPP Histogram image size limitation (seg fault) in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912977#M14501</link>
    <description>&lt;P&gt;Do you mean it work not so fast or you still have crash on 3kx3k image?&lt;/P&gt;
&lt;P&gt;What version of IPP do you use and what is your linkage model (do you use IPP as dynamic or static libraries)?&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
    <pubDate>Thu, 20 Mar 2008 21:26:01 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2008-03-20T21:26:01Z</dc:date>
    <item>
      <title>IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912972#M14496</link>
      <description>I'm running ippiHistogramEven_8u_C1R on images of various sizes (Code Below). When I try images greater than 1000 x 1000 pixels, this routine crashes with Segmentation Fault. Is this a known limitation/problem or am I doing something drastically wrong? Any help would be greatly appreciated. I'd like to profile this function up to images of 3000 x 3000 pixels.&lt;BR /&gt;&lt;BR /&gt;void ippHist(IplImage * pic)&lt;BR /&gt;{&lt;BR /&gt; int i;&lt;BR /&gt; IppiSize imgSize = {image-&amp;gt;width,image-&amp;gt;height};&lt;BR /&gt; Ipp32s levels[256],histo[256];&lt;BR /&gt;&lt;BR /&gt; ippiHistogramEven_8u_C1R(pic,image-&amp;gt;width,imgSize,levels,histo,256,0,255);&lt;BR /&gt;}&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Mar 2008 14:04:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912972#M14496</guid>
      <dc:creator>peter03436</dc:creator>
      <dc:date>2008-03-13T14:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912973#M14497</link>
      <description>Hi Peter, &lt;BR /&gt;&lt;BR /&gt;You could try the following:&lt;BR /&gt;&lt;BR /&gt;At least you have to use the widthStep and the width of the image.&lt;BR /&gt;&lt;BR /&gt;void ippHist(IplImage * pic)&lt;BR /&gt;{&lt;BR /&gt; int i;&lt;BR /&gt; IppiSize imgSize = {pic-&amp;gt;width, pic-&amp;gt;height};&lt;BR /&gt; Ipp32s levels[256],histo[256];&lt;BR /&gt;&lt;BR /&gt; ippiHistogramEven_8u_C1R(pic-&amp;gt;imageData, pic-&amp;gt;widthStep ,imgSize,levels,histo,256,0,255);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Mar 2008 15:14:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912973#M14497</guid>
      <dc:creator>Rob_Ottenhoff</dc:creator>
      <dc:date>2008-03-18T15:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912974#M14498</link>
      <description>Although that would be more technically correct, I don't think it will solve the problem. image is the global variable that is passed into that function so pic-&amp;gt;width and image-&amp;gt; width are the same thing. Thanks for trying though, so far I havn't seen much guidance on this.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Mar 2008 20:57:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912974#M14498</guid>
      <dc:creator>peter03436</dc:creator>
      <dc:date>2008-03-18T20:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912975#M14499</link>
      <description>Ok. But make sure you use the &lt;U&gt;widthStep&lt;/U&gt; and not the width. This will cause memory trouble if your image width is not a multiple of 32.&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Mar 2008 08:10:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912975#M14499</guid>
      <dc:creator>Rob_Ottenhoff</dc:creator>
      <dc:date>2008-03-19T08:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912976#M14500</link>
      <description>I made the changes just to see, but it didn't change the performance. It works fine up to 1000x1000 pixels. BTW, I have a 64 bit system not 32. So i'm still stuck.&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Mar 2008 21:28:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912976#M14500</guid>
      <dc:creator>peter03436</dc:creator>
      <dc:date>2008-03-19T21:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912977#M14501</link>
      <description>&lt;P&gt;Do you mean it work not so fast or you still have crash on 3kx3k image?&lt;/P&gt;
&lt;P&gt;What version of IPP do you use and what is your linkage model (do you use IPP as dynamic or static libraries)?&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2008 21:26:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912977#M14501</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-03-20T21:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: IPP Histogram image size limitation (seg fault)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912978#M14502</link>
      <description>It still crashes with a seg fault on any image larger than 1000 x 1000. &lt;BR /&gt;I'm using IPP 5.3.1.062 dynamic linking on a 64 bit linux system. &lt;BR /&gt;</description>
      <pubDate>Mon, 24 Mar 2008 17:14:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Histogram-image-size-limitation-seg-fault/m-p/912978#M14502</guid>
      <dc:creator>peter03436</dc:creator>
      <dc:date>2008-03-24T17:14:37Z</dc:date>
    </item>
  </channel>
</rss>

