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

📄 djmenus.cpp

📁 一OCR的相关资料。.希望对研究OCR的朋友有所帮助.
💻 CPP
字号:
/* -*-C-*- ******************************************************************************** * * File:        djmenus.c  (Formerly djmenus.c) * Description:  Menu creation and initialization * Author:       Mark Seaman, OCR Technology * Created:      Thu Jul 27 08:59:01 1989 * Modified:     Fri Jul 12 13:33:29 1991 (Dan Johnson) danj@hpgrlj * 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. * *********************************************************************************//*----------------------------------------------------------------------              I n c l u d e s----------------------------------------------------------------------*/#include <stdio.h>#include <signal.h>#include "djmenus.h"#include "intmatcher.h"#include "adaptmatch.h"#include "badwords.h"#include "sigmenu.h"#include "mfoutline.h"#include "normmatch.h"#include "speckle.h"#include "stopper.h"#ifndef GRAPHICS_DISABLED/*---------------------------------------------------------------------              V a r i a b l e s----------------------------------------------------------------------*/int handle_menu_16(); int handle_menu_17(); int handle_menu_18(); int handle_menu_19(); #endif/*----------------------------------------------------------------------              F u n c t i o n s----------------------------------------------------------------------*//********************************************************************** * dj_cleanup * * Call at end of program to clean up **********************************************************************/void dj_cleanup() {   EndAdaptiveClassifier(); }/********************************************************************** * dj_statistics * * Call at end of program to print out statistics gathered **********************************************************************/void dj_statistics(FILE *File) {   PrintAdaptiveStatistics(File);   PrintBadWords(File); }/********************************************************************** * init_dj_debug * * Initialize the traps for handling the splitter debug stuff. **********************************************************************/void init_dj_debug() {   static int first_time = 1;  if (first_time) {    first_time = 0;    /* Set up the interrupts */    #ifndef GRAPHICS_DISABLED    #ifndef SECURE_NAMES    AddSignalMenuItem (SIGINT, 16, "Int Matcher Menu      ...",      handle_menu_16);    AddSignalMenuItem (SIGINT, 17, "Stopping Criterion    ...",      handle_menu_17);    AddSignalMenuItem (SIGINT, 18, "Adaptive Matcher      ...",      handle_menu_18);    AddSignalMenuItem (SIGINT, 19, "Word Spacing          ...",      handle_menu_19);    #endif    #endif    InitAdaptiveClassifierVars();     InitMFOutlineVars();     InitNormProtoVars();     InitIntProtoVars();     InitIntegerMatcherVars();     InitSpeckleVars();     InitStopperVars();   }}/********************************************************************** * handle_menu_X * * Initialize the traps for handling the debug stuff. **********************************************************************/#ifndef GRAPHICS_DISABLEDhandle_menu (16, handle_menu_16)handle_menu (17, handle_menu_17)handle_menu (18, handle_menu_18) handle_menu (19, handle_menu_19)#endif

⌨️ 快捷键说明

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