list4.txt 閾値計算モジュールの追加 // // 文字画像認識テスト アプレット // public class RecognitionApp extends JApplet { // 初期化処理 public void init() { .... // 利用可能な閾値決定モジュール(1次元の特徴量)を初期化 thresholds = new ThresholdDeterminer[ 4 ]; thresholds[ 0 ] = new ThresholdByAverage(); thresholds[ 1 ] = new ThresholdByProbability(); thresholds[ 2 ] = new ThresholdByCumulative(); thresholds[ 3 ] = new ThresholdByMinimization(); .... // 開始時の実行モードの設定 mode = RECOGNITION_MODE; .... } }