<?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: Calling Intel's IPP from Delphi6 in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977136#M21086</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;With the latest version of Intel IPP 4.0, we have provided a sample to demonstratethe use of Intel IPP within the Borland* Delphi* development environment..Source code available for the Windows* operating systemopment environment. You can download it under product "Intel IPP for Windows*" from Intel Premier Support after you complete the registration for Intel IPP.&lt;/P&gt;
&lt;P&gt;See this URL to get more details on registration:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.intel.com/software/products/ipp/" target="_blank"&gt;http://www.intel.com/software/products/ipp/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hope it helps.&lt;BR /&gt;Thanks,&lt;BR /&gt;Ying &lt;/P&gt;</description>
    <pubDate>Mon, 29 Dec 2003 16:11:41 GMT</pubDate>
    <dc:creator>Ying_S_Intel</dc:creator>
    <dc:date>2003-12-29T16:11:41Z</dc:date>
    <item>
      <title>Calling Intel's IPP from Delphi6</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977134#M21084</link>
      <description>&lt;DIV&gt;Would you tell me how to Calling Intel's IPP from Delphi6.&lt;/DIV&gt;
&lt;DIV&gt;Thanks.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;mailto: &lt;A href="mailto:hujunyi@163.com" target="_blank"&gt;hujunyi@163.com&lt;/A&gt; ; &lt;A href="mailto:huzhongyi@hotmail.com" target="_blank"&gt;huzhongyi@hotmail.com&lt;/A&gt; &lt;/DIV&gt;</description>
      <pubDate>Sun, 28 Dec 2003 12:52:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977134#M21084</guid>
      <dc:creator>Deleted_U_Intel</dc:creator>
      <dc:date>2003-12-28T12:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Intel's IPP from Delphi6</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977135#M21085</link>
      <description>I have been using the new IPP from Delphi 7 without any issues. The downloads section contains one small sample, and I have been able to convert any headers as needed.
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 29 Dec 2003 11:11:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977135#M21085</guid>
      <dc:creator>adrennan</dc:creator>
      <dc:date>2003-12-29T11:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Intel's IPP from Delphi6</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977136#M21086</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;With the latest version of Intel IPP 4.0, we have provided a sample to demonstratethe use of Intel IPP within the Borland* Delphi* development environment..Source code available for the Windows* operating systemopment environment. You can download it under product "Intel IPP for Windows*" from Intel Premier Support after you complete the registration for Intel IPP.&lt;/P&gt;
&lt;P&gt;See this URL to get more details on registration:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.intel.com/software/products/ipp/" target="_blank"&gt;http://www.intel.com/software/products/ipp/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hope it helps.&lt;BR /&gt;Thanks,&lt;BR /&gt;Ying &lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2003 16:11:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977136#M21086</guid>
      <dc:creator>Ying_S_Intel</dc:creator>
      <dc:date>2003-12-29T16:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Intel's IPP from Delphi6</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977137#M21087</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;This is the easiest sample. &lt;/P&gt;
&lt;P&gt;unit Unit1;&lt;/P&gt;
&lt;P&gt;interface&lt;/P&gt;
&lt;P&gt;uses&lt;BR /&gt; Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;&lt;/P&gt;
&lt;P&gt;type&lt;BR /&gt; TForm1 = class(TForm)&lt;BR /&gt; Button1: TButton;&lt;BR /&gt; procedure Button1Click(Sender: TObject);&lt;BR /&gt; private&lt;BR /&gt; public&lt;BR /&gt; end;&lt;/P&gt;
&lt;P&gt;var&lt;BR /&gt; Form1: TForm1;&lt;/P&gt;
&lt;P&gt;implementation&lt;/P&gt;
&lt;P&gt;{$R *.dfm}&lt;/P&gt;
&lt;P&gt;function ippsMalloc_8u(Size: Integer): Pointer; stdcall; external 'ipps20.dll';&lt;BR /&gt;procedure ippsFree(p: Pointer); stdcall; external 'ipps20.dll';&lt;/P&gt;
&lt;P&gt;function ippiSet_8u_C1R(Value: Byte; pDst: PByte; DstStep: Integer; RoiSize: TPoint): Integer; stdcall; external 'ippi20.dll';&lt;BR /&gt;function ippiSum_8u_C1R(pSrc: PByte; SrcStep: Integer; RoiSize: TPoint; pSum: PDouble): Integer; stdcall; external 'ippi20.dll';&lt;/P&gt;
&lt;P&gt;procedure TForm1.Button1Click(Sender: TObject);&lt;BR /&gt;var ImgW, ImgH, ImgStep: Integer; pImg: PByte;&lt;BR /&gt;var Value: Byte; RoiSize: TPoint; Sum: Double;&lt;BR /&gt;begin&lt;BR /&gt; ImgW := 10; ImgH := 10; ImgStep := (ImgW + 15) and $FFFFFFF0;&lt;BR /&gt; pImg := ippsMalloc_8u(ImgH * ImgStep);&lt;BR /&gt; try&lt;BR /&gt; Value := 5; RoiSize := Point(ImgW, ImgH);&lt;BR /&gt; ippiSet_8u_C1R(Value, pImg, ImgStep, RoiSize);&lt;BR /&gt; ippiSum_8u_C1R(pImg, ImgStep, RoiSize, @Sum);&lt;BR /&gt; ShowMessage(FloatToStr(Sum));&lt;BR /&gt; finally&lt;BR /&gt; ippsFree(pImg);&lt;BR /&gt; end;&lt;BR /&gt;end;&lt;/P&gt;
&lt;P&gt;end.&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2004 09:49:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977137#M21087</guid>
      <dc:creator>seiji-torigoe</dc:creator>
      <dc:date>2004-01-06T09:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Intel's IPP from Delphi6</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977138#M21088</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Your Delphi sample code is good but I think it is a great idea to include some simple but general codes for operations like Thresholding, Morphology and etc. I think thresholding sample code is very better than RGBToXYZ conversion! Anyway, I hope to see your finished realease in the early future. Thanks&lt;/P&gt;
&lt;P&gt;Hadi&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2007 12:45:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977138#M21088</guid>
      <dc:creator>hadipardis</dc:creator>
      <dc:date>2007-04-18T12:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Intel's IPP from Delphi6</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977139#M21089</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;
&lt;P&gt;did you see IPP 5.x Delphi sample? This demostrates more functions (including filtering, convoltion, distance). I hope it is possible to add everythink you need additionally just by loking at that sample.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2007 15:46:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Calling-Intel-s-IPP-from-Delphi6/m-p/977139#M21089</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-04-19T15:46:43Z</dc:date>
    </item>
  </channel>
</rss>

