This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Implements the 1D fractional-pixel shift operator from | |
| # Condat, L. (2008). FULLY REVERSIBLE IMAGE ROTATION BY 1-D FILTERING. Signal Processing | |
| import numpy as np | |
| from scipy.misc import comb | |
| def make_b(N, tau): | |
| b = np.zeros(N) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| Shows git branches sorted by last commit date, noting when branch has been | |
| merged: | |
| $ git blast | |
| * master 33 minutes ago | |
| david 4 days ago [M] | |
| unholy-david-payments 4 days ago | |
| handsontable-2 5 days ago |
NewerOlder