File size: 263 Bytes
c4bb28a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
function [model msz] = load_model()
  global model;
  if isempty(model);
    model = load('../01_MorphableModel.mat');
  end
  msz.n_shape_dim = size(model.shapePC, 2);
  msz.n_tex_dim   = size(model.texPC,   2);
  msz.n_seg       = size(model.segbin,  2); 
end