Code covered by the BSD License  

Highlights from
Objects/Faces Detection Toolbox

image thumbnail
from Objects/Faces Detection Toolbox by Sebastien PARIS
Objects/Faces detection using Local Binary Patterns and Haar features

G=gauss(x,sigma)
function G=gauss(x,sigma)

%G = exp(-x.^2/(2*sigma^2))/(sqrt(2*pi)*sigma);
G = exp(-x.^2/(2*sigma^2));
G=G/sum(sum(G));

end

Contact us