tesseract  3.03
/usr/local/google/home/jbreiden/tesseract-ocr-read-only/wordrec/chop.h
Go to the documentation of this file.
00001 /* -*-C-*-
00002  ********************************************************************************
00003  *
00004  * File:        chop.h  (Formerly chop.h)
00005  * Description:
00006  * Author:       Mark Seaman, SW Productivity
00007  * Created:      Fri Oct 16 14:37:00 1987
00008  * Modified:     Wed Jul 10 14:47:37 1991 (Mark Seaman) marks@hpgrlt
00009  * Language:     C
00010  * Package:      N/A
00011  * Status:       Reusable Software Component
00012  *
00013  * (c) Copyright 1987, Hewlett-Packard Company.
00014  ** Licensed under the Apache License, Version 2.0 (the "License");
00015  ** you may not use this file except in compliance with the License.
00016  ** You may obtain a copy of the License at
00017  ** http://www.apache.org/licenses/LICENSE-2.0
00018  ** Unless required by applicable law or agreed to in writing, software
00019  ** distributed under the License is distributed on an "AS IS" BASIS,
00020  ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00021  ** See the License for the specific language governing permissions and
00022  ** limitations under the License.
00023  *
00024  *******************************************************************************/
00025 
00026 #ifndef CHOP_H
00027 #define CHOP_H
00028 
00029 /*----------------------------------------------------------------------
00030               I n c l u d e s
00031 ----------------------------------------------------------------------*/
00032 #include "genericheap.h"
00033 #include "kdpair.h"
00034 #include "seam.h"
00035 
00036 /*----------------------------------------------------------------------
00037               T y p e s
00038 ---------------------------------------------------------------------*/
00039 #define MAX_NUM_POINTS 50
00040 // The PointPair elements do NOT own the EDGEPTs.
00041 typedef tesseract::KDPairInc<float, EDGEPT*> PointPair;
00042 typedef tesseract::GenericHeap<PointPair> PointHeap;
00043 
00044 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines