Code covered by the BSD License  

Highlights from
Active Shape Model (ASM) and Active Appearance Model (AAM)

image thumbnail
from Active Shape Model (ASM) and Active Appearance Model (AAM) by Dirk-Jan Kroon
Cootes 2D/3D Active Shape & Appearance Model for automatic image object segmentation and recognition

x=linspace_multi(d1,d2,n)
function x=linspace_multi(d1,d2,n)
% LINSPACE Linearly spaced vector, but then all pairs in two columns
d1=d1(:); d2=d2(:);
x=[repmat(d1,1,n-1)+repmat((0:n-2),length(d1),1).*repmat((d2-d1),1,n-1)/(floor(n)-1) d2];

Contact us