<?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: Min, Max and Mathematical Morphology in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970565#M20541</link>
    <description>&lt;BR /&gt;&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;Have you noticed bellow function : &lt;BR /&gt; ippiMinEvery_&lt;BR /&gt;&lt;BR /&gt;It suport 8u, 16u, 16s, 32f type.  Is this what your required? &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao &lt;BR /&gt;</description>
    <pubDate>Mon, 03 Aug 2009 02:13:38 GMT</pubDate>
    <dc:creator>Chao_Y_Intel</dc:creator>
    <dc:date>2009-08-03T02:13:38Z</dc:date>
    <item>
      <title>Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970552#M20528</link>
      <description>&lt;DIV&gt;&lt;BR /&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt; The most basic operation in mathematical morphology is the union/intersect operation which, in binary (1-bit) images, is the OR/AND bitwise operation and in the grayscale generalization, the max/min operation. &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;IPP (IPL) supports the greater/less (ippiCompare_&lt;MOD&gt;) than functions. This function returns a bit/byte binary mask of which pixels fullfil the condition.&lt;/MOD&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;However, this is a problematic approach since it requires multiple operations to produce the max/min image, i.e. the image in which each pixel is the maximum/minimum of the respective pixels of 2 input images.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Considering that most processors (ARM too) contain speacial instructions for such min=/max= operation without branches such functions seem somewhat inefficient.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Does IPP have or will it have such a max/min operation?&lt;BR /&gt;I believe it can be made exteremly efficient much more than the current greater/less functions.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Please advise,&lt;BR /&gt;Adi&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 16 Feb 2004 00:21:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970552#M20528</guid>
      <dc:creator>adi_shavit</dc:creator>
      <dc:date>2004-02-16T00:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970553#M20529</link>
      <description>&lt;P&gt;Hi Adi,&lt;/P&gt;
&lt;P&gt;the question is does IPP optimized code uses special CPU instructions? The answer is - yes, of course. We always try to use CPU hw capabilities if they can help us to reach better performance.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 03 Mar 2004 23:24:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970553#M20529</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2004-03-03T23:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970554#M20530</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt; Actually, this wasn't really my question. Since as you say you use special CPU instruction, it seems starnge that there isn't one atomic operation for getting the min(max) of 2 images(arrays). &lt;/P&gt;
&lt;P&gt;The current implementation requires keeping an intermidiate result mask e.g for later assignment. Though convenient for some things, other operation can benefit from avoiding this second image pass.&lt;/P&gt;
&lt;P&gt;Adi&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 03 Mar 2004 23:45:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970554#M20530</guid>
      <dc:creator>adi_shavit</dc:creator>
      <dc:date>2004-03-03T23:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970555#M20531</link>
      <description>&lt;P&gt;So, you talk about something like this:&lt;/P&gt;
&lt;P&gt;ippiMin_8u_C1R(pSrc1,pSrc2,pDst),&lt;/P&gt;
&lt;P&gt;where pDst[i[]&lt;J&gt; = min(pSrc1&lt;I&gt;&lt;J&gt;,pSrc2&lt;I&gt;&lt;J&gt;)&lt;/J&gt;&lt;/I&gt;&lt;/J&gt;&lt;/I&gt;&lt;/J&gt;&lt;/P&gt;
&lt;P&gt;Is that right?&lt;/P&gt;
&lt;P&gt;Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Mar 2004 20:18:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970555#M20531</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2004-03-05T20:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970556#M20532</link>
      <description>Exactly!, and, of course, the in-place version and the max versions too.
&lt;DIV&gt;Adi&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Mar 2004 22:47:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970556#M20532</guid>
      <dc:creator>adi_shavit</dc:creator>
      <dc:date>2004-03-05T22:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970557#M20533</link>
      <description>Ok, now I understand, thank you. Well, we will consider this request. 
&lt;DIV&gt;If you did notsubmitted yet this request to Intel Premier Support, it would be nice to do it. So it will fall into our data base where it will be tracked.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;/DIV&gt;
&lt;DIV&gt; Vladimir&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Mar 2004 00:41:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970557#M20533</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2004-03-06T00:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970558#M20534</link>
      <description>&lt;P&gt;Sure. Will do.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Adi&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Mar 2004 03:03:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970558#M20534</guid>
      <dc:creator>adi_shavit</dc:creator>
      <dc:date>2004-03-06T03:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970559#M20535</link>
      <description>&lt;P&gt;By the way, have you seen ippsMinEvery/ippsMaxEvery API in ippSP library? Wesupport 16s/32s/32f data types for in-place operations, so you can use them for images at row-by-row basis.&lt;/P&gt;
&lt;P&gt;Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Mar 2004 03:23:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970559#M20535</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2004-03-06T03:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970560#M20536</link>
      <description>&lt;P&gt;Hmm.. I haven't seen this. You're right, I can use this for depths larger than 8-bit. &lt;/P&gt;
&lt;P&gt;This is what I wanted for images too. &lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Adi&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Mar 2004 21:38:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970560#M20536</guid>
      <dc:creator>adi_shavit</dc:creator>
      <dc:date>2004-03-11T21:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970561#M20537</link>
      <description>&lt;P&gt;Ok, I'm gladthat this info was useful somehow:)&lt;/P&gt;
&lt;P&gt;Please do not forget to submit request for new functionality through the premier support service. Of course, it does not mean we automatically accept it, but we will consider it for the next versions of IPP. You understand, it always some compromise between what we want to do and what we can, at least at this moment:)&lt;/P&gt;
&lt;P&gt;Thank you,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 14 Mar 2004 23:33:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970561#M20537</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2004-03-14T23:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970562#M20538</link>
      <description>&lt;P&gt;Already submitted :-)&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Adi&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 14 Mar 2004 23:38:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970562#M20538</guid>
      <dc:creator>adi_shavit</dc:creator>
      <dc:date>2004-03-14T23:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970563#M20539</link>
      <description>Well, now I am happy:)
&lt;DIV&gt;Vladimir&lt;/DIV&gt;</description>
      <pubDate>Sun, 14 Mar 2004 23:41:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970563#M20539</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2004-03-14T23:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970564#M20540</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/1"&gt;ISN Admin&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; Well, now I am happy:)
&lt;DIV&gt;Vladimir&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Well, five years laster it seems that the requested function is still unavilable.&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Aug 2009 01:49:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970564#M20540</guid>
      <dc:creator>simbalee</dc:creator>
      <dc:date>2009-08-03T01:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970565#M20541</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;Have you noticed bellow function : &lt;BR /&gt; ippiMinEvery_&lt;BR /&gt;&lt;BR /&gt;It suport 8u, 16u, 16s, 32f type.  Is this what your required? &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao &lt;BR /&gt;</description>
      <pubDate>Mon, 03 Aug 2009 02:13:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970565#M20541</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2009-08-03T02:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Min, Max and Mathematical Morphology</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970566#M20542</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/21699"&gt;Chao Y (Intel)&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;&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;Have you noticed bellow function : &lt;BR /&gt; ippiMinEvery_&lt;BR /&gt;&lt;BR /&gt;It suport 8u, 16u, 16s, 32f type.  Is this what your required? &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao &lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I am terribly sorry.&lt;BR /&gt;I assumed that that MinEvery_ should belongs to either arithmetic, filtering or comparing operations without looking through the manual.&lt;BR /&gt;Thank your for your quick response.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Aug 2009 04:51:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Min-Max-and-Mathematical-Morphology/m-p/970566#M20542</guid>
      <dc:creator>simbalee</dc:creator>
      <dc:date>2009-08-03T04:51:33Z</dc:date>
    </item>
  </channel>
</rss>

