30 lines
797 B
Mathematica
30 lines
797 B
Mathematica
|
function [ clmParams, pdm ] = Load_CLM_params_wild()
|
||
|
%LOAD_CLM_PARAMS_WILD Summary of this function goes here
|
||
|
% Detailed explanation goes here
|
||
|
clmParams.window_size = [25,25; 25,25; 25,25;];
|
||
|
clmParams.numPatchIters = size(clmParams.window_size,1);
|
||
|
|
||
|
% the PDM created from in the wild data
|
||
|
pdmLoc = ['../models/pdm/pdm_68_aligned_wild.mat'];
|
||
|
|
||
|
load(pdmLoc);
|
||
|
|
||
|
pdm = struct;
|
||
|
pdm.M = double(M);
|
||
|
pdm.E = double(E);
|
||
|
pdm.V = double(V);
|
||
|
|
||
|
% the default model parameters to use
|
||
|
clmParams.regFactor = 25;
|
||
|
clmParams.sigmaMeanShift = 2;
|
||
|
clmParams.tikhonov_factor = 5;
|
||
|
|
||
|
clmParams.startScale = 1;
|
||
|
clmParams.num_RLMS_iter = 10;
|
||
|
clmParams.fTol = 0.01;
|
||
|
clmParams.useMultiScale = true;
|
||
|
clmParams.use_multi_modal = 1;
|
||
|
|
||
|
end
|
||
|
|