<?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 Mark, in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931713#M16752</link>
    <description>&lt;P&gt;Mark,&lt;/P&gt;

&lt;P&gt;1) please provide your Matlab code, input and output (for Gaussian)&lt;/P&gt;

&lt;P&gt;2) the same for ConvFull - your C code and your Matlab code&lt;/P&gt;

&lt;P&gt;without these things I can't help you; none from deprepecated functions has been removed yet even in coming soon IPP 8.1&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2013 16:06:17 GMT</pubDate>
    <dc:creator>Igor_A_Intel</dc:creator>
    <dc:date>2013-12-13T16:06:17Z</dc:date>
    <item>
      <title>ippiFilterGauss calculates wrong results.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931702#M16741</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;

&lt;P&gt;I've tried to work with that function. But it gives results different from the Matlab results. Moreover, if I apply the filter to matrix every elements is 1 it gives something strange.&lt;/P&gt;

&lt;P&gt;I'm novice. May you give me links to samples. Really working samples.&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2013 11:14:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931702#M16741</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-06T11:14:19Z</dc:date>
    </item>
    <item>
      <title>for example.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931703#M16742</link>
      <description>&lt;P&gt;Sorry. Double comment. Deleted.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2013 10:08:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931703#M16742</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-09T10:08:00Z</dc:date>
    </item>
    <item>
      <title>for example.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931704#M16743</link>
      <description>&lt;P&gt;for example.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;const Ipp8u nSize9 = 9, nSize8 = 9;&lt;BR /&gt;
		// IPP test&lt;BR /&gt;
		Ipp32f src[nSize9 * nSize8] = {&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1,&lt;BR /&gt;
		1, 1, 1, 1, 1, 1, 1, 1, 1&lt;/P&gt;

	&lt;P&gt;//0, 1, 2, 3, 4, 5, 6, 7, 0,&lt;BR /&gt;
		//1, 2, 3, 4, 5, 6, 7, 0, 1,&lt;BR /&gt;
		//2, 3, 4, 5, 6, 7, 0, 1, 2,&lt;BR /&gt;
		//3, 4, 5, 6, 7, 0, 1, 2, 3,&lt;BR /&gt;
		//4, 5, 6, 7, 0, 1, 2, 3, 4,&lt;BR /&gt;
		//5, 6, 7, 0, 1, 2, 3, 4, 5,&lt;BR /&gt;
		//6, 7, 0, 1, 2, 3, 4, 5, 6,&lt;BR /&gt;
		//7, 0, 1, 2, 3, 4, 5, 6, 7,&lt;BR /&gt;
		//0, 1, 2, 3, 4, 5, 6, 7, 0&lt;/P&gt;

	&lt;P&gt;};&lt;BR /&gt;
		Ipp32f dst[nSize8*nSize9] = {0};&lt;BR /&gt;
		IppiSize roiSize = {nSize9, nSize8 };&lt;/P&gt;

	&lt;P&gt;ippiFilterGauss_32f_C1R ( src, nSize8 * sizeof (Ipp32f)&lt;BR /&gt;
		, dst, nSize8* sizeof (Ipp32f)&lt;BR /&gt;
		, roiSize, ippMskSize5x5 );&lt;/P&gt;

	&lt;P&gt;for (int i = 0 ; i &amp;lt; roiSize.width; i++)&lt;BR /&gt;
		{&lt;BR /&gt;
		for (int j = 0; j &amp;lt; roiSize.height; j++)&lt;BR /&gt;
		{&lt;BR /&gt;
		printf (TEXT ("%7.4f, "), src[i*roiSize.height + j]);&lt;BR /&gt;
		}&lt;/P&gt;

	&lt;P&gt;printf (TEXT("\t\t"));&lt;/P&gt;

	&lt;P&gt;for (int j = 0; j &amp;lt; roiSize.height; j++)&lt;BR /&gt;
		{&lt;BR /&gt;
		printf (TEXT ("%7.4f, "), dst[i*roiSize.height + j]);&lt;BR /&gt;
		}&lt;/P&gt;

	&lt;P&gt;printf (TEXT("\n"));&lt;/P&gt;

	&lt;P&gt;}&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Result are&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;-12034934.0000, -2256549.5000, 0.7233, 0.7233, 0.7233, -1316320.1250, -7145741.0000, -15607804.0000, -15607804.0000,&lt;BR /&gt;
		-7145741.0000, -1316319.8750, 0.9475, 0.9475, 0.9475, -376090.7188, -1692411.6250, -3572870.0000, -3572870.0000,&lt;BR /&gt;
		-1692411.6250, -376090.6563, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000,&lt;BR /&gt;
		1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000,&lt;BR /&gt;
		1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000,&lt;BR /&gt;
		1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000,&lt;BR /&gt;
		1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, 1.0000, -376090.6563, -1692411.6250,&lt;BR /&gt;
		-3572870.0000, -3948961.7500, -3384824.0000, -3948961.7500, -3948961.7500, -3384824.0000, -4325053.0000, -6581603.0000, -12787116.0000,&lt;BR /&gt;
		-21249180.0000, -22565502.0000, -19932858.0000, -22565502.0000, -22565502.0000, -19932858.0000, -23881822.0000, -30651472.0000, -41746176.0000,&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 09 Dec 2013 10:08:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931704#M16743</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-09T10:08:24Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931705#M16744</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Have you read a chapter in IPP manual devoted to ROI concept? With mask 5x5 you have to provide 2 pixels wide border in the memory. You can use ippiCopyReplicateBorder for this purpose or shift pSrc to the 3rd pixel in the 3rd row and provide smaller roi (width-4 and height-4). All functions that reconstruct borders have "border" suffix, for all other you should care about providing border pixels yourself.&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2013 16:23:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931705#M16744</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2013-12-09T16:23:09Z</dc:date>
    </item>
    <item>
      <title>Thank you for replay.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931706#M16745</link>
      <description>&lt;P&gt;Thank you for replay.&lt;/P&gt;

&lt;P&gt;I've done as you said, but anyway results are wrong (value 1. in ROI where must be values of filtering). I'm using trial version. Is it possible that the reason in it?&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;const int nWidth = 15, nHeight = 9;&lt;/P&gt;

	&lt;P&gt;IppiSize nOffset = {2, 2};&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		IppiSize nsWhole = { nHeight, nWidth};&lt;BR /&gt;
		Ipp32f faSrc[nWidth * nHeight];&lt;BR /&gt;
		Ipp32f* pSrcStart = &amp;amp;faSrc[nOffset.width * nHeight + nOffset.height];&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;IppStatus nError = ippiSet_32f_C1R (1., faSrc, nHeight*sizeof(Ipp32f), nsWhole);&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;PrintArray("Src", faSrc, nWidth, nHeight, NULL);&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;Ipp32f faDst[nWidth*nHeight];&lt;BR /&gt;
		Ipp32f* pDstStart = &amp;amp;faDst[nOffset.width * nHeight + nOffset.height];&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;nError = ippiSet_32f_C1R (0., faDst, nHeight*sizeof(Ipp32f), nsWhole);&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;PrintArray("Dst", faDst, nWidth, nHeight);&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;IppiSize nRoiSize = {4, 6};&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;nError = ippiFilterGauss_32f_C1R (pSrcStart, nHeight * sizeof(Ipp32f)&lt;BR /&gt;
		, pDstStart, nHeight * sizeof(Ipp32f)&lt;BR /&gt;
		, nRoiSize&lt;BR /&gt;
		, ippMskSize5x5);&lt;/P&gt;

	&lt;P&gt;PrintArray ("AfterGauss", faDst, nWidth, nHeight, &amp;amp;nOffset);&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 10 Dec 2013 12:08:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931706#M16745</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-10T12:08:19Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931707#M16746</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;trial version doesn't have any limitations on functionality/optimization. What is wrong for you now? You see different output from Matlab and IPP? Which sigma/stddev do you use for Matlab? ippiFilterGauss is fixed filter - it means that it uses predefined coefficients (as described in the manual):&lt;/P&gt;

&lt;P&gt;This function applies a lowpass Gaussian filter to an image ROI. The corresponding kernel is the matrix of either 3x3 or 5x5 size. The 3x3 filter uses the kernel:&lt;/P&gt;

&lt;P&gt;1/16 2/16 1/16&lt;/P&gt;

&lt;P&gt;2/16 4/16 2/16&lt;/P&gt;

&lt;P&gt;1/16 2/16 1/16&lt;/P&gt;

&lt;P&gt;These filter coefficients correspond to a 2-dimensional Gaussian distribution with standard deviation 0.85. The 5x5 filter uses the kernel:&lt;/P&gt;

&lt;P&gt;2/571 7/571 12/571 7/571 2/571&lt;/P&gt;

&lt;P&gt;7/571 31/571 52/571 31/571 7/571&lt;/P&gt;

&lt;P&gt;12/571 52/571 127/571 52/571 12/571&lt;/P&gt;

&lt;P&gt;7/571 31/571 52/571 31/571 7/571&lt;/P&gt;

&lt;P&gt;2/571 7/571 12/571 7/571 2/571&lt;/P&gt;

&lt;P&gt;These filter coefficients correspond to a 2-dimensional Gaussian distribution with standard deviation 1.0.&lt;/P&gt;

&lt;P&gt;If you need another sigma/stddev - please use &lt;FONT face="CourierNewPSMT" size="2"&gt;&lt;FONT face="CourierNewPSMT" size="2"&gt;ippiFilterGaussBorder_32f_C1R - it has sigma as a parameter:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;IPPAPI(IppStatus, ippiFilterGaussBorder_32f_C1R, (const Ipp32f* pSrc, int srcStep,Ipp32f* pDst, int dstStep,&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IppiSize roiSize,int KernelSize,Ipp32f sigma,&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IppiBorderType borderType, Ipp32f borderValue,&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ipp8u* pBuffer))&lt;BR /&gt;
	feel free to address any other questions/concerns,&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2013 10:40:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931707#M16746</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2013-12-11T10:40:36Z</dc:date>
    </item>
    <item>
      <title>Hi M a. </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931708#M16747</link>
      <description>&lt;P&gt;Hi M a.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;What is the error &amp;nbsp;you are&amp;nbsp;seeing in ROI? &amp;nbsp; I review your code, &amp;nbsp;just a little naming problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;nWidth=15, nHeight=9. &amp;nbsp; and &amp;nbsp;as we understand, the image's Width is 15, thus all of row steps is 15 *sizeof(Ipp32f). &amp;nbsp;You use nHeight in the code. The result should correct. &amp;nbsp;but this may bring confusion.&lt;/P&gt;

&lt;P&gt;I use the widths&amp;nbsp;is 9 and height is 15 and get the below result.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;All value in ROI (start from point (2, 2), size is (4 width, &amp;nbsp;6 heigh). are&amp;nbsp;1. Other value is 0.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best Regards&lt;/P&gt;

&lt;P&gt;Ying&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	&amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00&lt;BR /&gt;
	AfterGauss&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;1.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;
	&amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00 &amp;nbsp; &amp;nbsp;0.00&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2013 02:01:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931708#M16747</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-12-12T02:01:57Z</dc:date>
    </item>
    <item>
      <title>SoHi, Igor</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931709#M16748</link>
      <description>&lt;P&gt;SoHi, Igor&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;If you need another sigma/stddev - please use ippiFilterGaussBorder_32f_C1R - it has sigma as a parameter:&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Thanks for information&amp;nbsp;about a way to change sigma. It is useful.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;trial version doesn't have any limitations on functionality/optimization.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Good, it's mean that the problem in my code or my understanding of IPP.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;What is wrong for you now? You see different output from Matlab and IPP? Which sigma/stddev do you use for Matlab? ippiFilterGauss is fixed filter - it means that it uses predefined coefficients (as described in the manual):&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Problem is that the FilterGauss gives same value as in ROI of the source array . For example, results of previous code&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;Src:&lt;BR /&gt;
		0 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		1 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		2 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		3 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		4 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		5 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		6 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		7 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		8 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		9 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		10 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		11 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		12 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		13 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;BR /&gt;
		14 - 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54, 2.54,&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		Dst:&lt;BR /&gt;
		0 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		1 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		2 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		3 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		4 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		5 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		6 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		7 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		8 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		9 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		10 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		11 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		12 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		13 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		14 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		AfterGauss:&lt;BR /&gt;
		0 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		1 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		2 - 0.00, 0.00, 2.54, 2.54, 2.54, 2.54, 0.00, 0.00, 0.00,&lt;BR /&gt;
		3 - 0.00, 0.00, 2.54, 2.54, 2.54, 2.54, 0.00, 0.00, 0.00,&lt;BR /&gt;
		4 - 0.00, 0.00, 2.54, 2.54, 2.54, 2.54, 0.00, 0.00, 0.00,&lt;BR /&gt;
		5 - 0.00, 0.00, 2.54, 2.54, 2.54, 2.54, 0.00, 0.00, 0.00,&lt;BR /&gt;
		6 - 0.00, 0.00, 2.54, 2.54, 2.54, 2.54, 0.00, 0.00, 0.00,&lt;BR /&gt;
		7 - 0.00, 0.00, 2.54, 2.54, 2.54, 2.54, 0.00, 0.00, 0.00,&lt;BR /&gt;
		8 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		9 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		10 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		11 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		12 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		13 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;BR /&gt;
		14 - 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;It confuses me. Actually, It must give something different. Could you launch the above code and look to results?&lt;/P&gt;

&lt;P&gt;regards,&lt;/P&gt;

&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2013 03:38:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931709#M16748</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-12T03:38:58Z</dc:date>
    </item>
    <item>
      <title>Are deprecated functions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931710#M16749</link>
      <description>&lt;P&gt;Are deprecated functions (FilterGauss, ConvFull) still available in 7.1.1?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2013 05:45:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931710#M16749</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-12T05:45:59Z</dc:date>
    </item>
    <item>
      <title>Are deprecated functions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931711#M16750</link>
      <description>&lt;P&gt;Are deprecated functions (FilterGauss, ConvFull) still available in 7.1.1?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2013 05:46:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931711#M16750</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-12T05:46:00Z</dc:date>
    </item>
    <item>
      <title>Hi.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931712#M16751</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;All value in ROI (start from point (2, 2), size is (4 width, 6 heigh). are 1. Other value is 0.&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Similar test in Matlab gives a different result. Actually, Gauss filter just multiplicates elements of one matrix to other and collects it. Finally, something like this&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;IMG alt="" src="\\127.0.0.1\z\filtergauss.bmp" /&gt;&lt;STRONG&gt;h(k,l) = sum&lt;SUB&gt;i&lt;/SUB&gt;(sum&lt;SUB&gt;j&lt;/SUB&gt;(src1(i,j)*src2(k-j,l-i)&lt;/STRONG&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;where&amp;nbsp;&lt;STRONG&gt;src1 -&amp;nbsp;&lt;/STRONG&gt;is given by user,&amp;nbsp;&lt;STRONG&gt;src2&lt;/STRONG&gt; - is Gauss filter matrix (&lt;STRONG&gt;ippMskSize5x5/ippMskSize3x3 &amp;nbsp;!= 1).&lt;/STRONG&gt; So, I've wondered why we have got value 1 in ROI?&lt;/P&gt;

&lt;P&gt;Sorry, for my english.&lt;/P&gt;

&lt;P&gt;I need the IPP library's functionality&amp;nbsp;and, at the moment, test the trial version of it. And I'm going to buy the library if it will be ok for me.&lt;/P&gt;

&lt;P&gt;Same confusing situation I have in test of ConvFull. I cannot get right values for test data, calculated in Matlab and manually.&lt;/P&gt;

&lt;P&gt;Could you help me?&lt;/P&gt;

&lt;P&gt;regards,&lt;/P&gt;

&lt;P&gt;Mark.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2013 05:27:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931712#M16751</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-13T05:27:30Z</dc:date>
    </item>
    <item>
      <title>Mark,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931713#M16752</link>
      <description>&lt;P&gt;Mark,&lt;/P&gt;

&lt;P&gt;1) please provide your Matlab code, input and output (for Gaussian)&lt;/P&gt;

&lt;P&gt;2) the same for ConvFull - your C code and your Matlab code&lt;/P&gt;

&lt;P&gt;without these things I can't help you; none from deprepecated functions has been removed yet even in coming soon IPP 8.1&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2013 16:06:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931713#M16752</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2013-12-13T16:06:17Z</dc:date>
    </item>
    <item>
      <title>Gauss filtering.</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931714#M16753</link>
      <description>&lt;P&gt;Gauss filtering.&lt;/P&gt;

&lt;P&gt;Matlab code:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;fSrc = ones (15, 9, 'double');&lt;/P&gt;

	&lt;P&gt;hGauss = fspecial ('gaussian', [5 5], 0.85)&lt;/P&gt;

	&lt;P&gt;sDst = imfilter (fSrc, hGauss);&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;See above for C code.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Convolution&lt;/P&gt;

&lt;P&gt;Matlab:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;fSrc = [1., 1., 2., 5., 10., 10., 13., 21., 15., 18., 22., 22., 22.];&lt;BR /&gt;
		hKernel = [1., 4., 1.];&lt;BR /&gt;
		fDst = conv2(fSrc, hKernel);&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;C code:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;printf ("Test of ConvFullXXX function.\n----------------\n");&lt;BR /&gt;
		const int nSrcWidth = 11;&lt;BR /&gt;
		const int nKernelWidth = 3;&lt;/P&gt;

	&lt;P&gt;const IppiSize nKernelSize = {1, nKernelWidth};&lt;BR /&gt;
		const IppiSize nSrcSize = {1, nSrcWidth};&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		Ipp32f Src[nSrcWidth] = {1, 1, 2, 5, 10, 10, 13, 21, 15, 18, 22, 22, 22};&lt;/P&gt;

	&lt;P&gt;Ipp32f Kernel3[nKernelWidth] = {1, 4, 1};&lt;/P&gt;

	&lt;P&gt;Ipp32f Dest[nSrcWidth + nKernelWidth ] = {0};&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;IppStatus nError = ippiConvFull_32f_C1R (Src+1 , nSrcWidth * sizeof(Ipp32f) , nSrcSize&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; , Kernel3, nKernelWidth * sizeof(Ipp32f) , nKernelSize&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; , Dest , (nSrcWidth + nKernelWidth)*sizeof(Ipp32f));&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;PrintArray ("Result", Dest, 1, nSrcWidth + nKernelWidth);&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&amp;nbsp;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 18 Dec 2013 09:15:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931714#M16753</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-18T09:15:06Z</dc:date>
    </item>
    <item>
      <title>I've found the problems:</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931715#M16754</link>
      <description>&lt;P&gt;I've found the problems:&lt;/P&gt;

&lt;P&gt;Wrong dimensions for source/destination arrays and ROI; &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;FilterGauss/ConvFull&lt;/STRONG&gt; don't work for 1-dimensional arrays (for them is applicable &lt;STRONG&gt;only&lt;/STRONG&gt; &lt;STRONG&gt;ippsFilterGauss/ippsConv&lt;/STRONG&gt; form Signal's domain.).&lt;/P&gt;

&lt;P&gt;Wrong border values.&lt;/P&gt;

&lt;P&gt;Thank you for all, who answer to my questions.&lt;/P&gt;

&lt;P&gt;Mark&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2013 10:05:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931715#M16754</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-19T10:05:28Z</dc:date>
    </item>
    <item>
      <title>I've found the problems:</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931716#M16755</link>
      <description>&lt;P&gt;I've found the problems:&lt;/P&gt;

&lt;P&gt;Wrong dimensions for source/destination arrays and ROI; &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;FilterGauss/ConvFull&lt;/STRONG&gt; don't work for 1-dimensional arrays (for them is applicable &lt;STRONG&gt;only&lt;/STRONG&gt; &lt;STRONG&gt;ippsFilterGauss/ippsConv&lt;/STRONG&gt; form Signal's domain.).&lt;/P&gt;

&lt;P&gt;Wrong border values.&lt;/P&gt;

&lt;P&gt;Thank you for all, who answer to my questions.&lt;/P&gt;

&lt;P&gt;Mark&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2013 10:07:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931716#M16755</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-19T10:07:06Z</dc:date>
    </item>
    <item>
      <title>I've found the problems:</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931717#M16756</link>
      <description>&lt;P&gt;I've found the problems:&lt;/P&gt;

&lt;P&gt;Wrong dimensions for source/destination arrays and ROI; &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;FilterGauss/ConvFull&lt;/STRONG&gt; don't work for 1-dimensional arrays (for them is applicable &lt;STRONG&gt;only&lt;/STRONG&gt; &lt;STRONG&gt;ippsFilterGauss/ippsConv&lt;/STRONG&gt; form Signal's domain.).&lt;/P&gt;

&lt;P&gt;Wrong border values.&lt;/P&gt;

&lt;P&gt;Thank you for all, who answer to my questions.&lt;/P&gt;

&lt;P&gt;Mark&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2013 10:07:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931717#M16756</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-19T10:07:30Z</dc:date>
    </item>
    <item>
      <title>The C and Matlab code</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931718#M16757</link>
      <description>&lt;P&gt;The C and Matlab code&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;STRONG&gt;C Code&lt;/STRONG&gt;:&lt;BR /&gt;
		// simple filtergauss&lt;BR /&gt;
		printf ("Test of FilterGaussBorderXXX.\n----------------\n");&lt;BR /&gt;
		const int nWidth = 9, nHeight = 8;&lt;BR /&gt;
		const int nKernelWidth = 5;&lt;BR /&gt;
		IppiSize nOffset = {0, 0};&lt;BR /&gt;
		&lt;BR /&gt;
		&lt;BR /&gt;
		IppiSize nsWhole = { nWidth, nHeight};&lt;BR /&gt;
		IppiSize nsMiddleRoi = {4, 4};&lt;BR /&gt;
		IppiSize nsPart = {4, 3};&lt;BR /&gt;
		&lt;BR /&gt;
		IppStatus nError;&lt;BR /&gt;
		&lt;BR /&gt;
		Ipp32f faSrc[nWidth * nHeight] = {1};&lt;BR /&gt;
		nError = ippiSet_32f_C1R (1, faSrc, nWidth*sizeof(Ipp32f), nsWhole);&lt;BR /&gt;
		nError = ippiSet_32f_C1R (2, faSrc + 2 * nWidth + 3, nWidth*sizeof(Ipp32f), nsMiddleRoi);&lt;BR /&gt;
		//ippiSet_32f_C1R (0, faSrc, nHeight * sizeof (Ipp32f), nsFirstHalf);&lt;BR /&gt;
		PrintArray("Src", faSrc, nWidth, nHeight, NULL);&lt;BR /&gt;
		&lt;BR /&gt;
		IppiSize nRoiSize = {nWidth,nHeight};&lt;BR /&gt;
		&lt;BR /&gt;
		Ipp32f faDst[nWidth * nHeight];&lt;BR /&gt;
		&lt;BR /&gt;
		nError = ippiSet_32f_C1R (0., faDst, nWidth*sizeof(Ipp32f), nRoiSize);&lt;BR /&gt;
		PrintArray("Dst", faDst, nWidth, nHeight);&lt;BR /&gt;
		&lt;BR /&gt;
		&lt;BR /&gt;
		int nBufferSize = 0;&lt;BR /&gt;
		ippiFilterGaussGetBufferSize_32f_C1R (nRoiSize, 5, &amp;amp;nBufferSize);&lt;BR /&gt;
		Ipp8u* pBuffer = (Ipp8u*) malloc (nBufferSize);&lt;BR /&gt;
		&lt;BR /&gt;
		nError = ippiFilterGaussBorder_32f_C1&lt;BR /&gt;
		(faSrc, nWidth * sizeof(Ipp32f)&lt;BR /&gt;
		, faDst, nWidth * sizeof(Ipp32f)&lt;BR /&gt;
		, nRoiSize&lt;BR /&gt;
		, nKernelWidth, 0.85, ippBorderRepl, 1&lt;BR /&gt;
		, pBuffer);&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		free (pBuffer);&lt;BR /&gt;
		&lt;BR /&gt;
		PrintArray ("AfterGauss", faDst, nRoiSize.width, nRoiSize.height, &amp;amp;nOffset);&lt;BR /&gt;
		&lt;BR /&gt;
		&lt;BR /&gt;
		&lt;STRONG&gt;Matlab Code:&lt;/STRONG&gt;&lt;BR /&gt;
		&lt;BR /&gt;
		fSrc = ones( 8, 9, 'double');&lt;BR /&gt;
		fSrc(3:6, 4:7) = 2;&lt;BR /&gt;
		fKernel = fspecial ('gaussian', [5 5], 0.85);&lt;BR /&gt;
		fDst = imfilter (fSrc, fKernel, 'replicate');&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;SPAN style="display: none"&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;DIV id="cke_pastebin" style="position: absolute; top: 10px; width: 1px; height: 400px; overflow-x: hidden; overflow-y: hidden; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; left: -1000px"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Dec 2013 10:11:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931718#M16757</guid>
      <dc:creator>m_a_</dc:creator>
      <dc:date>2013-12-19T10:11:10Z</dc:date>
    </item>
    <item>
      <title>Great to know that you've</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931719#M16758</link>
      <description>&lt;P&gt;Great to know that you've managed to solve all the issues yourself. Feel free to ask in case of any other problems.&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2013 12:37:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippiFilterGauss-calculates-wrong-results/m-p/931719#M16758</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2013-12-19T12:37:41Z</dc:date>
    </item>
  </channel>
</rss>

