<?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 FilterDenoiseAdaptive in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831088#M5553</link>
    <description>Hi, May I ask an extended question on the same function? I am&lt;BR /&gt;not able to understand how I should set up the ppState ? I have &lt;BR /&gt;earlier used DenoiseCAST, and there the supporting structure was well defined.&lt;BR /&gt;Is there any structure definition for DenoiseAdaptive too? &lt;BR /&gt;Please advise. It would also be a great help if someone can give a small&lt;BR /&gt;example of how to set the varions parameters for DenoiseAdaptive before&lt;BR /&gt;calling this function.....&lt;BR /&gt;</description>
    <pubDate>Thu, 08 Sep 2011 22:14:31 GMT</pubDate>
    <dc:creator>siddy</dc:creator>
    <dc:date>2011-09-08T22:14:31Z</dc:date>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831081#M5546</link>
      <description>Hello,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I'm confused about the "maskSize" parameter toippiFilterDenoiseAdaptive. The documentation says that it "defines the region used in current pixel transformation" but I'm not clear on what that means. Anyone have any ideas? Also, is there any sample code for both this function andFilterDenoiseCAST?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you,&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Scott&lt;/DIV&gt;</description>
      <pubDate>Mon, 02 May 2011 21:27:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831081#M5546</guid>
      <dc:creator>Scott_Danahy</dc:creator>
      <dc:date>2011-05-02T21:27:27Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831082#M5547</link>
      <description>This is exactly what I was looking for. Thank you!</description>
      <pubDate>Tue, 03 May 2011 13:37:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831082#M5547</guid>
      <dc:creator>Scott_Danahy</dc:creator>
      <dc:date>2011-05-03T13:37:07Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831083#M5548</link>
      <description>Do you have any more information aboutFilterDenoiseCAST?</description>
      <pubDate>Tue, 03 May 2011 20:25:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831083#M5548</guid>
      <dc:creator>Scott_Danahy</dc:creator>
      <dc:date>2011-05-03T20:25:13Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831084#M5549</link>
      <description>&lt;P&gt;I could not find a sample code for this function. I notice some one asked on the clarification on the pHistoryWeight paramters: &lt;/P&gt;&lt;P&gt;pHistoryWeight contains the history weight for every block in the picture, the weight is used for blending in case of static content:&lt;/P&gt;&lt;P&gt;destination_pixel = ((previous_picture_pixel - current_picture_pixel) * history + current_picture_pixel * 256 + 128) / 256;&lt;/P&gt;&lt;P&gt;If theres no previous picture (the first picture in the sequence is being processed), the pHistoryWeight array is uniformly filled by the function with the value of pInParam-&amp;gt;HistoryWeight, and is further updated inside the function, with no interference required from the user &lt;/P&gt;&lt;P&gt;Hope it can help. &lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Chao &lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2011 07:12:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831084#M5549</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-05-10T07:12:35Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831085#M5550</link>
      <description>Thank you. So the size of the pHistoryWeight array needs to be (roiWidth*roiHeight) / (pInParamBlock-&amp;gt;Width*pInParam-&amp;gt;BlockHeight)?</description>
      <pubDate>Tue, 10 May 2011 16:05:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831085#M5550</guid>
      <dc:creator>Scott_Danahy</dc:creator>
      <dc:date>2011-05-10T16:05:23Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831086#M5551</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The size of the array should be not less than:&lt;BR /&gt;((srcRoiSize.width + pInParam-&amp;gt;BlockWidth - 1)/ pInParam-&amp;gt;BlockWidth)*(( srcRoiSize.height + pInParam-&amp;gt;BlockHeight - 1)/ pInParam-&amp;gt;BlockHeight)&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao &lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2011 01:30:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831086#M5551</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-05-11T01:30:29Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831087#M5552</link>
      <description>Great, thanks a lot!</description>
      <pubDate>Wed, 11 May 2011 14:08:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831087#M5552</guid>
      <dc:creator>Scott_Danahy</dc:creator>
      <dc:date>2011-05-11T14:08:42Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831088#M5553</link>
      <description>Hi, May I ask an extended question on the same function? I am&lt;BR /&gt;not able to understand how I should set up the ppState ? I have &lt;BR /&gt;earlier used DenoiseCAST, and there the supporting structure was well defined.&lt;BR /&gt;Is there any structure definition for DenoiseAdaptive too? &lt;BR /&gt;Please advise. It would also be a great help if someone can give a small&lt;BR /&gt;example of how to set the varions parameters for DenoiseAdaptive before&lt;BR /&gt;calling this function.....&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Sep 2011 22:14:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831088#M5553</guid>
      <dc:creator>siddy</dc:creator>
      <dc:date>2011-09-08T22:14:31Z</dc:date>
    </item>
    <item>
      <title>FilterDenoiseAdaptive</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831089#M5554</link>
      <description>Hi experts,&lt;BR /&gt; since my last mail, I was able to successfully implement the routine&lt;BR /&gt;to perform adaptive denoising using the FilterDenoiseAdaptive function.&lt;BR /&gt;However, I am totally at loss at the amout of control that I have over the&lt;BR /&gt;denoising. Is there a way I can control the amount things other than the mask &lt;BR /&gt;size and threshold? Based on my experience with CAST, there were many parameters,&lt;BR /&gt;all of which I do not understand (I hava asked for a reference in an earlier enquiry), &lt;BR /&gt;but still I could see the effect it had on the images. I would be happy if one of the &lt;BR /&gt;experts could comment.&lt;BR /&gt;&lt;BR /&gt;In a related issue, I have to process a stach of 200 images. Any recommendations on the&lt;BR /&gt;issue of speed (FilterDenoiseAdaptive is considerably slower than CAST) would also be&lt;BR /&gt;highly appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sid.</description>
      <pubDate>Fri, 09 Sep 2011 16:36:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FilterDenoiseAdaptive/m-p/831089#M5554</guid>
      <dc:creator>siddy</dc:creator>
      <dc:date>2011-09-09T16:36:17Z</dc:date>
    </item>
  </channel>
</rss>

