<?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 Clarification for Opencv API cvFilter2D() in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801948#M3337</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am trying to convert IPL API iplConvolve2D() to OpenCV API cvFilter2D() with the same buffer ,kernel and anchor point.&lt;BR /&gt;But the results from both the APIs are different.&lt;BR /&gt;Could you please explain me how to do this?&lt;BR /&gt;What is the API corresponding to iplConvolve2D() in OpenCV?&lt;BR /&gt;&lt;BR /&gt;Information regarding data I used:&lt;BR /&gt;&lt;P&gt;void cvFilter2D(const CvArr* src,CvArr* dst,const CvMat* kernel,CvPoint anchor = cvPoint(-1,-1));&lt;/P&gt;1. src - IPLImage of IPL_DEPTH_16U , 1024x 1024&lt;BR /&gt;2. dst of same type and size as that of src&lt;BR /&gt;3. kernel - size 26 x 26, filled with few 1s and rest 0s&lt;BR /&gt;4. Anchor point = tried both (-1,-1) and (12,12)&lt;BR /&gt;&lt;BR /&gt;iplConvolve2D(src,dst,Kernel,1,0);&lt;BR /&gt;1. src and dst same as in cvFilter2D&lt;BR /&gt;2. kernel same as in cvFilter2D&lt;BR /&gt;3. Anchor = 12,12&lt;BR /&gt;&lt;BR /&gt;Thanks for any help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajikha&lt;BR /&gt;</description>
    <pubDate>Fri, 15 Jun 2012 05:18:29 GMT</pubDate>
    <dc:creator>rajikha</dc:creator>
    <dc:date>2012-06-15T05:18:29Z</dc:date>
    <item>
      <title>Clarification for Opencv API cvFilter2D()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801948#M3337</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am trying to convert IPL API iplConvolve2D() to OpenCV API cvFilter2D() with the same buffer ,kernel and anchor point.&lt;BR /&gt;But the results from both the APIs are different.&lt;BR /&gt;Could you please explain me how to do this?&lt;BR /&gt;What is the API corresponding to iplConvolve2D() in OpenCV?&lt;BR /&gt;&lt;BR /&gt;Information regarding data I used:&lt;BR /&gt;&lt;P&gt;void cvFilter2D(const CvArr* src,CvArr* dst,const CvMat* kernel,CvPoint anchor = cvPoint(-1,-1));&lt;/P&gt;1. src - IPLImage of IPL_DEPTH_16U , 1024x 1024&lt;BR /&gt;2. dst of same type and size as that of src&lt;BR /&gt;3. kernel - size 26 x 26, filled with few 1s and rest 0s&lt;BR /&gt;4. Anchor point = tried both (-1,-1) and (12,12)&lt;BR /&gt;&lt;BR /&gt;iplConvolve2D(src,dst,Kernel,1,0);&lt;BR /&gt;1. src and dst same as in cvFilter2D&lt;BR /&gt;2. kernel same as in cvFilter2D&lt;BR /&gt;3. Anchor = 12,12&lt;BR /&gt;&lt;BR /&gt;Thanks for any help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajikha&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jun 2012 05:18:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801948#M3337</guid>
      <dc:creator>rajikha</dc:creator>
      <dc:date>2012-06-15T05:18:29Z</dc:date>
    </item>
    <item>
      <title>Clarification for Opencv API cvFilter2D()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801949#M3338</link>
      <description>Hi Rajikha, &lt;BR /&gt;&lt;BR /&gt;It seems not a real ipp question in IPP forum , but some kind of related :).&lt;BR /&gt;&lt;BR /&gt;we assumedIPLshould be replaced with IPP &lt;BR /&gt;and OpenCV have it's owndiscussion group ( Please see &lt;A href="http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-open-source-computer-vision-library-opencv-faq/"&gt;&lt;B&gt;Intel IPP - Open Source Computer Vision Library (OpenCV) FAQ&lt;/B&gt;&lt;/A&gt;). &lt;BR /&gt;&lt;BR /&gt;Just quick comment, how different of the results from both the APIs ? It is because cacluating error like &lt;A class="selected_link"&gt;precision&lt;/A&gt;lossor saturation problem as the data type IPL_DEPTH_16U or they are completely different?). &lt;BR /&gt;&lt;BR /&gt;If just from the functionality, the OpenCV API cvFilter2D() should be ok to replace ofiplConvolve2D.&lt;BR /&gt; &lt;BR /&gt;Best Regards,&lt;BR /&gt;Ying</description>
      <pubDate>Fri, 15 Jun 2012 08:04:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801949#M3338</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2012-06-15T08:04:09Z</dc:date>
    </item>
    <item>
      <title>Clarification for Opencv API cvFilter2D()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801950#M3339</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have tested both the APIs(IPL and OpenCV)with a sample buffer of size 4x4(filled with all 1s)and kernel of size 3x3(again filled with all 1s) and in this case the data array is of depth IPL_DEPTH_8U.&lt;BR /&gt;I could see the difference only for the border pixels(which anyways I could overcome using a cvCopyMakeBorder).&lt;BR /&gt;&lt;BR /&gt;But in my application, i am using data of type IPL_DEPTH_16U, which is showing different results( PFA the output buffers for IPL-iplConvolve2D and OpenCV-cvFilter2D)&lt;BR /&gt;&lt;BR /&gt;Details of Attachment: Raw buffer which can be opened in any image editor as raw data image&lt;BR /&gt;1.Image Size : 1024x1024; 16bit unsigned&lt;BR /&gt;2. IPL filename : IPL16Bit_iplConvolve2D&lt;BR /&gt;3. openCV fileneame : OpenCV16Bit_cvFilter2D&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajikha</description>
      <pubDate>Fri, 15 Jun 2012 09:50:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801950#M3339</guid>
      <dc:creator>rajikha</dc:creator>
      <dc:date>2012-06-15T09:50:45Z</dc:date>
    </item>
    <item>
      <title>Clarification for Opencv API cvFilter2D()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801951#M3340</link>
      <description>&lt;P&gt;Hi Rajikha,&lt;/P&gt;&lt;P&gt;I strongly suggest you to migrate into Intel IPP, we have published migration documentation - &lt;A target="_blank" href="http://software.intel.com/file/6374"&gt;Intel IPL Migration Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Sorry to say that, we are no longer supporting IPL. Let us know if you have speciific question related to usage of IPP with OpenCv.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen Gv&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 10:15:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801951#M3340</guid>
      <dc:creator>Naveen_G_Intel</dc:creator>
      <dc:date>2012-06-28T10:15:57Z</dc:date>
    </item>
    <item>
      <title>Clarification for Opencv API cvFilter2D()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801952#M3341</link>
      <description>&lt;DIV id="tiny_quote"&gt;&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1340931173078="58" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=154816" href="https://community.intel.com/en-us/profile/154816/" class="basic"&gt;Naveen Gv (Intel)&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;&lt;I&gt;...I strongly suggest you to migrate into Intel IPP...&lt;/I&gt;&lt;/DIV&gt;&lt;BR /&gt;Naveen, could youunderstand that some companies are still using IPL because they possiblywork in a very regulated,&lt;BR /&gt;for example byISO 8000 standard,industries? In such cases a Software Developer &lt;SPAN style="text-decoration: underline;"&gt;can't do&lt;/SPAN&gt; everything he or she wants.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;/DIV&gt;</description>
      <pubDate>Fri, 29 Jun 2012 00:57:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801952#M3341</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2012-06-29T00:57:12Z</dc:date>
    </item>
    <item>
      <title>(Тема не указана)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801953#M3342</link>
      <description />
      <pubDate>Fri, 21 Sep 2012 05:39:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Clarification-for-Opencv-API-cvFilter2D/m-p/801953#M3342</guid>
      <dc:creator />
      <dc:date>2012-09-21T05:39:51Z</dc:date>
    </item>
  </channel>
</rss>

