3 %>@brief Parameters Window
for @ref
decider
5 %>@image html Screenshot-Decider.png
12 function result = uip_decider(o, data)
15 p = inputdlg('Minimum maximum posterior probability threshold [0, 1]:', 'Decider', 1, {
'0'});
17 decisionthreshold = eval(p{1});
18 if decisionthreshold < 0 || decisionthreshold > 1
19 irerrordlg(
'Between 0 and 1',
'Please try again, mate');
21 decisionthreshold = num2str(decisionthreshold);
22 result.params = {
'decisionthreshold', decisionthreshold};
Property decisionthreshold
=0. Minimum maximum probability. If not reached, assigned class will be -1, which means "refuse-to-de...
Block that resolves estimato posterior probabilities into classes.
function irerrordlg(in errorstring, in dlgname)