<?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: 16-bit RGB Formats (555, 565) - Copy and Resize in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965987#M20166</link>
    <description>&lt;P&gt;Dean,&lt;/P&gt;
&lt;P&gt;please take a look on IPPI manual, chapter 6, Image Color Conversion, article RGB image formats. For packed formats there is special modificator in the function name (RGB555, RGB565 and so on).&lt;/P&gt;
&lt;P&gt;It is clear that for resize operation meaning of color channels is not matter, it can be YUV, XYZ or RGB. What is important - sampling. Our resize functions work only with not down-sampled images.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 02 Nov 2005 01:48:01 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2005-11-02T01:48:01Z</dc:date>
    <item>
      <title>16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965982#M20161</link>
      <description>Hi,&lt;BR /&gt;I'm attempting to add required 16-bit RGB support to some high-speed video drawing routines...&lt;BR /&gt;&lt;BR /&gt;Please could you let me know the best way to implement both "Copy" and "Resize" for both of the following RGB formats:&lt;BR /&gt;- RGB 555&lt;BR /&gt;- RGB 565&lt;BR /&gt;&lt;BR /&gt;I have attempted to use ippiResize_16u_C3R but this appears to work incorrectly, is this correct function to use?&lt;BR /&gt;&lt;BR /&gt;I also noted that when using version 4.1 ippiResize function is 5 times slower than ippiCopy for a 1:1 copy is this expected?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help,&lt;BR /&gt;Kind Regards,&lt;P&gt;Message Edited by dean.taylor@coull.biz on &lt;SPAN class="date_text"&gt;11-01-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;06:01 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2005 21:20:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965982#M20161</guid>
      <dc:creator>dean_taylor</dc:creator>
      <dc:date>2005-11-01T21:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965983#M20162</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;regarding RGB555/565 formats we have only color-conversion functions, but we have not ippiCopy or ippiResize for such format of data&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Nov 2005 00:09:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965983#M20162</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-11-02T00:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965984#M20163</link>
      <description>Thanks for your prompt and clear responce,&lt;BR /&gt;&lt;BR /&gt;I have been trying to work this out, some of the documentation within "ippiman" is a bit mis-leading (perhaps just to me)...&lt;BR /&gt;&lt;BR /&gt;---- snip ---- (ippiman.pdf, Page 63)&lt;BR /&gt;For example, in an absolute color 24-bit RGB image, three consecutive bytes (24 bits) per pixel represent the three channel intensities in pixel mode. This data type is identified in function names as 8u_C3 descriptor, where 8u represents 8-bit unsigned data for each channel and C3 represents three channels.&lt;BR /&gt;&lt;BR /&gt;For another example, in an absolute color 16-bit packed RGB image, two consecutive bytes (16 bits) per pixel represent the three channel intensities in pixel mode. This data type is identified in&lt;BR /&gt;function names as 16u_C3 descriptor, where 16u represents 16-bit unsigned data (not a bit depth) for all packed channels together and C3 stands for three channels.&lt;BR /&gt;---- snip ----&lt;BR /&gt;&lt;BR /&gt;This seems to indicate to be that if I want to manipulate RGB 16 bits per pixel image I should be looking for functions that have a 16u_C3 descriptor!&lt;BR /&gt;&lt;BR /&gt;Please could you carify for me, the exact mean this? ...&lt;BR /&gt;it is never good to be confused about how exactly a function works.&lt;BR /&gt;&lt;BR /&gt;Thanks again,&lt;BR /&gt;Dean.</description>
      <pubDate>Wed, 02 Nov 2005 01:14:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965984#M20163</guid>
      <dc:creator>dean_taylor</dc:creator>
      <dc:date>2005-11-02T01:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965985#M20164</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;you are right, it looks a bit mis-leading,as I said before,we do not have full set of functions which works with packed RGB formats (like 555 or 565). I mean there is no ippiAdd, ippiCopy, ippiResize, ...functions which work with data in such format. Instead of that we have some color-conversion functions, which can convert 8:8:8 YUV data to 555/565 RGB and vice versa.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Nov 2005 01:28:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965985#M20164</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-11-02T01:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965986#M20165</link>
      <description>For the purposes of clarity...&lt;BR /&gt;&lt;BR /&gt;if these 16-bit image functions where to exist what would the names/descriptor be for these functions?&lt;BR /&gt;&lt;BR /&gt;Would they be explictly named like the color conversion functions?&lt;BR /&gt;&lt;BR /&gt;Is the ippiResize_16u_C3R intended for use with YUV formats?&lt;BR /&gt;&lt;BR /&gt;Thanks again,&lt;BR /&gt;Dean.</description>
      <pubDate>Wed, 02 Nov 2005 01:38:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965986#M20165</guid>
      <dc:creator>dean_taylor</dc:creator>
      <dc:date>2005-11-02T01:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965987#M20166</link>
      <description>&lt;P&gt;Dean,&lt;/P&gt;
&lt;P&gt;please take a look on IPPI manual, chapter 6, Image Color Conversion, article RGB image formats. For packed formats there is special modificator in the function name (RGB555, RGB565 and so on).&lt;/P&gt;
&lt;P&gt;It is clear that for resize operation meaning of color channels is not matter, it can be YUV, XYZ or RGB. What is important - sampling. Our resize functions work only with not down-sampled images.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Nov 2005 01:48:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965987#M20166</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-11-02T01:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965988#M20167</link>
      <description>Thanks for all the info...&lt;BR /&gt;&lt;BR /&gt;Do you have any views on the following?&lt;BR /&gt;&lt;BR /&gt;What would the likelihood be of 16-bit (555, 565) Resize functionality implemented (Intel optimised) and added to IPP?&lt;BR /&gt;&lt;BR /&gt;Has there been any other requests for this in the past?&lt;BR /&gt;&lt;BR /&gt;Just interested...&lt;BR /&gt;&lt;BR /&gt;Thanks again,&lt;BR /&gt;Dean.</description>
      <pubDate>Thu, 03 Nov 2005 19:29:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965988#M20167</guid>
      <dc:creator>dean_taylor</dc:creator>
      <dc:date>2005-11-03T19:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: 16-bit RGB Formats (555, 565) - Copy and Resize</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965989#M20168</link>
      <description>&lt;P&gt;Hi Dean,&lt;/P&gt;
&lt;P&gt;yes, we had such request (something about several years ago). Actually we do not consider wide support for packed RGB formats as high priority task, you see, the world trend is to work with true-color images. In any case, if you think it would be useful functionality, please submit your feature request to &lt;A href="http://premier.intel.com" target="_blank"&gt;Intel Premier Support&lt;/A&gt; channel. We periodically do review of feature requests and trying to align with our plans.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 04 Nov 2005 00:14:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/16-bit-RGB-Formats-555-565-Copy-and-Resize/m-p/965989#M20168</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-11-04T00:14:25Z</dc:date>
    </item>
  </channel>
</rss>

