<p>In <a href="https://github.com/mlpack/mlpack/pull/683#discussion_r66470893">src/mlpack/methods/edge_boxes/feature_extraction_impl.hpp</a>:</p>
<pre style='color:#555'>&gt; +  OutImage.slice(1) = U;
&gt; +  OutImage.slice(2) = V;
&gt; +  //OutImage = arma::join_slices(L,U);
&gt; +  //OutImage = arma::join_slices(OutImage, V);
&gt; +  return OutImage; 
&gt; +}
&gt; +
&gt; +template&lt;typename MatType, typename CubeType&gt;
&gt; +MatType StructuredForests&lt;MatType, CubeType&gt;::
&gt; +bilinearInterpolation(MatType const &amp;src,
&gt; +                      size_t height, size_t width)
&gt; +{
&gt; +  MatType dst(height, width);
&gt; +  double const x_ratio = static_cast&lt;double&gt;((src.n_cols - 1)) / width;
&gt; +  double const y_ratio = static_cast&lt;double&gt;((src.n_rows - 1)) / height;
&gt; +  for(size_t row = 0; row != dst.n_rows; ++row)
</pre>
<p>opencv is row based, but armadillo is col based, if we want speed, we better iterate by col, but this could be done later on, write the unit test, make sure prototype is correct before we start to optimize.</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#r66470893">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFJZxpWLSmrF1nmmCAhxXO2QUv3eUks5qKDoqgaJpZM4IvUrl">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFFGlJ1hKwcDGM_XN3-e4GG6ExSuhks5qKDoqgaJpZM4IvUrl.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#r66470893"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>