<?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: IPP 5.2 jpegview 16bit JPEG2000 broken? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896558#M12217</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Ok, changing WT53 -&amp;gt; WT97 removed the artefacts.&lt;/P&gt;</description>
    <pubDate>Tue, 25 Nov 2008 08:32:59 GMT</pubDate>
    <dc:creator>jamse101</dc:creator>
    <dc:date>2008-11-25T08:32:59Z</dc:date>
    <item>
      <title>IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896554#M12213</link>
      <description>&lt;P&gt;Anyone knows if decoding of 16bit JPEG2000 in IPP 5.2 samples is broken? I have license for IPP 5.2 and I've been trying to use decoder from jpegview but I can't get it to load 16bit JPEG2000 files that were made using encoder from same samples...&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2008 20:25:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896554#M12213</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-24T20:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896555#M12214</link>
      <description>&lt;DIV style="margin:0px;"&gt;Hello,&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;there was some issue on sample level (IPP functions does work correctly) which should be fixed in the latest, IPP 6.0 version.&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Regards,&lt;BR /&gt; Vladimir&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 07:23:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896555#M12214</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-11-25T07:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896556#M12215</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;PRE&gt;Well, I got 16bit loading to work with 5.2 samples after replacing:&lt;BR /&gt;&lt;BR /&gt;   Ipp16s* ptr = *image;&lt;BR /&gt;&lt;BR /&gt;   status = ippsConvert_32s16s(i.Data(), ptr, roi.width*roi.height);&lt;BR /&gt;&lt;BR /&gt;with&lt;BR /&gt;	&lt;BR /&gt;   Ipp16s* ptr = *image; &lt;BR /&gt;   Ipp32s* src = (Ipp32s*)i.Data();&lt;BR /&gt;&lt;BR /&gt;   jerr = IppConvert32s16u(src, i.LineStep(), (Ipp16u*)ptr, image-&amp;gt;Step(), roi);&lt;BR /&gt;&lt;BR /&gt;which is taken from 6.0 samples.&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Nov 2008 07:50:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896556#M12215</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T07:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896557#M12216</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;But now problem is that I see artefacts in loaded 16bit images. White areas in image get black pixels around their borders. If I open same image with IrfanView there are no black pixels and it looks like the original image.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:27:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896557#M12216</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T08:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896558#M12217</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Ok, changing WT53 -&amp;gt; WT97 removed the artefacts.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:32:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896558#M12217</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T08:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896559#M12218</link>
      <description>&lt;DIV style="margin:0px;"&gt;Do you see the same issue with the latest IPP 6.0 samples?&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Vladimir&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:50:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896559#M12218</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-11-25T08:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896560#M12219</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;I can't test with 6.0 right now. I tried jpegview from 5.3 and it showed those same artefacts that I see with 5.2.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 09:30:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896560#M12219</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T09:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896561#M12220</link>
      <description>&lt;DIV style="margin:0px;"&gt;Could you please attach your test image so we can investigate the issue?&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Vladimir&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:51:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896561#M12220</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-11-25T12:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896562#M12221</link>
      <description>&lt;DIV style="margin:0px;"&gt;I built jpegview from 6.0 samples against IPP 5.2 and got exactly same artefacts.&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Here is the JPEG2000 file produced:&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;A href="http://uc.hit.edu/~jamse/new.jp2" target="_blank"&gt;http://uc.hit.edu/~jamse/new.jp2&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;And here are the artefacts:&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;
&lt;DIV style="width: 100%; margin-top: 5px;"&gt;&lt;A href="http://uc.hit.edu/~jamse/artefacts.bmp" target="_blank"&gt;http://uc.hit.edu/~jamse/artefacts.bmp&lt;/A&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV style="width: 100%; margin-top: 5px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="width: 100%; margin-top: 5px;"&gt;If I load the same JP2 file with ImageMagick IMDisplay or IrfanView, no artefacts can be seen.&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="width: 100%; margin-top: 5px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 13:37:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896562#M12221</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T13:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896563#M12222</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/408368"&gt;jamse101&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;DIV style="margin:0px;"&gt;I built jpegview from 6.0 samples against IPP 5.2 and got exactly same artefacts.&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;I meant that I took jpeg2000 encoder/decoder from 6.0 samples and not the whole jpegview.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 13:40:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896563#M12222</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T13:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896564#M12223</link>
      <description>&lt;DIV style="margin:0px;"&gt;could you please try this file with j2kit application or JPEGView application or picnic application from IPP 6.0?&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Vladimir&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 15:21:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896564#M12223</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-11-25T15:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896565#M12224</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;I installed these:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;w_ipp_em64t_p_6.0.0.062.exe&lt;/P&gt;
&lt;P&gt;w_ipp-samples_p_6.0.0.117.zi&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;And built jpegview with Visual Studio 2005 (x64) and I can see same artefacts when I try to load the JP2 file.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 19:08:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896565#M12224</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T19:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896566#M12225</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Oh, I earlier used Borland C++ Builder 2006 and built for Win32 target.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2008 19:34:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896566#M12225</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-25T19:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: IPP 5.2 jpegview 16bit JPEG2000 broken?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896567#M12226</link>
      <description>&lt;DIV style="margin: 0px; height: auto;"&gt;&lt;/DIV&gt;
&lt;P&gt;Problem solved. It turns out that the JPEG2000 encoder ignores mode field from PARAMS_JPEG2K and quality field is not actually quality between 1% and 100% but compression ratio and it has to be set to zero to get lossless compression.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2008 14:31:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-5-2-jpegview-16bit-JPEG2000-broken/m-p/896567#M12226</guid>
      <dc:creator>jamse101</dc:creator>
      <dc:date>2008-11-26T14:31:36Z</dc:date>
    </item>
  </channel>
</rss>

