<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for OLLI WANG PRODUCTIONS</title>
	<atom:link href="http://olliwang.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://olliwang.com</link>
	<description>A blog about my life and my work</description>
	<lastBuildDate>Fri, 09 Mar 2012 18:08:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by Mark Johnson</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-4383</link>
		<dc:creator><![CDATA[Mark Johnson]]></dc:creator>
		<pubDate>Fri, 09 Mar 2012 18:08:56 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-4383</guid>
		<description><![CDATA[In case anybody is interested, I have extended the ExifData class to support GPSLatitude/Longitude/TimeStamp/DateStamp with correct return values from the Rational, where by the DateStamp is is only replace by the ISO formatting (YYY-MM-TT)

add to exif_data.h;

  double ToDegrees();
  QString ToTimeStamp();
  QString ToDateStampISO();

add to exif_data.cc;

double ExifData::ToDegrees() 
{
 QList  ar_result;
 qint32  i; 
 for (i=0;i&lt;size();i=i+8)
 {
  double numerator = static_cast(mid(i,4).toHex().toUInt(NULL, 16));
  double denominator = static_cast(mid(i+4,4).toHex().toUInt(NULL, 16));
  ar_result.append(numerator/denominator);
 }
 return ar_result[0]+(ar_result[1]/60)+(ar_result[2]/3600);
}
QString ExifData::ToTimeStamp() 
{
 qint32  i; 
 QString s_result=&quot;&quot;;
 double d_result=0;
 for (i=0;i&lt;size();i=i+8)
 {
  double numerator = static_cast(mid(i,4).toHex().toUInt(NULL, 16));
  double denominator = static_cast(mid(i+4,4).toHex().toUInt(NULL, 16));
  d_result=numerator/denominator;
  if (s_result != &quot;&quot;)
   s_result+=&quot;:&quot;;
  s_result+=QString::number(d_result);
 }
 return s_result;
}
QString ExifData::ToDateStampISO() 
{
 return QString(data()).replace(&quot;:&quot;, &quot;-&quot;);
}]]></description>
		<content:encoded><![CDATA[<p>In case anybody is interested, I have extended the ExifData class to support GPSLatitude/Longitude/TimeStamp/DateStamp with correct return values from the Rational, where by the DateStamp is is only replace by the ISO formatting (YYY-MM-TT)</p>
<p>add to exif_data.h;</p>
<p>  double ToDegrees();<br />
  QString ToTimeStamp();<br />
  QString ToDateStampISO();</p>
<p>add to exif_data.cc;</p>
<p>double ExifData::ToDegrees()<br />
{<br />
 QList  ar_result;<br />
 qint32  i;<br />
 for (i=0;i&lt;size();i=i+8)<br />
 {<br />
  double numerator = static_cast(mid(i,4).toHex().toUInt(NULL, 16));<br />
  double denominator = static_cast(mid(i+4,4).toHex().toUInt(NULL, 16));<br />
  ar_result.append(numerator/denominator);<br />
 }<br />
 return ar_result[0]+(ar_result[1]/60)+(ar_result[2]/3600);<br />
}<br />
QString ExifData::ToTimeStamp()<br />
{<br />
 qint32  i;<br />
 QString s_result=&#8221;";<br />
 double d_result=0;<br />
 for (i=0;i&lt;size();i=i+8)<br />
 {<br />
  double numerator = static_cast(mid(i,4).toHex().toUInt(NULL, 16));<br />
  double denominator = static_cast(mid(i+4,4).toHex().toUInt(NULL, 16));<br />
  d_result=numerator/denominator;<br />
  if (s_result != &#8220;&#8221;)<br />
   s_result+=&#8221;:&#8221;;<br />
  s_result+=QString::number(d_result);<br />
 }<br />
 return s_result;<br />
}<br />
QString ExifData::ToDateStampISO()<br />
{<br />
 return QString(data()).replace(&#8220;:&#8221;, &#8220;-&#8221;);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I fixed iTunes crash on Mac by richard</title>
		<link>http://olliwang.com/2009/08/08/i-fixed-itunes-crash-on-mac/#comment-4009</link>
		<dc:creator><![CDATA[richard]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 10:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.wordpress.com/?p=134#comment-4009</guid>
		<description><![CDATA[THIS DID NOT FIX THE PROBLEM - WASTE OF TIME.]]></description>
		<content:encoded><![CDATA[<p>THIS DID NOT FIX THE PROBLEM &#8211; WASTE OF TIME.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sony DR-BT140QP Bluetooth Wireless Stereo Headset by random</title>
		<link>http://olliwang.com/2009/07/17/sony-dr-bt140qp-bluetooth-wireless-stereo-headset/#comment-3770</link>
		<dc:creator><![CDATA[random]]></dc:creator>
		<pubDate>Mon, 21 Nov 2011 12:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.wordpress.com/?p=58#comment-3770</guid>
		<description><![CDATA[Hello, here is someone who have been make possible to use DR-BT140QP work to iphones. 

http://youtu.be/1tPYWaTjYiM]]></description>
		<content:encoded><![CDATA[<p>Hello, here is someone who have been make possible to use DR-BT140QP work to iphones. </p>
<p><span style="text-align:center; display: block;"><a href="http://olliwang.com/2009/07/17/sony-dr-bt140qp-bluetooth-wireless-stereo-headset/"><img src="http://img.youtube.com/vi/1tPYWaTjYiM/2.jpg" alt="" /></a></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by fabrice</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-3693</link>
		<dc:creator><![CDATA[fabrice]]></dc:creator>
		<pubDate>Tue, 01 Nov 2011 14:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-3693</guid>
		<description><![CDATA[I find an error in exif.cpp :
---------------------------------

   if(data-&gt;mid(6,2) == &quot;II&quot;){ // Exif section in Intel order
        //qDebug() &lt;mid(6,2);
        MotorolaOrder = 0;
    }else{
        if(data-&gt;mid(6,2) == &quot;II&quot;){ // Exif section in Motorola order
            //qDebug() &lt;mid(6,2);
--------------------------------------
is better with &#039;MM&#039; for Motorola :
---------------------------------------
   if(data-&gt;mid(6,2) == &quot;II&quot;){ // Exif section in Intel order
        //qDebug() &lt;mid(6,2);
        MotorolaOrder = 0;
    }else{
        if(data-&gt;mid(6,2) == &quot;MM&quot;){ // Exif section in Motorola order
            //qDebug() &lt;mid(6,2);

---------------------------------------

Fabrice 

contact@opendent.fr]]></description>
		<content:encoded><![CDATA[<p>I find an error in exif.cpp :<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>   if(data-&gt;mid(6,2) == &#8220;II&#8221;){ // Exif section in Intel order<br />
        //qDebug() &lt;mid(6,2);<br />
        MotorolaOrder = 0;<br />
    }else{<br />
        if(data-&gt;mid(6,2) == &#8220;II&#8221;){ // Exif section in Motorola order<br />
            //qDebug() &lt;mid(6,2);<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
is better with &#8216;MM&#8217; for Motorola :<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
   if(data-&gt;mid(6,2) == &#8220;II&#8221;){ // Exif section in Intel order<br />
        //qDebug() &lt;mid(6,2);<br />
        MotorolaOrder = 0;<br />
    }else{<br />
        if(data-&gt;mid(6,2) == &#8220;MM&#8221;){ // Exif section in Motorola order<br />
            //qDebug() &lt;mid(6,2);</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Fabrice </p>
<p><a href="mailto:contact@opendent.fr">contact@opendent.fr</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by julien</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-3645</link>
		<dc:creator><![CDATA[julien]]></dc:creator>
		<pubDate>Mon, 17 Oct 2011 13:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-3645</guid>
		<description><![CDATA[I find alone. Thanks for your work.]]></description>
		<content:encoded><![CDATA[<p>I find alone. Thanks for your work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by julien</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-3644</link>
		<dc:creator><![CDATA[julien]]></dc:creator>
		<pubDate>Mon, 17 Oct 2011 12:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-3644</guid>
		<description><![CDATA[hello.
I want toi use your library, under QT4 on Debian Squeeze with QT Creator. I&#039;ve download it, mais I don&#039;t now how to add it in project ? Can you help me ?]]></description>
		<content:encoded><![CDATA[<p>hello.<br />
I want toi use your library, under QT4 on Debian Squeeze with QT Creator. I&#8217;ve download it, mais I don&#8217;t now how to add it in project ? Can you help me ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hello world! by Rolf Hanninen</title>
		<link>http://olliwang.com/2009/07/05/hello-world/#comment-2666</link>
		<dc:creator><![CDATA[Rolf Hanninen]]></dc:creator>
		<pubDate>Sun, 08 May 2011 08:28:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-2666</guid>
		<description><![CDATA[We&#039;re a gaggle of volunteers and beginning a brand new initiative in a community. Your weblog supplied us invaluable information to work on. You might have done a marvellous job!]]></description>
		<content:encoded><![CDATA[<p>We&#8217;re a gaggle of volunteers and beginning a brand new initiative in a community. Your weblog supplied us invaluable information to work on. You might have done a marvellous job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by Hien</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-1939</link>
		<dc:creator><![CDATA[Hien]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 05:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-1939</guid>
		<description><![CDATA[I followed the instructions on the README and it seems to have installed it there by default. I am really new at this, but is qmeta.so the compiled library? It is in my /usr/local/lib directory.]]></description>
		<content:encoded><![CDATA[<p>I followed the instructions on the README and it seems to have installed it there by default. I am really new at this, but is qmeta.so the compiled library? It is in my /usr/local/lib directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by Olli Wang</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-1938</link>
		<dc:creator><![CDATA[Olli Wang]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 05:43:11 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-1938</guid>
		<description><![CDATA[You need to tell QT the location of your compiled qmeta library. It seems that you installed it to the `/usr/local/lib` directory instead of the normal `/usr/lib` directory.]]></description>
		<content:encoded><![CDATA[<p>You need to tell QT the location of your compiled qmeta library. It seems that you installed it to the `/usr/local/lib` directory instead of the normal `/usr/lib` directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using QMeta to extract Exif data in your Qt applications by Hien</title>
		<link>http://olliwang.com/2010/02/05/using-qmeta-to-extract-exif-data-in-your-qt-applications/#comment-1937</link>
		<dc:creator><![CDATA[Hien]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 05:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=402#comment-1937</guid>
		<description><![CDATA[Hi Olli,

This is the error message that I am getting from qt while running the program
error while loading shared libraries: libqmeta.so: cannot open shared object file: No such file or directory.

These are the important bits in my .pro file
LIBS  += -lhighgui \
         -lm \
         -lcv \
         -lhighgui \
         -lcvaux \
         -lqitty \
         -lqmeta

INCLUDEPATH += /usr/local/include/opencv -L /usr/local/lib \
               /usr/local/include/qitty -L /usr/local/lib \
               /usr/local/include/qmeta -L /usr/local/lib 

Do you know why I am getting this error message? I compiled and installed both qitty and qmeta without error.]]></description>
		<content:encoded><![CDATA[<p>Hi Olli,</p>
<p>This is the error message that I am getting from qt while running the program<br />
error while loading shared libraries: libqmeta.so: cannot open shared object file: No such file or directory.</p>
<p>These are the important bits in my .pro file<br />
LIBS  += -lhighgui \<br />
         -lm \<br />
         -lcv \<br />
         -lhighgui \<br />
         -lcvaux \<br />
         -lqitty \<br />
         -lqmeta</p>
<p>INCLUDEPATH += /usr/local/include/opencv -L /usr/local/lib \<br />
               /usr/local/include/qitty -L /usr/local/lib \<br />
               /usr/local/include/qmeta -L /usr/local/lib </p>
<p>Do you know why I am getting this error message? I compiled and installed both qitty and qmeta without error.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

