Tesseract  3.02
tesseract-ocr/classify/normmatch.h
Go to the documentation of this file.
00001 /******************************************************************************
00002  **     Filename:    normmatch.h
00003  **     Purpose:     Simple matcher based on character normalization features.
00004  **     Author:      Dan Johnson
00005  **     History:     Thu Dec 20 08:55:05 1990, DSJ, Created.
00006  **
00007  **     (c) Copyright Hewlett-Packard Company, 1988.
00008  ** Licensed under the Apache License, Version 2.0 (the "License");
00009  ** you may not use this file except in compliance with the License.
00010  ** You may obtain a copy of the License at
00011  ** http://www.apache.org/licenses/LICENSE-2.0
00012  ** Unless required by applicable law or agreed to in writing, software
00013  ** distributed under the License is distributed on an "AS IS" BASIS,
00014  ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00015  ** See the License for the specific language governing permissions and
00016  ** limitations under the License.
00017  ******************************************************************************/
00018 #ifndef NORMMATCH_H
00019 #define NORMMATCH_H
00020 
00024 #include "matchdefs.h"
00025 #include "ocrfeatures.h"
00026 #include "params.h"
00027 
00032 /* control knobs used to control the normalization adjustment process */
00033 extern double_VAR_H(classify_norm_adj_midpoint, 32.0,
00034                     "Norm adjust midpoint ...");
00035 extern double_VAR_H(classify_norm_adj_curl, 2.0, "Norm adjust curl ...");
00036 
00037 #endif