Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 4f45e7bdfd4a5ff17f5f8eaab90d017f > files > 890

albumshaper-2.1-6mdv2010.0.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>AlbumShaper: color.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.9 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
      <li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
    </ul>
  </div>
</div>
<div class="contents">
<h1>color.h File Reference</h1>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
</div>

<p>
<a href="color_8h_source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QImage *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="color_8h.html#e7c58c9889965ef85e26584ebdabef3c">improveColorBalance</a> (QString filename, <a class="el" href="classStatusWidget.html">StatusWidget</a> *<a class="el" href="redEye__internal_8h.html#65b682074aef9e63bb1dad48c3e9e9df">status</a>)</td></tr>

</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="e7c58c9889965ef85e26584ebdabef3c"></a><!-- doxytag: member="color.h::improveColorBalance" ref="e7c58c9889965ef85e26584ebdabef3c" args="(QString filename, StatusWidget *status)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QImage* improveColorBalance           </td>
          <td>(</td>
          <td class="paramtype">QString&nbsp;</td>
          <td class="paramname"> <em>filename</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classStatusWidget.html">StatusWidget</a> *&nbsp;</td>
          <td class="paramname"> <em>status</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Definition at line <a class="el" href="color_8cpp_source.html#l00089">89</a> of file <a class="el" href="color_8cpp_source.html">color.cpp</a>.</p>

<p>References <a class="el" href="jpegInternal_8h_source.html#l00125">b</a>, <a class="el" href="redEye__internal_8h_source.html#l00037">editedImage</a>, <a class="el" href="statusWidget_8cpp_source.html#l00119">StatusWidget::incrementProgress()</a>, <a class="el" href="redEye__internal_8h_source.html#l00031">newProgress</a>, <a class="el" href="statusWidget_8cpp_source.html#l00125">StatusWidget::setStatus()</a>, <a class="el" href="statusWidget_8cpp_source.html#l00089">StatusWidget::showProgressBar()</a>, and <a class="el" href="redEye__internal_8h_source.html#l00028">updateIncrement</a>.</p>

<p>Referenced by <a class="el" href="editingInterface_8cpp_source.html#l00672">EditingInterface::colorBalance()</a>.</p>
<div class="fragment"><pre class="fragment"><a name="l00090"></a>00090 {
<a name="l00091"></a>00091   <span class="comment">//load original image</span>
<a name="l00092"></a>00092   QImage* <a class="code" href="redEye__internal_8h.html#63116a8b94b4ed0e99ddcb7f6f3bd919">editedImage</a> = <span class="keyword">new</span> QImage( filename );
<a name="l00093"></a>00093   
<a name="l00094"></a>00094   <span class="comment">//convert to 32-bit depth if necessary</span>
<a name="l00095"></a>00095   <span class="keywordflow">if</span>( editedImage-&gt;depth() &lt; 32 )
<a name="l00096"></a>00096   {
<a name="l00097"></a>00097     QImage* tmp = editedImage;
<a name="l00098"></a>00098     editedImage = <span class="keyword">new</span> QImage( tmp-&gt;convertDepth( 32, Qt::AutoColor ) );
<a name="l00099"></a>00099     <span class="keyword">delete</span> tmp; tmp=NULL;
<a name="l00100"></a>00100   }
<a name="l00101"></a>00101 
<a name="l00102"></a>00102   <span class="comment">//setup progress bar</span>
<a name="l00103"></a>00103   QString statusMessage = qApp-&gt;translate( <span class="stringliteral">"improveColorBalance"</span>, <span class="stringliteral">"Enhancing Color Balance:"</span> );
<a name="l00104"></a>00104   status-&gt;<a class="code" href="classStatusWidget.html#57d461014070b9d651c36bd157cab9c1" title="Initializes the progress bar.">showProgressBar</a>( statusMessage, 100 );
<a name="l00105"></a>00105   qApp-&gt;processEvents();  
<a name="l00106"></a>00106   
<a name="l00107"></a>00107   <span class="comment">//update progress bar for every 1% of completion</span>
<a name="l00108"></a>00108   <span class="keyword">const</span> <span class="keywordtype">int</span> <a class="code" href="redEye__internal_8h.html#32598f506d413f48cda8e1c930dae6b3">updateIncrement</a> = (int) ( 0.01 * editedImage-&gt;width() * editedImage-&gt;height() );
<a name="l00109"></a>00109   <span class="keywordtype">int</span> <a class="code" href="redEye__internal_8h.html#caa08422437cae250a76ca488cbe1567">newProgress</a> = 0; 
<a name="l00110"></a>00110 
<a name="l00111"></a>00111   <span class="comment">//construct intensity histographs for each color channel</span>
<a name="l00112"></a>00112   <span class="keywordtype">int</span> redVals[256];
<a name="l00113"></a>00113   <span class="keywordtype">int</span> greenVals[256];
<a name="l00114"></a>00114   <span class="keywordtype">int</span> blueVals[256];
<a name="l00115"></a>00115   <span class="keywordtype">int</span> i=0;
<a name="l00116"></a>00116   <span class="keywordflow">for</span>(i=0; i&lt;256; i++) 
<a name="l00117"></a>00117   {
<a name="l00118"></a>00118     redVals[i] = 0;
<a name="l00119"></a>00119     greenVals[i] = 0;
<a name="l00120"></a>00120     blueVals[i] = 0;
<a name="l00121"></a>00121   }  
<a name="l00122"></a>00122   
<a name="l00123"></a>00123   <span class="comment">//populate histogram by iterating over all image pixels</span>
<a name="l00124"></a>00124   <span class="keywordtype">int</span> numPixels = editedImage-&gt;width()*editedImage-&gt;height();  
<a name="l00125"></a>00125   QRgb* rgb;
<a name="l00126"></a>00126   uchar* scanLine;
<a name="l00127"></a>00127   <span class="keywordtype">int</span> x, y;
<a name="l00128"></a>00128   <span class="keywordflow">for</span>( y=0; y&lt;editedImage-&gt;height(); y++)
<a name="l00129"></a>00129   {   
<a name="l00130"></a>00130     <span class="comment">//iterate over each selected pixel in scanline</span>
<a name="l00131"></a>00131     scanLine = editedImage-&gt;scanLine(y);
<a name="l00132"></a>00132     <span class="keywordflow">for</span>( x=0; x&lt;editedImage-&gt;width(); x++)
<a name="l00133"></a>00133     {
<a name="l00134"></a>00134       rgb = ((QRgb*)scanLine+x);
<a name="l00135"></a>00135       redVals[qRed(*rgb)]++;
<a name="l00136"></a>00136       greenVals[qGreen(*rgb)]++;
<a name="l00137"></a>00137       blueVals[qBlue(*rgb)]++;
<a name="l00138"></a>00138     } <span class="comment">//for x</span>
<a name="l00139"></a>00139   } <span class="comment">//for y</span>
<a name="l00140"></a>00140   
<a name="l00141"></a>00141   <span class="comment">//find 1% and 99% precenticles</span>
<a name="l00142"></a>00142   <span class="comment">//we'll stretch these values so we avoid outliers from affecting the stretch</span>
<a name="l00143"></a>00143   <span class="keywordtype">int</span> sumR=0;
<a name="l00144"></a>00144   <span class="keywordtype">int</span> sumG=0;
<a name="l00145"></a>00145   <span class="keywordtype">int</span> sumB=0;
<a name="l00146"></a>00146   <span class="keywordtype">int</span> indexLowR, indexHighR;
<a name="l00147"></a>00147   <span class="keywordtype">int</span> indexLowG, indexHighG;
<a name="l00148"></a>00148   <span class="keywordtype">int</span> indexLowB, indexHighB;
<a name="l00149"></a>00149   indexLowR = -1; indexHighR = -1;
<a name="l00150"></a>00150   indexLowG = -1; indexHighG = -1;
<a name="l00151"></a>00151   indexLowB = -1; indexHighB = -1;
<a name="l00152"></a>00152   <span class="keywordflow">for</span>(i=0; i&lt;256; i++)
<a name="l00153"></a>00153   {
<a name="l00154"></a>00154     sumR+=redVals[i];
<a name="l00155"></a>00155     sumG+=greenVals[i];
<a name="l00156"></a>00156     sumB+=blueVals[i];
<a name="l00157"></a>00157     
<a name="l00158"></a>00158     <span class="comment">//if 1% not found yet and criteria met set index</span>
<a name="l00159"></a>00159     <span class="keywordflow">if</span>(indexLowR &lt; 0 &amp;&amp; sumR &gt;= 0.01*numPixels)
<a name="l00160"></a>00160     { indexLowR = i; }
<a name="l00161"></a>00161     <span class="keywordflow">if</span>(indexLowG &lt; 0 &amp;&amp; sumG &gt;= 0.01*numPixels)
<a name="l00162"></a>00162     { indexLowG = i; }
<a name="l00163"></a>00163     <span class="keywordflow">if</span>(indexLowB &lt; 0 &amp;&amp; sumB &gt;= 0.01*numPixels)
<a name="l00164"></a>00164     { indexLowB = i; }
<a name="l00165"></a>00165    
<a name="l00166"></a>00166     <span class="comment">//if 99% not found yet and criteria met set index</span>
<a name="l00167"></a>00167     <span class="keywordflow">if</span>(indexHighR &lt; 0 &amp;&amp; sumR &gt;= 0.99*numPixels)
<a name="l00168"></a>00168     { indexHighR = i; }
<a name="l00169"></a>00169     <span class="keywordflow">if</span>(indexHighG &lt; 0 &amp;&amp; sumG &gt;= 0.99*numPixels)
<a name="l00170"></a>00170     { indexHighG = i; }
<a name="l00171"></a>00171     <span class="keywordflow">if</span>(indexHighB &lt; 0 &amp;&amp; sumB &gt;= 0.99*numPixels)
<a name="l00172"></a>00172     { indexHighB = i; }
<a name="l00173"></a>00173   }
<a name="l00174"></a>00174   
<a name="l00175"></a>00175   <span class="comment">//run through all image pixels a second time, this time scaling coordinates as necessary</span>
<a name="l00176"></a>00176   <span class="keywordflow">for</span>( y=0; y&lt;editedImage-&gt;height(); y++)
<a name="l00177"></a>00177   {   
<a name="l00178"></a>00178     <span class="comment">//iterate over each selected pixel in scanline</span>
<a name="l00179"></a>00179     scanLine = editedImage-&gt;scanLine(y);
<a name="l00180"></a>00180     <span class="keywordflow">for</span>( x=0; x&lt;editedImage-&gt;width(); x++)
<a name="l00181"></a>00181     {
<a name="l00182"></a>00182       <span class="comment">//get color coordinates and convert to 0-1 scale</span>
<a name="l00183"></a>00183       rgb = ((QRgb*)scanLine+x);
<a name="l00184"></a>00184       <span class="keywordtype">double</span> r = ((double)qRed(*rgb)   );
<a name="l00185"></a>00185       <span class="keywordtype">double</span> g = ((double)qGreen(*rgb) );
<a name="l00186"></a>00186       <span class="keywordtype">double</span> <a class="code" href="jpegInternal_8h.html#f320905358fa78701e4cc60b6135601f">b</a> = ((double)qBlue(*rgb)  );
<a name="l00187"></a>00187 
<a name="l00188"></a>00188       <span class="keywordflow">if</span>(indexHighR != indexLowR) { r = (255*(r-indexLowR))/(indexHighR-indexLowR); }
<a name="l00189"></a>00189       <span class="keywordflow">if</span>(indexHighG != indexLowG) { g = (255*(g-indexLowG))/(indexHighG-indexLowG); }
<a name="l00190"></a>00190       <span class="keywordflow">if</span>(indexHighB != indexLowB) { b = (255*(b-indexLowB))/(indexHighB-indexLowB); }
<a name="l00191"></a>00191         
<a name="l00192"></a>00192       <span class="keywordtype">int</span> rp = (int) QMIN( QMAX(r, 0), 255 );
<a name="l00193"></a>00193       <span class="keywordtype">int</span> gp = (int) QMIN( QMAX(g, 0), 255 );
<a name="l00194"></a>00194       <span class="keywordtype">int</span> bp = (int) QMIN( QMAX(b, 0), 255 );
<a name="l00195"></a>00195       
<a name="l00196"></a>00196       <span class="comment">//set adjusted color value</span>
<a name="l00197"></a>00197       *rgb = qRgb(rp,gp,bp);
<a name="l00198"></a>00198       
<a name="l00199"></a>00199       <span class="comment">//update status bar if significant progress has been made since last update</span>
<a name="l00200"></a>00200       newProgress++;
<a name="l00201"></a>00201       <span class="keywordflow">if</span>(newProgress &gt;= updateIncrement)
<a name="l00202"></a>00202       {
<a name="l00203"></a>00203         newProgress = 0;
<a name="l00204"></a>00204         status-&gt;<a class="code" href="classStatusWidget.html#de18735223ae40506c32c96b9c9c5476" title="Updates the progress bar by one step.">incrementProgress</a>();
<a name="l00205"></a>00205         qApp-&gt;processEvents();  
<a name="l00206"></a>00206       }
<a name="l00207"></a>00207       
<a name="l00208"></a>00208     } <span class="comment">//for x</span>
<a name="l00209"></a>00209   } <span class="comment">//for y</span>
<a name="l00210"></a>00210   
<a name="l00211"></a>00211   <span class="comment">//remove status bar</span>
<a name="l00212"></a>00212   status-&gt;<a class="code" href="classStatusWidget.html#02084869ff1c15dab4bc922a49b31808" title="Update message.">setStatus</a>( <span class="stringliteral">""</span> );
<a name="l00213"></a>00213   qApp-&gt;processEvents();
<a name="l00214"></a>00214 
<a name="l00215"></a>00215   <span class="comment">//return pointer to edited image</span>
<a name="l00216"></a>00216   <span class="keywordflow">return</span> editedImage;    
<a name="l00217"></a>00217 }
</pre></div>
<p>

</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Sun Aug 23 02:34:29 2009 for AlbumShaper by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
</body>
</html>