⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 permute.h

📁 一OCR的相关资料。.希望对研究OCR的朋友有所帮助.
💻 H
字号:
/* -*-C-*- ******************************************************************************** * * File:        permute.h  (Formerly permute.h) * Description:  Permute choices together * Author:       Mark Seaman, OCR Technology * Created:      Fri Sep 22 14:05:51 1989 * Modified:     Mon May 20 16:32:04 1991 (Mark Seaman) marks@hpgrlt * Language:     C * Package:      N/A * Status:       Experimental (Do Not Distribute) * * (c) Copyright 1989, Hewlett-Packard Company. ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** http://www.apache.org/licenses/LICENSE-2.0 ** Unless required by applicable law or agreed to in writing, software ** distributed under the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ** See the License for the specific language governing permissions and ** limitations under the License. * ********************************************************************************/#ifndef PERMUTE_H#define PERMUTE_H/*----------------------------------------------------------------------              I n c l u d e s----------------------------------------------------------------------*/#include "choicearr.h"/*----------------------------------------------------------------------              T y p e s----------------------------------------------------------------------*/#define RATING_PAD      4.0/*----------------------------------------------------------------------              V a r i a b l e s----------------------------------------------------------------------*/extern int adjust_debug;extern float garbage;extern float non_word;extern int permute_only_top;/*----------------------------------------------------------------------              F u n c t i o n s----------------------------------------------------------------------*/void add_document_word(A_CHOICE *best_choice);void adjust_non_word (A_CHOICE * best_choice, float certainties[]);void init_permute();void end_permute();A_CHOICE *permute_all(CHOICES_LIST char_choices,                      float rating_limit,                      A_CHOICE *raw_choice);void permute_characters(CHOICES_LIST char_choices,                        float limit,                        A_CHOICE *best_choice,                        A_CHOICE *raw_choice);A_CHOICE *permute_compound_words(CHOICES_LIST character_choices,                                 float rating_limit);void permute_subword(CHOICES_LIST character_choices,                     float rating_limit,                     int start,                     int end,                     char *word,                     float *rating,                     float *certainty);A_CHOICE *permute_top_choice(CHOICES_LIST character_choices,                             float rating_limit,                             A_CHOICE *raw_choice,                             BOOL8 *any_alpha);char choose_il1(char first_char,   //first choice                char second_char,  //second choice                char third_char,   //third choice                char prev_char,    //prev in word                char next_char,    //next in word                char next_next_char);A_CHOICE *permute_words(CHOICES_LIST char_choices, float rating_limit);int valid_word(const char *string);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -