GETWEAKCLS Returns trained weak classifiers used Inputs: rab : real ada boost classifier instance Outputs: trndCls : weak classifiers used
0001 function [ trndCls ] = getWeakCls( rab ) 0002 %GETWEAKCLS Returns trained weak classifiers used 0003 % Inputs: 0004 % rab : real ada boost classifier instance 0005 % Outputs: 0006 % trndCls : weak classifiers used 0007 0008 trndCls = rab.trndCls; 0009 end 0010