Skip to content

Commit

Permalink
fixed dimension bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Vondrick committed Oct 15, 2013
1 parent a39ac50 commit 7c50ef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invertHOG.m
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@
im(:) = im(:) - min(im(:));
im(:) = im(:) / max(im(:));

im = im(par*pd.sbin:end-par*pd.sbin, par*pd.sbin:end-par*pd.sbin, :);
im = im(par*pd.sbin:end-par*pd.sbin-1, par*pd.sbin:end-par*pd.sbin-1, :);

0 comments on commit 7c50ef1

Please sign in to comment.