<p>In <a href="https://github.com/mlpack/mlpack/pull/683#discussion_r66467361">src/mlpack/methods/edge_boxes/feature_extraction_impl.hpp</a>:</p>
<pre style='color:#555'>&gt; +  MatType nz(InImage.n_rows, InImage.n_cols);
&gt; +
&gt; +  nz = 1.0 / ( xyz.slice(0) + (15 * xyz.slice(1) ) + 
&gt; +       (3 * xyz.slice(2) + EPS));
&gt; +  
&gt; +  MatType L = arma::reshape(L, xyz.n_rows, xyz.n_cols);
&gt; +  
&gt; +  MatType U, V;
&gt; +  U = L % (13 * 4 * (xyz.slice(0) % nz) - 13 * 0.197833) + 88 * maxi;
&gt; +  V = L % (13 * 9 * (xyz.slice(1) % nz) - 13 * 0.468331) + 134 * maxi;
&gt; +
&gt; +  CubeType OutImage(InImage.n_rows, InImage.n_cols, InImage.n_slices);
&gt; +  OutImage.slice(0) = L;
&gt; +  OutImage.slice(1) = U;
&gt; +  OutImage.slice(2) = V;
&gt; +  //OutImage = arma::join_slices(L,U);
</pre>
<p>Why not just put the LUV channels in the OutImage?</p>

<p>CubeType OutImage(InImage.n_rows, InImage.n_cols, InImage.n_slices);<br>
OutImage.slice(0) = //?<br>
OutImage.slice(1) = OutImage.slice(0) % (13 * 4 * (xyz.slice(0) % nz) - 13 * 0.197833) + 88 * maxi;<br>
OutImage.slice(2) = OutImage.slice(0) % (13 * 9 * (xyz.slice(1) % nz) - 13 * 0.468331) + 134 * maxi; </p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/mlpack/mlpack/pull/683/files/9d85b64c6c6bdff608331195351d09abf56cfc96#r66467361">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFMcwOfW0TswQGyMbdbmGlgqsSX7Pks5qKDXygaJpZM4IvUrl">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFEvm9XLP4Iouuj3vzlFpfR-_ZQ3fks5qKDXygaJpZM4IvUrl.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/mlpack/mlpack/pull/683/files/9d85b64c6c6bdff608331195351d09abf56cfc96#r66467361"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>