<?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 Re: Extracting RGB channels in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851070#M6543</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/419953"&gt;rogene&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Huh? Where should I be posting questions like this?Thequestionwas specific to accessing information in a Ipp8u image. &lt;BR /&gt;&lt;BR /&gt;Thanks for your help. &lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;An "Ipp8u image" is (usually) allocated by ippiMalloc_8u_C1/C3, no by using windows gdi functions ! :)&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;</description>
    <pubDate>Tue, 28 Apr 2009 11:14:00 GMT</pubDate>
    <dc:creator>elhefe38</dc:creator>
    <dc:date>2009-04-28T11:14:00Z</dc:date>
    <item>
      <title>Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851066#M6539</link>
      <description>Geez! What am I missing here? Why aren't I able to seperate out the rgb channels?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt; -R&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;// Lock &amp;amp; Scan&lt;BR /&gt;BitmapData^ imageData = bitmap-&amp;gt;LockBits(rect, ImageLockMode::ReadOnly,bitmap-&amp;gt;PixelFormat);&lt;BR /&gt;Ipp8u* ippImage = (Ipp8u*) ((imageData-&amp;gt;Scan0).ToPointer());&lt;BR /&gt;int stride = imageData-&amp;gt;Stride;&lt;BR /&gt;&lt;BR /&gt;// check rgb values&lt;BR /&gt;int y = 0;&lt;BR /&gt;for (int i = 0; i &amp;lt; height; i++) {&lt;BR /&gt; for (int j = 0; j &amp;lt; stride; j++) {&lt;BR /&gt; int pixel = *(ippImage + y);&lt;BR /&gt; if (j &amp;lt; width) {&lt;BR /&gt; int r = (pixel &amp;amp; 0xff0000) &amp;lt;&amp;lt; 16;&lt;BR /&gt; int g = (pixel &amp;amp; 0x00ff00) &amp;lt;&amp;lt; 8;&lt;BR /&gt; int b = (pixel &amp;amp; 0x0000ff);&lt;BR /&gt; Console::WriteLine(r + " " + g + " " + b);&lt;BR /&gt; }&lt;BR /&gt; y++;&lt;BR /&gt; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 25 Apr 2009 00:24:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851066#M6539</guid>
      <dc:creator>rogene</dc:creator>
      <dc:date>2009-04-25T00:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851067#M6540</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/419953"&gt;rogene&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Geez! What am I missing here? Why aren't I able to seperate out the rgb channels?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt; -R&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;// Lock &amp;amp; Scan&lt;BR /&gt;BitmapData^ imageData = bitmap-&amp;gt;LockBits(rect, ImageLockMode::ReadOnly,bitmap-&amp;gt;PixelFormat);&lt;BR /&gt;Ipp8u* ippImage = (Ipp8u*) ((imageData-&amp;gt;Scan0).ToPointer());&lt;BR /&gt;int stride = imageData-&amp;gt;Stride;&lt;BR /&gt;&lt;BR /&gt;// check rgb values&lt;BR /&gt;int y = 0;&lt;BR /&gt;for (int i = 0; i &amp;lt; height; i++) {&lt;BR /&gt; for (int j = 0; j &amp;lt; stride; j++) {&lt;BR /&gt; int pixel = *(ippImage + y);&lt;BR /&gt; if (j &amp;lt; width) {&lt;BR /&gt; int r = (pixel &amp;amp; 0xff0000) &amp;lt;&amp;lt; 16;&lt;BR /&gt; int g = (pixel &amp;amp; 0x00ff00) &amp;lt;&amp;lt; 8;&lt;BR /&gt; int b = (pixel &amp;amp; 0x0000ff);&lt;BR /&gt; Console::WriteLine(r + " " + g + " " + b);&lt;BR /&gt; }&lt;BR /&gt; y++;&lt;BR /&gt; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hello,&lt;BR /&gt;first of all, your topic is not related to IPP at all.&lt;BR /&gt;Never the less, I'll try to answer :&lt;BR /&gt;&lt;BR /&gt;// check rgb values&lt;BR /&gt;Ipp8u *pSrc = ippImage;&lt;BR /&gt;int y = 0;&lt;BR /&gt;for (int i = 0; i &amp;lt; height; i++) {&lt;BR /&gt; for (int j = 0; j &amp;lt; 3*width; j+=3) {&lt;BR /&gt; Ipp8u *pixel = pSrc + j;&lt;BR /&gt; &lt;BR /&gt; int r = pixel[2];&lt;BR /&gt; int g = pixel[1];&lt;BR /&gt; int b = pixel[0];&lt;BR /&gt; Console::WriteLine(r + " " + g + " " + b);&lt;BR /&gt; }&lt;BR /&gt;pSrc += stride;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;By the way, you can use ippiCopy_8u_C3P3R to copy your RGB image in 3 seperate planes. Look at ippi documentation.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Matthieu&lt;BR /&gt;&lt;BR /&gt;PS : not sure of RGB order (I think it's BGR in memory)&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2009 08:39:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851067#M6540</guid>
      <dc:creator>matthieu_darbois</dc:creator>
      <dc:date>2009-04-27T08:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851068#M6541</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/404840"&gt;matthieu.darbois&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hello,&lt;BR /&gt;first of all, your topic is not related to IPP at all.&lt;BR /&gt;Never the less, I'll try to answer :&lt;BR /&gt;&lt;BR /&gt;// check rgb values&lt;BR /&gt;Ipp8u *pSrc = ippImage;&lt;BR /&gt;int y = 0;&lt;BR /&gt;for (int i = 0; i &amp;lt; height; i++) {&lt;BR /&gt;for (int j = 0; j &amp;lt; 3*width; j+=3) {&lt;BR /&gt;Ipp8u *pixel = pSrc + j;&lt;BR /&gt;&lt;BR /&gt;int r = pixel[2];&lt;BR /&gt;int g = pixel[1];&lt;BR /&gt;int b = pixel[0];&lt;BR /&gt;Console::WriteLine(r + " " + g + " " + b);&lt;BR /&gt;}&lt;BR /&gt;pSrc += stride;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;By the way, you can use ippiCopy_8u_C3P3R to copy your RGB image in 3 seperate planes. Look at ippi documentation.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Matthieu&lt;BR /&gt;&lt;BR /&gt;PS : not sure of RGB order (I think it's BGR in memory)&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Huh? Where should I be posting questions like this?Thequestionwas specific to accessing information in a Ipp8u image. &lt;BR /&gt;&lt;BR /&gt;Thanks for your help. &lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2009 21:16:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851068#M6541</guid>
      <dc:creator>rogene</dc:creator>
      <dc:date>2009-04-27T21:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851069#M6542</link>
      <description>&lt;DIV style="margin: 0px; height: auto;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Your code worked beautifully. I get it now! The byte ordering is starting to make sense. Thanks for the help! &lt;BR /&gt;&lt;BR /&gt;(btw, the rgb order was correct as written.)</description>
      <pubDate>Mon, 27 Apr 2009 22:11:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851069#M6542</guid>
      <dc:creator>rogene</dc:creator>
      <dc:date>2009-04-27T22:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851070#M6543</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/419953"&gt;rogene&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Huh? Where should I be posting questions like this?Thequestionwas specific to accessing information in a Ipp8u image. &lt;BR /&gt;&lt;BR /&gt;Thanks for your help. &lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;An "Ipp8u image" is (usually) allocated by ippiMalloc_8u_C1/C3, no by using windows gdi functions ! :)&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:14:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851070#M6543</guid>
      <dc:creator>elhefe38</dc:creator>
      <dc:date>2009-04-28T11:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851071#M6544</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/21442"&gt;elhefe38&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;An "Ipp8u image" is (usually) allocated by ippiMalloc_8u_C1/C3, no by using windows gdi functions ! :)&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;BR /&gt;Quite true, however there should be no problems using memory allocated with other routines ... correct? I tend to use VirtualAlloc so that I have the option of locking the memory to the non-paged pool using VirtualLock. Is there some way to lock down memory allocated with ippiMalloc_8u_C1() ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Peter&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:37:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851071#M6544</guid>
      <dc:creator>pvonkaenel</dc:creator>
      <dc:date>2009-04-28T11:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851072#M6545</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/21442"&gt;elhefe38&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;An "Ipp8u image" is (usually) allocated by ippiMalloc_8u_C1/C3, no by using windows gdi functions ! :)&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I'd say that an Ipp8u image doesn't really exist (typedef unsigned char Ipp8u).&lt;BR /&gt;It's just a memory buffer. Who allocated the buffer doesn't really matter (except for speed because ippiMalloc_* aligns start of line on a 32 byte boundary).&lt;BR /&gt;&lt;BR /&gt;So, to the question "Huh? Where should I be posting questions like this? The question was specific to accessing information in a Ipp8u image. ", the answer would be on any forum dealing with C/C++ image processing. IPP forum should be used to address concerns on IPP and IPP samples...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Matthieu&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:39:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851072#M6545</guid>
      <dc:creator>matthieu_darbois</dc:creator>
      <dc:date>2009-04-28T11:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851073#M6546</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/414649"&gt;pvonkaenel&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;&lt;BR /&gt;Quite true, however there should be no problems using memory allocated with other routines ... correct? I tend to use VirtualAlloc so that I have the option of locking the memory to the non-paged pool using VirtualLock. Is there some way to lock down memory allocated with ippiMalloc_8u_C1() ?&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I have used many IPP functions on both buffers allocated through ippMalloc and plain malloc/new. No problem so far (provided you supply the correct step)... and also on gdi+ bitmaps buffers.&lt;BR /&gt;However, according to Valdimir, using IPP functions on malloc'd buffers can impact performance.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:46:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851073#M6546</guid>
      <dc:creator>elhefe38</dc:creator>
      <dc:date>2009-04-28T11:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851074#M6547</link>
      <description>&lt;BR /&gt;elhefe38:&lt;BR /&gt;&lt;BR /&gt;Would you pleaseshare the "correct" way of importing Bitmaps for use with the IPP Library, rather than just telling me that it is "wrong" to import using the Windows gdi functions. I am not finding much in the manual on this topic.&lt;BR /&gt;&lt;BR /&gt;Matthieu: &lt;BR /&gt;&lt;BR /&gt;It is not friendly to tell people who are evaluating the adoption and purchase of a technology to go elsewhere to get their questions answered. &lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Apr 2009 20:54:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851074#M6547</guid>
      <dc:creator>rogene</dc:creator>
      <dc:date>2009-04-28T20:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851075#M6548</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/419953"&gt;rogene&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;elhefe38:&lt;BR /&gt;&lt;BR /&gt;Would you pleaseshare the "correct" way of importing Bitmaps for use with the IPP Library, rather than just telling me that it is "wrong" to import using the Windows gdi functions. I am not finding much in the manual on this topic.&lt;BR /&gt;&lt;BR /&gt;Matthieu: &lt;BR /&gt;&lt;BR /&gt;It is not friendly to tell people who are evaluating the adoption and purchase of a technology to go elsewhere to get their questions answered. &lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I did not say your way of processing gdi bitmaps was "wrong", but it has, as Mathieu said, nothing to do with IPP itself (although undertanding the layout of a gdi bitmap will be helpful if you intend to process it later through IPP). Your code example could have been posted on a windows/gdi specific NG (there are quite a few). &lt;BR /&gt;Anyway, I guess your issue is resolved now ?&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:24:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851075#M6548</guid>
      <dc:creator>elhefe38</dc:creator>
      <dc:date>2009-04-29T06:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting RGB channels</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851076#M6549</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/21442"&gt;elhefe38&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;I did not say your way of processing gdi bitmaps was "wrong", but it has, as Mathieu said, nothing to do with IPP itself (although undertanding the layout of a gdi bitmap will be helpful if you intend to process it later through IPP). Your code example could have been posted on a windows/gdi specific NG (there are quite a few). &lt;BR /&gt;Anyway, I guess your issue is resolved now ?&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Yes, it is resolved now. &lt;BR /&gt;&lt;BR /&gt;I suppose after I have worked with image processing for several years, then I, too, will have a good sense of whether a question falls into a general knowledge category or a product specific category. But today, I find myself on a image processing project which is both outside of my field andon a tight deadline, so I'd appreciate you cutting me some slack. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Apr 2009 19:13:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Extracting-RGB-channels/m-p/851076#M6549</guid>
      <dc:creator>rogene</dc:creator>
      <dc:date>2009-04-29T19:13:55Z</dc:date>
    </item>
  </channel>
</rss>

