<?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 Wrong Cross Correlation Results in 0 regions in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856370#M7174</link>
    <description>&lt;DIV id="tiny_quote"&gt;&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1325635320484="53" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=429915" href="https://community.intel.com/en-us/profile/429915/" class="basic"&gt;harihar_n&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;&lt;I&gt;Can this cause the problem reported in Post #7 - i.e. correlation values greater than 1?&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;It is &lt;SPAN style="text-decoration: underline;"&gt;not&lt;/SPAN&gt; clear. You've submittedtwo bmp-files ( in Post #7 )but you have &lt;SPAN style="text-decoration: underline;"&gt;not&lt;/SPAN&gt; submitted a simpleC/C++ Test-Case to reproduce your problem.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jan 2012 00:06:57 GMT</pubDate>
    <dc:creator>SergeyKostrov</dc:creator>
    <dc:date>2012-01-04T00:06:57Z</dc:date>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions [SOLVED/BUG]</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856356#M7160</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I just started learing IPP. Now, I'm stuck because the ippiCrossCorrFull_NormLevel_32f_C1R function returns strage results.&lt;BR /&gt;&lt;BR /&gt;I have the following test code:&lt;BR /&gt;&lt;BR /&gt;-----------------------------------------------&lt;BR /&gt;Ipp32f pSrc[5*4] = { 0, 0, 0, 1, 0,&lt;BR /&gt; 0, 0, 0, 1, 0,&lt;BR /&gt; 0, 0, 0, 1, 0,&lt;BR /&gt; 0, 0, 0, 1, 0};&lt;BR /&gt;&lt;BR /&gt;Ipp32f pTpl[3*4] = { 0, 1, 0,&lt;BR /&gt; 0, 1, 0,&lt;BR /&gt; 0, 1, 0,&lt;BR /&gt; 0, 1, 0};&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;// according to the manaul the result is 5+3-1 times 4+4-1&lt;BR /&gt; IppiSize dstSize = {7,7};&lt;BR /&gt; Ipp32f pDst[7*7];&lt;BR /&gt; IppiSize srcRoiSize = {5, 4};&lt;BR /&gt; IppiSize tplRoiSize = {3, 4};&lt;BR /&gt; int srcStep = 5*sizeof(Ipp32f);&lt;BR /&gt; int tplStep = 3*sizeof(Ipp32f);&lt;BR /&gt; int dstStep = 7*sizeof(Ipp32f);&lt;BR /&gt;&lt;BR /&gt; IppStatus st = ippiCrossCorrFull_NormLevel_32f_C1R(pSrc, srcStep, srcRoiSize,&lt;BR /&gt; pTpl, tplStep, tplRoiSize, &lt;BR /&gt; pDst, dstStep);&lt;BR /&gt; printf("%s\\n", ippGetStatusString(st));&lt;BR /&gt;&lt;BR /&gt;for(int y = 0; y&lt;DSTSIZE.HEIGHT&gt;&lt;/DSTSIZE.HEIGHT&gt; {&lt;BR /&gt; for(int x = 0; x&lt;DSTSIZE.WIDTH&gt;&lt;/DSTSIZE.WIDTH&gt; {&lt;BR /&gt; printf("%f ", pDst[x+y*dstSize.width]);&lt;BR /&gt; }&lt;BR /&gt; printf("\\n");&lt;BR /&gt; }&lt;BR /&gt;---------------------------------------------&lt;BR /&gt;&lt;BR /&gt;the result is the following:&lt;BR /&gt;&lt;BR /&gt;##########################&lt;BR /&gt;ippStsNoErr: No error, it's OK&lt;BR /&gt;0.153093 0.000000 0.000000 -0.213201 0.426401 -0.213201 0.000000 &lt;BR /&gt;0.306186 0.000000 0.000000 -0.316228 0.632456 -0.316228 0.000000 &lt;BR /&gt;0.000000 -0.306186 -0.153093 -0.408248 0.816496 -0.408248 -0.153093 &lt;BR /&gt;0.612372 0.000000 0.000000 -0.500000 1.000000 -0.500000 0.000000 &lt;BR /&gt;0.000000 -0.306186 -0.153093 -0.408248 0.816496 -0.408248 -0.153093 &lt;BR /&gt;0.306186 0.000000 0.000000 -0.316228 0.632456 -0.316228  0.000000 &lt;BR /&gt;0.000000 0.076547 0.000000 -0.213201 0.426401 -0.213201 0.000000 &lt;BR /&gt;###########################&lt;BR /&gt;&lt;BR /&gt;the result according to MATLAB should be:&lt;BR /&gt;&lt;BR /&gt;**********************************&lt;BR /&gt;0 0 0 -0.2132 0.4264 -0.2132 0&lt;BR /&gt; 0 0 0 -0.3162 0.6325 -0.3162 0&lt;BR /&gt; 0 0 0 -0.4082 0.8165 -0.4082 0&lt;BR /&gt; 0 0 0 -0.5000 1.0000 -0.5000 0&lt;BR /&gt; 0 0 0 -0.4082 0.8165 -0.4082 0&lt;BR /&gt; 0 0 0 -0.3162 0.6325 -0.3162 0&lt;BR /&gt; 0 0 0 -0.2132 0.4264 -0.2132 0&lt;BR /&gt;**********************************&lt;BR /&gt;&lt;BR /&gt;what's puzzling me is why are in the first 3 and the last column no all entries 0. The 3 remaining columns hold the correct numbers. &lt;BR /&gt;&lt;BR /&gt;The result from MATLAB is what I was expecting. I'm wondering IPP produces non-zero entries. Is this a bug or am I using the IPP function wrongl?&lt;BR /&gt;&lt;BR /&gt;The samples from the manual work as expected. The results match what MATLAB computes.&lt;BR /&gt;&lt;BR /&gt;fyi: I'm running an 64bit Arch Linux with an Intel i5 750 CPU and IPP 6.1.2.051&lt;BR /&gt;&lt;BR /&gt;greetings and happy easter&lt;BR /&gt;&lt;BR /&gt;michael &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Apr 2010 14:49:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856356#M7160</guid>
      <dc:creator>mpfeuti</dc:creator>
      <dc:date>2010-04-01T14:49:16Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856357#M7161</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;You are missing an important step:&lt;BR /&gt;&lt;BR /&gt;Ipp32f pDst[7*7];&lt;BR /&gt;&lt;BR /&gt;memset(pDst, 0, 7 * 7 * sizeof(Ipp32f));&lt;BR /&gt;&lt;BR /&gt;In other words, you are using uninitialized array, but your results are identical to Matlab otherwise.&lt;BR /&gt;&lt;BR /&gt;Happy coding :)&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Apr 2010 02:01:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856357#M7161</guid>
      <dc:creator>levicki</dc:creator>
      <dc:date>2010-04-05T02:01:49Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856358#M7162</link>
      <description>&lt;P&gt;Hello Michael, &lt;/P&gt;&lt;P&gt;Thanks for letting us know. The function ower check about this funcions. The problem came from inaccuracy of calculations in 32f data type. We are planing to include the fix in the upcoming IPP 7.0 beta release. &lt;/P&gt;&lt;P&gt;btw, the function does not need to initialize pDst, &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chao &lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2010 05:31:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856358#M7162</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2010-04-06T05:31:44Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856359#M7163</link>
      <description>Thanks for the reply.</description>
      <pubDate>Tue, 06 Apr 2010 06:15:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856359#M7163</guid>
      <dc:creator>mpfeuti</dc:creator>
      <dc:date>2010-04-06T06:15:25Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856360#M7164</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;you mentioned that this should be fixed with the beta release 
on ipp7. i was wondering how the schedule for the releases of ipp 7 is?&lt;BR /&gt;
&lt;BR /&gt;
Furthermore, I'm wondering where the rounding issue comes from. I'd like
 to fully crosscorrelate two images of sizes &amp;gt; 500x500. I heard that 
the ipp crosscorrelation function may utilize FFT. So my question is, is
 the rounding issue coming from the FFT? If not then I'm gonna implement
 my own crosscorrelation.&lt;BR /&gt;
&lt;BR /&gt;
Many thanks &lt;BR /&gt;
&lt;BR /&gt;
michael</description>
      <pubDate>Thu, 08 Apr 2010 06:40:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856360#M7164</guid>
      <dc:creator>mpfeuti</dc:creator>
      <dc:date>2010-04-08T06:40:14Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856361#M7165</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I don't see this fix inhttp://software.intel.com/en-us/articles/intel-ipp-70-library-bug-fixes/&lt;/P&gt;&lt;P&gt;Will it be included in the first non beta 7.0 release?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ciro&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:27:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856361#M7165</guid>
      <dc:creator>Ciro_R_</dc:creator>
      <dc:date>2010-06-14T14:27:54Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856362#M7166</link>
      <description>&lt;P&gt;Ciro,&lt;/P&gt;&lt;P&gt;This was fixed in the Beta package. You can go to Beta registration page to download the IPP 7.0 beta package. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chao&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2010 15:12:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856362#M7166</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2010-06-17T15:12:49Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856363#M7167</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt; I am seeing an issue with cross correlation computation in IPP 7.0 update 5. The function is ippiCrossCorrValid_NormLevel_32f_C1R. However my results are not bounded. That is I am sometimes getting results like 22.07, 59.49 etc while the results should be less than 1. I did try initializing the destination pointer, but the problem still remains.&lt;BR /&gt;&lt;BR /&gt;The image patches I am correlating are attached. In this particular case, the maximum correlation I am getting is 22.07.&lt;BR /&gt;&lt;BR /&gt;Is this a known bug ? Any workarounds ?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;H&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Dec 2011 23:01:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856363#M7167</guid>
      <dc:creator>harihar_n</dc:creator>
      <dc:date>2011-12-27T23:01:57Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856364#M7168</link>
      <description>&lt;DIV id="tiny_quote"&gt;&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1325032688640="53" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=61352" href="https://community.intel.com/en-us/profile/61352/" class="basic"&gt;Igor Levicki&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;...&lt;I&gt;&lt;BR /&gt;You are missing an important step:&lt;BR /&gt;&lt;BR /&gt;Ipp32f pDst[7*7];&lt;BR /&gt;&lt;BR /&gt;memset(pDst, 0, 7 * 7 * sizeof(Ipp32f));&lt;BR /&gt;...&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;I confirm that it doesn't help.&lt;BR /&gt;&lt;BR /&gt;Now, I'd like to understand a couple of more things. It is just confirmed thatthis is a bug.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt; &lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;But, how is it possible?&lt;/EM&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Because the function &lt;STRONG&gt;ippiCrossCorrFull_NormLevel_32f_C1R&lt;/STRONG&gt; is almost 10 year old! I just tested the&lt;BR /&gt;Test-Case with &lt;STRONG&gt;IPP v3.0&lt;/STRONG&gt; andhere is my output:&lt;BR /&gt;&lt;BR /&gt;0.0000000149011612 0.0000000000000000 0.0000000000000000 -0.2132006883621216 0.4264013767242432 -0.2132006883621216 0.0000000000000000&lt;BR /&gt;0.0000000298023224 0.0000000000000000 0.0000000000000000 -0.3162277638912201 0.6324555277824402 -0.3162277638912201 0.0000000000000000&lt;BR /&gt;0.0000000000000000 -0.0000000298023224 -0.0000000149011612 -0.4082482457160950 0.8164964318275452 -0.4082482457160950 -0.0000000149011612&lt;BR /&gt;0.0000000596046448 0.0000000000000000 0.0000000000000000 -0.5000000000000000 1.0000000000000000 -0.5000000000000000 0.0000000000000000&lt;BR /&gt;0.0000000000000000 -0.0000000298023224 -0.0000000149011612 -0.4082482457160950 0.8164964318275452 -0.4082482457160950 -0.0000000149011612&lt;BR /&gt;0.0000000298023224 0.0000000000000000 0.0000000000000000 -0.3162277638912201 0.6324555277824402 -0.3162277638912201 0.0000000000000000&lt;BR /&gt;0.0000000000000000 0.0000000074505806 0.0000000000000000 -0.2132006883621216 0.4264013767242432 -0.2132006883621216 0.0000000000000000&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2011 00:51:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856364#M7168</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-12-28T00:51:43Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856365#M7169</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;&lt;P&gt;When I read the IPP v3.0 data, it looks fine. For single precision data, it only has 23 bit from the fragment: &lt;A href="http://en.wikipedia.org/wiki/Single-precision_floating-point_format"&gt;http://en.wikipedia.org/wiki/Single-precision_floating-point_format&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Typically, it can reach about 1e-7. So the following data is fine the single precision. &lt;BR /&gt;0.0000000149011612&lt;/P&gt;&lt;P&gt;But the problem reported in the original post does not look good. It create incorrect data:&lt;BR /&gt;0.153093&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Chao&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2011 02:57:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856365#M7169</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-12-28T02:57:16Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856366#M7170</link>
      <description>Hi Chao,&lt;BR /&gt;&lt;BR /&gt;Take a look at all non-zero values in a "leftzero-region". Even if non-zero values do not exceed IPP's epsilon&lt;BR /&gt;there is astrange relation between them. Here is a1st column, for example:&lt;BR /&gt;&lt;BR /&gt; 0.0000000149011612 - let's saythis is A&lt;BR /&gt; 0.0000000298023224 - A * 2&lt;BR /&gt; 0.0000000000000000&lt;BR /&gt; 0.0000000596046448 - A * 4&lt;BR /&gt; 0.0000000000000000&lt;BR /&gt; 0.0000000298023224 - A * 2&lt;BR /&gt; 0.0000000000000000&lt;BR /&gt;&lt;BR /&gt;IPP's epsilon for a single-precision value isdefined as follows:&lt;BR /&gt;&lt;BR /&gt; ...&lt;BR /&gt; #define IPP_EPS_32F  1.192092890e-07f&lt;BR /&gt; ...&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:09:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856366#M7170</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-12-28T14:09:38Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856367#M7171</link>
      <description>&lt;P&gt;Hello Sergey, &lt;/P&gt;&lt;P&gt;For the relation of 1st column, most likely they were caused by the difference of the last bit. If these data is in binary format: &lt;/P&gt;&lt;P&gt;0.0000000149011612 --&amp;gt;  1e-25. (the last 25th bit are 1). &lt;BR /&gt;0.0000000298023224 --&amp;gt;  1e-24. (the last 24 bit is 1). &lt;BR /&gt;.....&lt;/P&gt;&lt;P&gt;As talked before, single precision float has the limited precision, may create some difference due to the rounding error. For complex computation, such error also may be accumulated. The following article has some similar discussion: &lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/articles/getting-reproducible-results-with-intel-mkl/"&gt;http://software.intel.com/en-us/articles/getting-reproducible-results-with-intel-mkl/&lt;/A&gt; &lt;/P&gt;&lt;P&gt;If high precision is important, double float point may be better choice for such computation. &lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Chao&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 03:33:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856367#M7171</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-12-29T03:33:01Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions [SOLVED/BUG]</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856368#M7172</link>
      <description>&lt;DIV id="tiny_quote"&gt;&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1325173266718="53" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=472351" href="https://community.intel.com/en-us/profile/472351/" class="basic"&gt;mpfeuti&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;&lt;I&gt;...&lt;BR /&gt;the result according to MATLAB should be:&lt;BR /&gt;&lt;BR /&gt;*******************************************&lt;BR /&gt;0 0 0 -0.2132 0.4264 -0.2132 0&lt;BR /&gt;0 0 0 -0.3162 0.6325 -0.3162 0&lt;BR /&gt;0 0 0 -0.4082 0.8165 -0.4082 0&lt;BR /&gt;0 0 0 -0.5000 1.0000 -0.5000 0&lt;BR /&gt;0 0 0 -0.4082 0.8165 -0.4082 0&lt;BR /&gt;0 0 0 -0.3162 0.6325 -0.3162 0&lt;BR /&gt;0 0 0 -0.2132 0.4264 -0.2132 0&lt;BR /&gt;*******************************************&lt;BR /&gt;...&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;Regarding &lt;STRONG&gt;MATLAB&lt;/STRONG&gt; results:&lt;BR /&gt;&lt;BR /&gt;1. It is not clearif a single-precision or a double-precision data typewas used;&lt;BR /&gt;&lt;BR /&gt;2. The results are rounded to 4 digits after the point and it would be nice to see results withat least 16 digits after the point.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 15:47:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856368#M7172</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-12-29T15:47:50Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856369#M7173</link>
      <description>Can this cause the problem reported in Post #7 - i.e. correlation values greater than 1 ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Hari</description>
      <pubDate>Tue, 03 Jan 2012 15:13:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856369#M7173</guid>
      <dc:creator>harihar_n</dc:creator>
      <dc:date>2012-01-03T15:13:31Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856370#M7174</link>
      <description>&lt;DIV id="tiny_quote"&gt;&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1325635320484="53" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=429915" href="https://community.intel.com/en-us/profile/429915/" class="basic"&gt;harihar_n&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;&lt;I&gt;Can this cause the problem reported in Post #7 - i.e. correlation values greater than 1?&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;It is &lt;SPAN style="text-decoration: underline;"&gt;not&lt;/SPAN&gt; clear. You've submittedtwo bmp-files ( in Post #7 )but you have &lt;SPAN style="text-decoration: underline;"&gt;not&lt;/SPAN&gt; submitted a simpleC/C++ Test-Case to reproduce your problem.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:06:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856370#M7174</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2012-01-04T00:06:57Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856371#M7175</link>
      <description>Sergey,&lt;BR /&gt;&lt;BR /&gt;take a look at the CrossCorr formula in the manual - it's too complex. EPS_32f is a weight of the LSB (the last significant bit in mantissa) - so it isan accuracy of each floating point operation - imaging one fp multiplication - each floating pointnumber has 24-bit mantissa - so intermediate result has 48-bit that should be rounded back to 24-bit... Therefore there is no any "strange" relation - it's just a rough representation of a number of fp operations per one output pixel. Also take into account that for rather large images "frame" algorithm based on FFT is used ("frame" means that order of FFT depends on template size, not image).&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Igor</description>
      <pubDate>Sun, 08 Jan 2012 08:13:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856371#M7175</guid>
      <dc:creator>igorastakhov</dc:creator>
      <dc:date>2012-01-08T08:13:25Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856372#M7176</link>
      <description>There is no such issue for IPP 7.0.5 and higher. &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Igor</description>
      <pubDate>Sun, 08 Jan 2012 08:21:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856372#M7176</guid>
      <dc:creator>igorastakhov</dc:creator>
      <dc:date>2012-01-08T08:21:47Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856373#M7177</link>
      <description>Hello H,&lt;BR /&gt;&lt;BR /&gt;I've tested your image/template with IPP 7.0.5(6) - I don't see any correlation values greater than 1.0:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;Intel Integrated Performance Primitives&lt;/P&gt;&lt;P&gt;CrossCorr test:&lt;/P&gt;&lt;P&gt;Library IppIP&lt;/P&gt;&lt;P&gt;CPU : p8&lt;/P&gt;&lt;P&gt;Name : ippip8_l.lib&lt;/P&gt;&lt;P&gt;Version : 7.0 build 205.85&lt;/P&gt;&lt;P&gt;Build date: Nov 25 2011&lt;/P&gt;&lt;P&gt;Image info: 59 x 59, number of channels = 1&lt;/P&gt;&lt;P&gt;-0.01 0.06 0.05 0.02 -0.01 -0.00 0.02 0.01 -0.02 -0.06 -0.04 0.02 0.01 -0.08 -0.09 -0.06 0.00 0.03 0.05 0.03 -0.02 -0.02 -0.01 -0.03 -0.07 -0.08 -0.04 0.04 0.08 0.04 -0.01 0.00 0.04 0.07 0.07 &lt;/P&gt;&lt;P&gt;0.00 -0.01 -0.01 0.05 0.04 0.04 0.05 0.03 -0.01 -0.05 -0.05 0.04 0.03 -0.04 -0.07 -0.06 -0.01 -0.01 0.01 0.02 -0.00 0.01 0.00 -0.03 -0.07 -0.09 -0.04 0.04 -0.02 -0.03 -0.04 -0.01 0.02 0.04 0.03 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.08 0.06 0.04 0.03 0.01 -0.05 -0.06 -0.03 0.02 0.02 -0.04 -0.06 -0.02 0.00 0.00 0.00 -0.01 0.00 0.05 0.02 -0.03 -0.07 -0.06 -0.02 0.04 -0.02 -0.06 -0.05 0.01 0.02 0.04 0.03 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.12 0.07 0.05 0.05 0.00 -0.07 -0.08 -0.02 0.05 0.03 -0.02 -0.04 0.02 0.03 0.03 0.02 -0.03 -0.04 -0.05 -0.06 -0.07 -0.07 -0.06 -0.01 0.02 0.01 -0.05 -0.04 0.04 0.01 0.01 0.03 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 -0.01 0.05 0.06 0.06 0.02 -0.04 -0.07 -0.03 0.03 0.02 -0.01 -0.01 0.01 0.00 0.01 0.01 -0.00 0.00 -0.04 -0.08 -0.08 -0.07 -0.04 0.02 0.03 0.02 0.00 0.00 0.03 0.01 -0.05 -0.04 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.01 0.05 0.07 0.03 -0.03 -0.06 -0.05 -0.04 -0.03 -0.03 -0.00 0.03 0.00 -0.03 -0.01 0.06 0.10 0.03 -0.06 -0.10 -0.08 -0.05 0.00 -0.02 -0.05 -0.01 0.04 0.03 -0.02 -0.10 -0.09 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.02 0.05 0.05 0.02 -0.02 -0.06 -0.05 -0.05 -0.06 -0.07 -0.03 0.00 0.01 -0.03 -0.05 0.02 0.06 0.03 -0.04 -0.09 -0.07 -0.04 -0.02 -0.04 -0.04 -0.01 0.04 0.03 -0.00 -0.05 -0.04 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.03 0.07 0.07 0.04 -0.01 -0.05 -0.06 -0.01 -0.03 -0.08 -0.06 -0.04 -0.00 0.00 -0.01 0.02 0.04 0.03 -0.03 -0.07 -0.06 -0.04 -0.03 -0.04 -0.04 -0.01 0.02 0.01 -0.00 -0.00 0.02 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.04 0.05 0.06 0.03 0.00 -0.02 -0.04 -0.03 -0.05 -0.08 -0.07 -0.05 -0.05 -0.06 -0.05 -0.02 0.03 0.02 -0.02 -0.04 -0.03 -0.05 -0.06 -0.06 -0.06 -0.00 0.02 -0.01 -0.03 -0.03 0.00 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.05 0.06 0.05 0.01 -0.04 -0.05 -0.03 -0.02 -0.03 -0.06 -0.04 0.02 -0.01 -0.08 -0.08 -0.06 -0.01 0.02 0.03 0.08 0.06 0.00 -0.03 -0.03 -0.01 0.02 0.03 0.01 -0.04 -0.05 -0.01 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.06 0.08 0.06 -0.01 -0.05 -0.04 0.02 0.03 0.02 0.00 0.00 0.04 0.00 -0.08 -0.09 -0.07 -0.07 -0.06 -0.02 0.08 0.10 0.04 0.00 -0.02 -0.02 -0.04 -0.04 -0.05 -0.07 -0.06 -0.01 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.08 0.11 0.11 0.03 -0.04 -0.02 0.04 0.05 0.01 -0.01 0.03 0.06 0.06 -0.02 -0.05 -0.03 -0.05 -0.08 -0.06 -0.01 0.02 0.03 0.02 -0.01 -0.03 -0.04 -0.04 -0.04 -0.05 -0.02 0.02 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.12 0.15 0.18 0.15 0.03 0.00 0.01 -0.02 -0.04 -0.04 -0.00 0.03 0.02 -0.02 -0.04 -0.01 -0.03 -0.07 -0.06 -0.05 -0.05 0.02 0.03 -0.02 -0.04 -0.02 -0.02 -0.04 -0.04 -0.03 -0.01 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 -0.01 0.06 0.08 0.10 0.08 0.04 -0.00 -0.04 -0.09 -0.07 -0.03 0.03 0.04 0.01 -0.01 -0.01 -0.02 -0.07 -0.04 -0.02 -0.05 0.02 0.06 0.02 -0.04 -0.04 -0.01 -0.01 -0.02 -0.02 -0.01 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 -0.01 -0.01 0.05 0.11 0.12 0.07 -0.00 -0.07 -0.07 -0.03 -0.00 0.01 0.03 0.05 0.03 -0.04 -0.06 -0.04 -0.01 0.03 0.07 0.10 0.03 -0.05 -0.09 -0.08 -0.06 -0.03 -0.01 -0.00 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.07 0.12 0.13 0.06 -0.02 -0.03 -0.01 -0.03 -0.04 -0.02 0.02 0.04 0.01 -0.01 -0.01 -0.04 -0.00 0.05 0.06 0.01 -0.05 -0.08 -0.07 -0.05 -0.02 -0.03 -0.03 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.06 0.08 0.09 0.09 0.04 -0.01 -0.02 -0.02 -0.05 -0.07 -0.03 -0.01 -0.01 0.00 0.06 0.04 0.01 0.01 0.01 0.02 0.03 0.02 0.03 0.01 -0.02 -0.06 -0.08 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.12 0.11 0.05 0.05 0.02 -0.04 -0.06 -0.05 -0.06 -0.06 -0.03 -0.03 -0.05 -0.05 -0.03 0.00 0.02 0.03 0.05 0.06 0.07 0.06 0.05 0.03 -0.04 -0.06 -0.07 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.09 0.08 0.05 0.05 0.00 -0.03 -0.04 -0.05 -0.06 -0.01 0.01 -0.03 -0.05 -0.04 -0.00 0.05 0.06 0.08 0.08 0.02 -0.02 0.00 0.01 0.00 -0.00 0.00 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.03 0.06 0.07 0.05 0.03 -0.02 -0.05 -0.06 -0.02 -0.00 -0.04 -0.05 -0.01 -0.01 -0.03 -0.05 -0.03 -0.01 -0.03 -0.05 0.00 0.01 -0.01 -0.01 0.01 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.05 0.07 0.05 0.06 0.02 -0.01 -0.05 -0.04 -0.03 -0.02 -0.05 -0.05 -0.01 -0.01 -0.04 -0.05 -0.06 -0.08 -0.07 -0.03 0.05 0.05 -0.00 -0.02 0.02 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.06 0.08 0.02 0.03 0.03 -0.02 -0.04 -0.03 0.00 -0.02 -0.04 -0.04 -0.04 -0.03 -0.03 -0.04 -0.05 -0.10 -0.12 -0.10 -0.02 -0.01 -0.04 -0.03 0.02 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.08 0.11 0.08 0.05 0.04 -0.02 -0.08 -0.06 -0.04 -0.03 -0.02 0.00 -0.02 -0.04 -0.01 -0.01 -0.05 -0.09 -0.12 -0.09 -0.02 -0.01 0.03 0.09 0.15 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.12 0.14 0.10 0.07 0.04 -0.01 -0.07 -0.09 -0.07 -0.06 -0.02 0.02 0.04 -0.02 -0.03 -0.02 -0.05 -0.09 -0.11 -0.10 -0.02 -0.01 0.01 0.04 0.09 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.09 0.06 0.06 0.08 0.06 -0.00 -0.06 -0.07 -0.08 -0.05 -0.02 -0.00 -0.01 -0.02 0.03 0.02 -0.04 -0.09 -0.08 -0.05 -0.03 -0.02 -0.01 0.02 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.02 0.07 0.08 0.09 0.08 0.06 0.03 -0.01 -0.03 -0.03 -0.01 -0.02 0.01 0.04 0.07 0.03 -0.03 -0.06 -0.07 -0.08 -0.11 -0.12 -0.09 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.04 0.05 0.05 0.01 0.01 0.04 0.04 0.03 -0.00 -0.02 -0.02 -0.05 -0.03 -0.02 0.02 0.02 0.00 -0.02 -0.04 -0.07 -0.09 -0.11 -0.11 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.05 0.06 0.04 -0.01 -0.06 -0.04 -0.01 0.02 0.00 -0.01 -0.02 -0.04 -0.07 -0.06 -0.05 -0.04 -0.04 -0.04 -0.02 -0.02 -0.05 -0.09 -0.11 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.06 0.07 0.05 -0.02 -0.06 -0.07 -0.03 0.02 0.02 -0.02 -0.04 -0.01 -0.04 -0.05 -0.03 -0.02 -0.02 -0.04 -0.03 -0.02 -0.02 -0.04 -0.07 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.08 0.14 0.11 -0.01 -0.07 -0.06 -0.04 0.02 0.05 0.03 -0.02 -0.01 -0.01 -0.01 0.00 0.01 -0.02 -0.04 -0.06 -0.08 -0.08 -0.06 -0.06 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.12 0.11 0.13 0.06 -0.01 -0.04 -0.04 0.01 0.04 0.01 -0.00 -0.00 -0.03 -0.03 0.01 0.03 0.01 -0.01 -0.03 -0.04 -0.05 -0.07 -0.05 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.09 0.10 0.07 0.01 -0.02 -0.03 -0.02 0.03 0.02 -0.03 -0.01 -0.01 -0.04 0.00 0.05 0.03 0.02 0.00 -0.03 -0.06 -0.09 -0.09 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.09 0.09 0.05 -0.01 -0.06 -0.05 -0.02 -0.00 -0.01 0.00 -0.00 -0.01 0.02 0.06 0.04 0.02 -0.00 -0.02 -0.06 -0.09 -0.06 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -0.01 0.06 0.06 -0.00 -0.05 -0.04 -0.02 -0.01 0.01 -0.02 -0.01 -0.01 0.00 0.03 0.05 0.03 0.01 -0.00 -0.02 -0.04 -0.03 &lt;/P&gt;&lt;P&gt;0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.03 0.04 0.01 -0.02 -0.05 -0.06 -0.04 -0.03 -0.04 -0.05 -0.06 -0.01 0.02 0.02 0.02 0.04 0.04 0.02 0.00 0.01 &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Igor&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2012 08:26:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856373#M7177</guid>
      <dc:creator>igorastakhov</dc:creator>
      <dc:date>2012-01-08T08:26:08Z</dc:date>
    </item>
    <item>
      <title>Wrong Cross Correlation Results in 0 regions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856374#M7178</link>
      <description>Thank you Igor! I checked with version 7.0.5 and the issue seems to have been fixed in it.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Hari</description>
      <pubDate>Tue, 10 Jan 2012 00:18:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Wrong-Cross-Correlation-Results-in-0-regions-SOLVED-BUG/m-p/856374#M7178</guid>
      <dc:creator>harihar_n</dc:creator>
      <dc:date>2012-01-10T00:18:00Z</dc:date>
    </item>
  </channel>
</rss>

