<p>In <a href="https://github.com/mlpack/mlpack/pull/696#discussion_r67209396">src/mlpack/methods/edge_boxes/feature_extraction_impl.hpp</a>:</p>
<pre style='color:#555'>&gt; +  const size_t csize = OutImage.n_cols / shrink;
&gt; +
&gt; +  /* this part gives double free or corruption out error
&gt; +     when executed for a second time */
&gt; +  CubeType reg_ch = CubeType(rsize, csize, num_channels);
&gt; +  CubeType ss_ch = CubeType(rsize, csize, num_channels);
&gt; +  this-&gt;GetShrunkChannels(InImage, reg_ch, ss_ch);
&gt; +  
&gt; +  loc /= shrink;
&gt; +
&gt; +  CubeType reg_ftr = this-&gt;GetRegFtr(reg_ch, loc);
&gt; +  CubeType ss_ftr = this-&gt;GetSSFtr(ss_ch, loc);
&gt; +  arma::field&lt;CubeType&gt; F(2,1);
&gt; +  F(0,0) = reg_ftr;
&gt; +  F(1,0) = ss_ftr;
&gt; +  return F;
</pre>
<p>I think we could just use a single matrix for each feature matrix instead of a field. What do you think?</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/696/files/b38b688edfc4c2ee8bf461240f8384a70575d3a4#r67209396">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AJ4bFG07HV3eVV-fBy71Wl-iYnqVzDLaks5qMDmsgaJpZM4I1lnr">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFFk61bgehGCQx8RhCpzA88eejfqZks5qMDmsgaJpZM4I1lnr.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/696/files/b38b688edfc4c2ee8bf461240f8384a70575d3a4#r67209396"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>