Add some tests on different variations of Hough algorithm.
[master-thesis.git] / src / Tests_hough / expand_matrix.m
1 function [m] = expand_matrix(m)
2     m = [m(:,1) m m(:,end)];
3     m = [m(1,:); m; m(end,:)];
4 end