1 /* -*-C-*- 2 ******************************************************************************** 3 * 4 * File: wordclass.h 5 * Description: Word level classifier 6 * Author: Mark Seaman, OCR Technology 7 * Created: Mon Feb 5 11:42:51 1990 8 * Modified: Thu Apr 18 14:33:24 1991 (Mark Seaman) marks@hpgrlt 9 * Language: C 10 * Package: N/A 11 * Status: Experimental (Do Not Distribute) 12 * 13 * (c) Copyright 1990, Hewlett-Packard Company. 14 ** Licensed under the Apache License, Version 2.0 (the "License"); 15 ** you may not use this file except in compliance with the License. 16 ** You may obtain a copy of the License at 17 ** http://www.apache.org/licenses/LICENSE-2.0 18 ** Unless required by applicable law or agreed to in writing, software 19 ** distributed under the License is distributed on an "AS IS" BASIS, 20 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 ** See the License for the specific language governing permissions and 22 ** limitations under the License. 23 * 24 *********************************************************************************/ 25 #ifndef WERDCLASSH 26 #define WERDCLASSH 27 28 #include "callcpp.h" 29 #include "ratngs.h" 30 #include "states.h" 31 #include "tessclas.h" 32 33 /*---------------------------------------------------------------------- 34 Variables 35 ----------------------------------------------------------------------*/ 36 extern inT16 first_pass; 37 38 /*---------------------------------------------------------------------- 39 F u n c t i o n s 40 ----------------------------------------------------------------------*/ 41 void write_text_files(TWERD *word, 42 char *raw_choice, 43 int same_row, 44 int good_word, 45 int firstpass); 46 #endif 47