<?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 George,  in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096127#M25035</link>
    <description>&lt;P&gt;Hi George,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Right, the x_factor(&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;&amp;nbsp;wratio)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp; y_factor (hratio) &amp;nbsp;can be defined by srcRoi size and dstRoi size. &amp;nbsp;for example&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;srcSize.width = org_image-&amp;gt;columns;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcSize.height = org_image-&amp;gt;rows;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstSize.width = dst_image-&amp;gt;columns;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstSize.height = dst_image-&amp;gt; rows;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;srcRoi.width = srcSize.width;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcRoi.height = srcSize.height;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.x = 0;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.y = 0;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.width = dstSize.width;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.height = dstSize.height;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcWidthStep = srcSize.width * 3;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstWidthStep = dstSize.width * 3;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;double x_factor;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; double y_factor;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x_factor = (double)dstSize.width/srcSize.width;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; y_factor = (double)dstSize.height/srcSize.height;&lt;/P&gt;

&lt;P&gt;If &amp;nbsp;you have x_factor and y_factor &amp;nbsp;, then you can get dst image, width and height. &amp;nbsp;Or if you have dst image size, then you can get x_factor, y_factor, which will don't need in new resize functions. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Mar 2016 03:39:18 GMT</pubDate>
    <dc:creator>Ying_H_Intel</dc:creator>
    <dc:date>2016-03-15T03:39:18Z</dc:date>
    <item>
      <title>Replacing ippiResize_8u_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096125#M25033</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Hi, I am attempting to replace the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(0, 0, 0); font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace; font-size: 14px; line-height: 15.4px; white-space: pre-wrap;"&gt;ippiResize_8u_C1R function as shown at &lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;A href="https://software.intel.com/en-us/articles/resize-changes-in-intel-ipp-71" target="_blank"&gt;https://software.intel.com/en-us/articles/resize-changes-in-intel-ipp-71&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;, but I am running into some problems. The sample code does not mention the parameters wratio and hratio in the original function. How are these parameters replaced? I have used another example from this site (also missing hratio and wratio) and my destination image is obviously unscaled. I have rebuilt my entire application using ipp8, but I am pretty much dead in the water without the ability to resize my images.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 22:57:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096125#M25033</guid>
      <dc:creator>George_D_2</dc:creator>
      <dc:date>2016-03-02T22:57:50Z</dc:date>
    </item>
    <item>
      <title>I'm assuming hratio and</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096126#M25034</link>
      <description>&lt;P&gt;I'm assuming hratio and vratio are used to modify destination size. In any case that seems to work for me.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2016 22:41:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096126#M25034</guid>
      <dc:creator>George_D_2</dc:creator>
      <dc:date>2016-03-04T22:41:57Z</dc:date>
    </item>
    <item>
      <title>Hi George, </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096127#M25035</link>
      <description>&lt;P&gt;Hi George,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Right, the x_factor(&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;&amp;nbsp;wratio)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp; y_factor (hratio) &amp;nbsp;can be defined by srcRoi size and dstRoi size. &amp;nbsp;for example&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;srcSize.width = org_image-&amp;gt;columns;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcSize.height = org_image-&amp;gt;rows;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstSize.width = dst_image-&amp;gt;columns;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstSize.height = dst_image-&amp;gt; rows;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;srcRoi.width = srcSize.width;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcRoi.height = srcSize.height;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.x = 0;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.y = 0;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.width = dstSize.width;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstRoi.height = dstSize.height;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcWidthStep = srcSize.width * 3;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dstWidthStep = dstSize.width * 3;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;double x_factor;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; double y_factor;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x_factor = (double)dstSize.width/srcSize.width;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; y_factor = (double)dstSize.height/srcSize.height;&lt;/P&gt;

&lt;P&gt;If &amp;nbsp;you have x_factor and y_factor &amp;nbsp;, then you can get dst image, width and height. &amp;nbsp;Or if you have dst image size, then you can get x_factor, y_factor, which will don't need in new resize functions. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2016 03:39:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096127#M25035</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2016-03-15T03:39:18Z</dc:date>
    </item>
    <item>
      <title>Hi George,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096128#M25036</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Hi George,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;I had met this same problem as you and it took me a lot of time to figure out. I would like to give you the code sample:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;This is substitute function for ippiResize_32f_C1R. you can change datatype to match your ippiResize_8u_C1R needs:&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;IppStatus Resize_32f_C1R(const Ipp32f* pSrc, IppiSize srcSize, int srcStep, IppiRect srcROI,
						Ipp32f* pDst, int dstStep, IppiSize dstRoiSize,
						double xFactor, double yFactor, int interpolation)
{
	IppStatus status = ippStsNoErr;					// status flag
	IppiResizeSpec_32f* pSpec = NULL;				// specification structure buffer
	int specSize = 0;								// size of specification structure buffer
	int initSize = 0;								// size of initialization buffer (only cubic and lanzcos interpolation type use this)
	int bufSize = 0;								// size of working buffer
	Ipp8u* pBuffer = NULL;							// working buffer
	Ipp8u* pInit = NULL;							// initialization buffer
	IppiPoint dstOffset = { 0, 0 };					// offset to destination image, default is {0,0}
	IppiBorderType borderType = &lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;ippBorderRepl&lt;/SPAN&gt;;		// borderType, default is &lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;ippBorderRepl&amp;nbsp;&lt;/SPAN&gt;
	Ipp32f borderValue = 0;							// border value, default is zero
	Ipp32u antialiasing = 0;						// not use antialiasing
	Ipp32u numChannels = 1;							// this function works with 1 channel
	Ipp32f valueB = 0.0f;							// default value for cubic interpolation type
	Ipp32f valueC = 0.0f;							// default value for cubic interpolation type
	Ipp32u numLobes = 2;							// default value for lanczos interpolation type
	IppiInterpolationType interpolateType;			// interpolation type
	IppiSize srcRoiSize;							// size of source ROI
	IppiSize resizeSrcRoiSize;						// size of resize source ROI
	// Check pSrc and pDst not NULL
	if ((pSrc == NULL) || (pDst == NULL))
	{
		return ippStsNullPtrErr;
	}
	// Check srcSize and dstRoiSize not have field with zero or negative number
	if ((srcSize.width &amp;lt;= 0) || (srcSize.height &amp;lt;= 0) || (dstRoiSize.width &amp;lt;= 0) || (dstRoiSize.height &amp;lt;= 0))
	{
		return ippStsSizeErr;
	}
	// Check srcRoi has no intersection with the source image
	IppiPoint topLeft     = { srcROI.x				 , srcROI.y };
	IppiPoint topRight    = { srcROI.x + srcROI.width, srcROI.y };
	IppiPoint bottomLeft  = { srcROI.x               , srcROI.y + srcROI.height };
	IppiPoint bottomRight = { srcROI.x + srcROI.width, srcROI.y + srcROI.height };
	if (((topLeft.x    &amp;lt; 0 || topLeft.x     &amp;gt; srcSize.width) || (topLeft.y     &amp;lt; 0 || topLeft.y     &amp;gt; srcSize.height)) &amp;amp;&amp;amp;
		((topRight.x   &amp;lt; 0 || topRight.x    &amp;gt; srcSize.width) || (topRight.y    &amp;lt; 0 || topRight.y    &amp;gt; srcSize.height)) &amp;amp;&amp;amp;
		((bottomLeft.x &amp;lt; 0 || bottomLeft.x  &amp;gt; srcSize.width) || (bottomLeft.y  &amp;lt; 0 || bottomLeft.y  &amp;gt; srcSize.height)) &amp;amp;&amp;amp;
		((bottomRight.x&amp;lt; 0 || bottomRight.x &amp;gt; srcSize.width) || (bottomRight.y &amp;lt; 0 || bottomRight.y &amp;gt; srcSize.height)))
	{
		return ippStsWrongIntersectROI;
	}
	// Check xFactor or yFactor is not less than or equal to zero
	if ((xFactor &amp;lt;= 0) || (yFactor &amp;lt;= 0))
	{
		return ippStsResizeFactorErr;
	}
	// Get interpolation filter type
	switch (interpolation)
	{
	case IPPI_INTER_NN:
		interpolateType = ippNearest;
		break;
	case IPPI_INTER_LINEAR:
		interpolateType = ippLinear;
		break;
	case IPPI_INTER_CUBIC:
		interpolateType = ippCubic;
		break;
	case IPPI_INTER_SUPER:
		interpolateType = ippSuper;
		break;
	case IPPI_INTER_LANCZOS:
		interpolateType = ippLanczos;
		break;
	default:
		return ippStsInterpolationErr;
	}
	// Set pSrcRoi to top-left corner of source ROI
	Ipp32f* pSrcRoi = (Ipp32f*)((Ipp8u*)pSrc + srcROI.y * srcStep) + srcROI.x * numChannels;
	// Set size of source ROI
	srcRoiSize.width  = srcROI.width;
	srcRoiSize.height = srcROI.height;
	// Calculate size of resize source ROI
	resizeSrcRoiSize.width  = (int) ceil(srcRoiSize.width  * xFactor);
	resizeSrcRoiSize.height = (int) ceil(srcRoiSize.height * yFactor);
	// Get size of specification structure buffer and initialization buffer.
	status = ippiResizeGetSize_8u(srcRoiSize, resizeSrcRoiSize, interpolateType, antialiasing , &amp;amp;specSize, &amp;amp;initSize);
	if (status != ippStsNoErr)
	{
		return status;
	}
	//Allocate memory for specification structure buffer.
	pSpec = (IppiResizeSpec_32f*)ippsMalloc_8u(specSize);
	if (pSpec == NULL)
	{
		return ippStsNoMemErr;
	}
	//Initialize specification structure buffer correspond to interpolation type
	switch (interpolation)
	{
	case IPPI_INTER_NN:
		status = ippiResizeNearestInit_32f(srcRoiSize, resizeSrcRoiSize, pSpec);
		break;
	case IPPI_INTER_LINEAR:
		status = ippiResizeLinearInit_32f(srcRoiSize, resizeSrcRoiSize, pSpec);
		break;
	case IPPI_INTER_CUBIC:
		pInit = ippsMalloc_8u(initSize);
		status = ippiResizeCubicInit_32f(srcRoiSize, resizeSrcRoiSize, valueB, valueC, pSpec, pInit);
		ippsFree(pInit);
		break;
	case IPPI_INTER_SUPER:
		status = ippiResizeSuperInit_32f(srcRoiSize, resizeSrcRoiSize, pSpec);
		break;
	case IPPI_INTER_LANCZOS:
		pInit = ippsMalloc_8u(initSize);
		status = ippiResizeLanczosInit_32f(srcRoiSize, resizeSrcRoiSize, numLobes, pSpec, pInit);
		ippsFree(pInit);
		break;
	}
	if (status != ippStsNoErr)
	{
		ippsFree(pSpec);
		return status;
	}
	// Get work buffer size
	status = ippiResizeGetBufferSize_8u(pSpec, resizeSrcRoiSize, numChannels, &amp;amp;bufSize);
	if (status != ippStsNoErr)
	{
		ippsFree(pSpec);
		return status;
	}
	// Allocate memory for work buffer.
	pBuffer = ippsMalloc_8u(bufSize);
	if (pBuffer == NULL)
	{
		ippsFree(pSpec);
		return ippStsNoMemErr;
	}
	//Execute resize processing correspond to interpolation type
	switch (interpolation)
	{
	case IPPI_INTER_NN:
		status = ippiResizeNearest_32f_C1R(pSrcRoi, srcStep, pDst, dstStep, dstOffset, dstRoiSize, pSpec, pBuffer);
		break;
	case IPPI_INTER_LINEAR:
		status = ippiResizeLinear_32f_C1R(pSrcRoi, srcStep, pDst, dstStep, dstOffset, dstRoiSize, borderType, &amp;amp;borderValue, pSpec, pBuffer);
		break;
	case IPPI_INTER_CUBIC:
		status = ippiResizeCubic_32f_C1R(pSrcRoi, srcStep, pDst, dstStep, dstOffset, dstRoiSize, borderType, &amp;amp;borderValue, pSpec, pBuffer);
		break;
	case IPPI_INTER_SUPER:
		status = ippiResizeSuper_32f_C1R(pSrcRoi, srcStep, pDst, dstStep, dstOffset, dstRoiSize, pSpec, pBuffer);
		break;
	case IPPI_INTER_LANCZOS:
		status = ippiResizeLanczos_32f_C1R(pSrcRoi, srcStep, pDst, dstStep, dstOffset, dstRoiSize, borderType, &amp;amp;borderValue, pSpec, pBuffer);
		break;
	}
	// Free memory
	ippsFree(pSpec);
	ippsFree(pBuffer);

	return status;
}&lt;/PRE&gt;

&lt;P&gt;Hope it can help you.&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Tam.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2016 09:20:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096128#M25036</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-03-25T09:20:00Z</dc:date>
    </item>
    <item>
      <title>Hi Tam,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096129#M25037</link>
      <description>&lt;P&gt;Hi Tam,&lt;/P&gt;

&lt;P&gt;I tried your implementation to replace ippiResize_32f_C1R. However, at line 143 I get the following status error under IPP 9.0:&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px; line-height: 16.8px; white-space: pre;"&gt;ippStsNotSupportedModeErr ( -9999 ) &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Why do you think this is happening?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks,Zeki&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2016 21:40:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096129#M25037</guid>
      <dc:creator>ismet_y_</dc:creator>
      <dc:date>2016-04-14T21:40:19Z</dc:date>
    </item>
    <item>
      <title>Hi Zeki,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096130#M25038</link>
      <description>&lt;P&gt;Hi Zeki,&lt;/P&gt;

&lt;P&gt;ippiResize* functions do not support the border type&amp;nbsp;ippBorderConst. You should try to use the border type ippBorderRepl at the line 13.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Valentin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2016 08:34:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Replacing-ippiResize-8u-C1R/m-p/1096130#M25038</guid>
      <dc:creator>Valentin_K_Intel</dc:creator>
      <dc:date>2016-04-15T08:34:38Z</dc:date>
    </item>
  </channel>
</rss>

