list2.txt 文字認識のテスト処理の実装 public class RecognitionApp extends JApplet { .... // 学習・文字判別テストの結果 protected float error, error0, error1; // 誤認識率 .... // サンプル画像を使った文字画像認識のテスト public void recognitionTest() { // 全てのサンプル画像を使って学習 recognizer.train( sample_images0, sample_images1 ); // 全てのサンプル画像を使って誤認識率を計算 int error_count[] = { 0, 0 }; int char_no; error_count[ 0 ] = 0; error_count[ 1 ] = 0; for ( int i=0; i