<?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 Histogram Equalization Input Image in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831613#M5608</link>
    <description>&lt;SPAN style="text-decoration: underline;"&gt;...Should I use the normal &lt;STRONG&gt;fopen&lt;/STRONG&gt; function...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Yes. You can use any set of I/O functions:&lt;BR /&gt;&lt;BR /&gt;- In case of CRT-functions:&lt;BR /&gt;&lt;STRONG&gt; fopen&lt;/STRONG&gt;, &lt;STRONG&gt;fseek&lt;/STRONG&gt;,&lt;STRONG&gt;fread&lt;/STRONG&gt;, &lt;STRONG&gt;fclose&lt;/STRONG&gt;;&lt;BR /&gt; or&lt;BR /&gt; _&lt;STRONG&gt;open&lt;/STRONG&gt;, _&lt;STRONG&gt;filelength&lt;/STRONG&gt;, _&lt;STRONG&gt;read&lt;/STRONG&gt;, _&lt;STRONG&gt;close&lt;/STRONG&gt;;&lt;BR /&gt;&lt;BR /&gt;- In case of Win32-functions: &lt;STRONG&gt;CreateFile&lt;/STRONG&gt;, &lt;STRONG&gt;GetFileSIze&lt;/STRONG&gt;,&lt;STRONG&gt;ReadFile&lt;/STRONG&gt;, &lt;STRONG&gt;CloseHandle&lt;/STRONG&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;...read the file byte by byte or should i go for some other method?..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;- Byte-by-Byte reading isslow and ineffective;&lt;BR /&gt;- Read thefile completely in a buffer.&lt;BR /&gt;&lt;BR /&gt;In general a better way is as follows:&lt;BR /&gt;&lt;BR /&gt; - open a bmp-file&lt;BR /&gt; - getthe length&lt;BR /&gt; - allocate a buffer with &lt;STRONG&gt;malloc&lt;/STRONG&gt; or &lt;STRONG&gt;new&lt;/STRONG&gt;&lt;BR /&gt; - read data&lt;BR /&gt; - process&lt;BR /&gt; - save results&lt;BR /&gt; - deallocate the buffer with &lt;STRONG&gt;free&lt;/STRONG&gt; or &lt;STRONG&gt;delete&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Also, there is an example in &lt;STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;IPL&lt;/SPAN&gt;&lt;/STRONG&gt; documentation onhow &lt;STRONG&gt;iplHistoEqualize&lt;/STRONG&gt; must be used.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;</description>
    <pubDate>Thu, 03 Nov 2011 13:44:00 GMT</pubDate>
    <dc:creator>SergeyKostrov</dc:creator>
    <dc:date>2011-11-03T13:44:00Z</dc:date>
    <item>
      <title>Histogram Equalization Input Image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831610#M5605</link>
      <description>&lt;P&gt;Hai&lt;BR /&gt;&lt;BR /&gt;Could any one please help me as to how we should provide the input image for a particular IPP Image processing fuction. My input image is in .bmp format. I am stuck with how to read this file format and set the Region of Interest. Should I use the normal fopen function and read the file byte by byte or should i go for some other method?The function in the IPP sample - iplHistoEqualize has the folowing input arguments -&lt;/P&gt;&lt;P&gt;IplImage* srcImage, &lt;BR /&gt;IplImage* dstImage,&lt;BR /&gt;IplLUT** lut&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Rahul&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2011 19:10:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831610#M5605</guid>
      <dc:creator>arrahul</dc:creator>
      <dc:date>2011-09-12T19:10:54Z</dc:date>
    </item>
    <item>
      <title>Histogram Equalization Input Image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831611#M5606</link>
      <description>&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;You may want to look at some of the code samples provided &lt;A href="http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-code-samples/"&gt;&lt;SPAN style="text-decoration: underline;"&gt;here&lt;/SPAN&gt;&lt;/A&gt;. (Search for BMP on this web page).&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;-Tony&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2011 23:15:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831611#M5606</guid>
      <dc:creator>Anthony_P_Intel</dc:creator>
      <dc:date>2011-09-12T23:15:37Z</dc:date>
    </item>
    <item>
      <title>Histogram Equalization Input Image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831612#M5607</link>
      <description>Hi Rahul&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;Did you referred to IPL migration documentation? This is an article about how to migrate from IPL to IPP.&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-domain-library-migration-faq/"&gt;http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-domain-library-migration-faq/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ying &lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2011 07:38:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831612#M5607</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2011-09-14T07:38:49Z</dc:date>
    </item>
    <item>
      <title>Histogram Equalization Input Image</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831613#M5608</link>
      <description>&lt;SPAN style="text-decoration: underline;"&gt;...Should I use the normal &lt;STRONG&gt;fopen&lt;/STRONG&gt; function...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Yes. You can use any set of I/O functions:&lt;BR /&gt;&lt;BR /&gt;- In case of CRT-functions:&lt;BR /&gt;&lt;STRONG&gt; fopen&lt;/STRONG&gt;, &lt;STRONG&gt;fseek&lt;/STRONG&gt;,&lt;STRONG&gt;fread&lt;/STRONG&gt;, &lt;STRONG&gt;fclose&lt;/STRONG&gt;;&lt;BR /&gt; or&lt;BR /&gt; _&lt;STRONG&gt;open&lt;/STRONG&gt;, _&lt;STRONG&gt;filelength&lt;/STRONG&gt;, _&lt;STRONG&gt;read&lt;/STRONG&gt;, _&lt;STRONG&gt;close&lt;/STRONG&gt;;&lt;BR /&gt;&lt;BR /&gt;- In case of Win32-functions: &lt;STRONG&gt;CreateFile&lt;/STRONG&gt;, &lt;STRONG&gt;GetFileSIze&lt;/STRONG&gt;,&lt;STRONG&gt;ReadFile&lt;/STRONG&gt;, &lt;STRONG&gt;CloseHandle&lt;/STRONG&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;...read the file byte by byte or should i go for some other method?..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;- Byte-by-Byte reading isslow and ineffective;&lt;BR /&gt;- Read thefile completely in a buffer.&lt;BR /&gt;&lt;BR /&gt;In general a better way is as follows:&lt;BR /&gt;&lt;BR /&gt; - open a bmp-file&lt;BR /&gt; - getthe length&lt;BR /&gt; - allocate a buffer with &lt;STRONG&gt;malloc&lt;/STRONG&gt; or &lt;STRONG&gt;new&lt;/STRONG&gt;&lt;BR /&gt; - read data&lt;BR /&gt; - process&lt;BR /&gt; - save results&lt;BR /&gt; - deallocate the buffer with &lt;STRONG&gt;free&lt;/STRONG&gt; or &lt;STRONG&gt;delete&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Also, there is an example in &lt;STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;IPL&lt;/SPAN&gt;&lt;/STRONG&gt; documentation onhow &lt;STRONG&gt;iplHistoEqualize&lt;/STRONG&gt; must be used.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Nov 2011 13:44:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Histogram-Equalization-Input-Image/m-p/831613#M5608</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-11-03T13:44:00Z</dc:date>
    </item>
  </channel>
</rss>

