Add an option to change the brightness of the highlight box color (healthy/infected...
[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