<?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 again, in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965411#M20108</link>
    <description>&lt;P&gt;Hi again,&lt;/P&gt;

&lt;P&gt;Unfortunately the code need the double precision type because most of the values within&amp;nbsp;&lt;EM&gt;I&lt;/EM&gt;&amp;nbsp;are like&amp;nbsp;0.000991984 or&amp;nbsp;0.000292276. Converting 32f&amp;lt;&amp;gt;64f will make the code inaccurate.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Is there any other possible solution using IPP libraries or another one from Intel?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2014 13:04:37 GMT</pubDate>
    <dc:creator>Isaac_D_</dc:creator>
    <dc:date>2014-01-23T13:04:37Z</dc:date>
    <item>
      <title>Histogram function problem</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965407#M20104</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I want to make a code in C++ using Intel libraries (specially IPP) of a MATLAB function, I was wondering if I can do it, because it seems simple but I'm trying and no have results using the histograms functions or a combination of simple functions. Here it is:&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;[I_hist, pos] = hist(I(:),vminI:(vmaxI-vminI)/99:vmaxI);&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;I&lt;/EM&gt;&amp;nbsp;is a 257 vector long (double type)&lt;/P&gt;

&lt;P&gt;The&amp;nbsp;&lt;EM&gt;vminI&amp;nbsp;&lt;/EM&gt;and&amp;nbsp;&lt;EM&gt;vminI&amp;nbsp;&lt;/EM&gt;came from the maximum and minimum value of&amp;nbsp;&lt;I&gt;I&lt;/I&gt;&amp;nbsp;which is easy to obtain using ippsMax and ippsMin, my real problem is making the vector&amp;nbsp;&lt;EM&gt;I_hist&lt;/EM&gt;&amp;nbsp;(100 elements long, double type). I tried making first the range using VectorSlope (which by the way equals to the&amp;nbsp;&lt;EM&gt;pos&lt;/EM&gt;&amp;nbsp;vector)&amp;nbsp;and then CountInRange but this last one is only for Ipp32f data type and I need double. Maybe the answer is for that way. I hope you can help me. Thanks for your time.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2014 22:46:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965407#M20104</guid>
      <dc:creator>Isaac_D_</dc:creator>
      <dc:date>2014-01-22T22:46:15Z</dc:date>
    </item>
    <item>
      <title>Hello, </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965408#M20105</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Hello,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Most of the IPP image related functions are only support 32 bit float point. Is the double precision really needed in the code. If not, it may convert to 32 bit float point for computation.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Chao&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2014 03:18:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965408#M20105</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2014-01-23T03:18:46Z</dc:date>
    </item>
    <item>
      <title>hi Isaac,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965409#M20106</link>
      <description>&lt;P&gt;hi Isaac,&lt;/P&gt;

&lt;P&gt;you can use ippiHistogramRange_32f and define your set of levels or, if you need equal bins - you can use ippiHistogramEven_32f. And as Chao has mentioned above - you always can use conversion 32f&amp;lt;-&amp;gt;64 routines.&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2014 10:43:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965409#M20106</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2014-01-23T10:43:26Z</dc:date>
    </item>
    <item>
      <title>Hi again,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965410#M20107</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;

&lt;P&gt;Unfortunately the code need the double precision type because most of the values within&amp;nbsp;&lt;EM&gt;I&lt;/EM&gt;&amp;nbsp;are like&amp;nbsp;0.000991984 or&amp;nbsp;0.000292276. Converting 32f&amp;lt;&amp;gt;64f will make the code inaccurate.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Is there any other possible solution using IPP libraries or another one from Intel?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2014 13:04:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965410#M20107</guid>
      <dc:creator>Isaac_D_</dc:creator>
      <dc:date>2014-01-23T13:04:00Z</dc:date>
    </item>
    <item>
      <title>Hi again,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965411#M20108</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;

&lt;P&gt;Unfortunately the code need the double precision type because most of the values within&amp;nbsp;&lt;EM&gt;I&lt;/EM&gt;&amp;nbsp;are like&amp;nbsp;0.000991984 or&amp;nbsp;0.000292276. Converting 32f&amp;lt;&amp;gt;64f will make the code inaccurate.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Is there any other possible solution using IPP libraries or another one from Intel?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2014 13:04:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-function-problem/m-p/965411#M20108</guid>
      <dc:creator>Isaac_D_</dc:creator>
      <dc:date>2014-01-23T13:04:37Z</dc:date>
    </item>
  </channel>
</rss>

