Skip to content

Commit

Permalink
channels/private/gradientMex.cpp: tiny fix (thanks Thabo Beeler)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdollar committed Feb 4, 2016
1 parent e6e563e commit 1cef3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion channels/private/gradientMex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ void fhog( float *M, float *O, float *H, int h, int w, int binSize,
hogChannels( H+nbo*0, R1, N, hb, wb, nOrients*2, clip, 1 );
hogChannels( H+nbo*2, R2, N, hb, wb, nOrients*1, clip, 1 );
hogChannels( H+nbo*3, R1, N, hb, wb, nOrients*2, clip, 2 );
wrFree(N); mxFree(R1); wrFree(R2);
wrFree(N); wrFree(R1); wrFree(R2);
}

/******************************************************************************/
Expand Down

0 comments on commit 1cef3ce

Please sign in to comment.