mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-29 06:09:04 +08:00
ac4e0cffa2
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@138 d0cd1f9f-072b-0410-8dd7-cf729c803f20
182 lines
6.1 KiB
C++
182 lines
6.1 KiB
C++
/**********************************************************************
|
|
* File: pdblock.h (Formerly pdblk.h)
|
|
* Description: Page block class definition.
|
|
* Author: Ray Smith
|
|
* Created: Thu Mar 14 17:32:01 GMT 1991
|
|
*
|
|
* (C) Copyright 1991, Hewlett-Packard Ltd.
|
|
** 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 PDBLOCK_H
|
|
#define PDBLOCK_H
|
|
|
|
#include "img.h"
|
|
#include "strngs.h"
|
|
#include "pageblk.h"
|
|
|
|
#include "hpddef.h" //must be last (handpd.dll)
|
|
|
|
class DLLSYM PDBLK; //forward decl
|
|
|
|
CLISTIZEH (PDBLK)
|
|
class DLLSYM PDBLK //page block
|
|
{
|
|
friend class BLOCK_RECT_IT; //block iterator
|
|
|
|
//block label
|
|
friend void scan_hpd_blocks(const char *name,
|
|
PAGE_BLOCK_LIST *page_blocks, //head of full pag
|
|
INT32 &block_no, //no of blocks
|
|
PDBLK_C_IT *block_it);
|
|
friend BOOL8 read_vec_file( //read uscan output
|
|
STRING name, //basename of file
|
|
INT32 xsize, //page size //output list
|
|
INT32 ysize,
|
|
PDBLK_CLIST *blocks);
|
|
friend BOOL8 read_pd_file( //read uscan output
|
|
STRING name, //basename of file
|
|
INT32 xsize, //page size //output list
|
|
INT32 ysize,
|
|
PDBLK_CLIST *blocks);
|
|
|
|
public:
|
|
PDBLK() { //empty constructor
|
|
hand_block = NULL;
|
|
hand_poly = NULL;
|
|
}
|
|
PDBLK( //simple constructor
|
|
INT16 xmin, //bottom left
|
|
INT16 ymin,
|
|
INT16 xmax, //top right
|
|
INT16 ymax);
|
|
|
|
void set_sides( //set vertex lists
|
|
ICOORDELT_LIST *left, //list of left vertices
|
|
ICOORDELT_LIST *right); //list of right vertices
|
|
|
|
~PDBLK () { //destructor
|
|
}
|
|
|
|
TEXT_REGION *text_region() {
|
|
return hand_block;
|
|
}
|
|
POLY_BLOCK *poly_block() {
|
|
return hand_poly;
|
|
}
|
|
void set_poly_block( //set the poly block
|
|
POLY_BLOCK *blk) {
|
|
hand_poly = blk;
|
|
}
|
|
void bounding_box( //get box
|
|
ICOORD &bottom_left, //bottom left
|
|
ICOORD &top_right) const { //topright
|
|
bottom_left = box.botleft ();
|
|
top_right = box.topright ();
|
|
}
|
|
//get real box
|
|
const BOX &bounding_box() const {
|
|
return box;
|
|
}
|
|
|
|
BOOL8 contains( //is pt inside block
|
|
ICOORD pt);
|
|
|
|
void move( // reposition block
|
|
const ICOORD vec); // by vector
|
|
|
|
void plot( //draw histogram
|
|
ScrollView* window, //window to draw in
|
|
INT32 serial, //serial number
|
|
ScrollView::Color colour); //colour to draw in
|
|
|
|
void show( //show image
|
|
IMAGE *image, //image to show
|
|
ScrollView* window); //window to show in
|
|
|
|
PDBLK & operator= ( //assignment
|
|
const PDBLK & source); //from this
|
|
|
|
protected:
|
|
TEXT_REGION * hand_block; //if it exists
|
|
POLY_BLOCK *hand_poly; //wierd as well
|
|
ICOORDELT_LIST leftside; //left side vertices
|
|
ICOORDELT_LIST rightside; //right side vertices
|
|
BOX box; //bounding box
|
|
};
|
|
|
|
class DLLSYM BLOCK_RECT_IT //rectangle iterator
|
|
{
|
|
public:
|
|
BLOCK_RECT_IT( //constructor
|
|
PDBLK *blkptr); //block to iterate
|
|
|
|
//start (new) block
|
|
NEWDELETE2 (BLOCK_RECT_IT) void set_to_block (
|
|
PDBLK * blkptr); //block to iterate
|
|
|
|
void start_block(); //start iteration
|
|
|
|
void forward(); //next rectangle
|
|
|
|
BOOL8 cycled_rects() { //test end
|
|
return left_it.cycled_list () && right_it.cycled_list ();
|
|
}
|
|
|
|
void bounding_box( //current rectangle
|
|
ICOORD &bleft, //bottom left
|
|
ICOORD &tright) { //top right
|
|
//bottom left
|
|
bleft = ICOORD (left_it.data ()->x (), ymin);
|
|
//top right
|
|
tright = ICOORD (right_it.data ()->x (), ymax);
|
|
}
|
|
|
|
private:
|
|
INT16 ymin; //bottom of rectangle
|
|
INT16 ymax; //top of rectangle
|
|
PDBLK *block; //block to iterate
|
|
ICOORDELT_IT left_it; //boundary iterators
|
|
ICOORDELT_IT right_it;
|
|
};
|
|
|
|
class DLLSYM BLOCK_LINE_IT //rectangle iterator
|
|
{
|
|
public:
|
|
BLOCK_LINE_IT ( //constructor
|
|
PDBLK * blkptr) //from block
|
|
:rect_it (blkptr) {
|
|
block = blkptr; //remember block
|
|
}
|
|
|
|
//start (new) block
|
|
NEWDELETE2 (BLOCK_LINE_IT) void set_to_block (
|
|
PDBLK * blkptr) { //block to start
|
|
block = blkptr; //remember block
|
|
//set iterator
|
|
rect_it.set_to_block (blkptr);
|
|
}
|
|
|
|
INT16 get_line( //get a line
|
|
INT16 y, //line to get
|
|
INT16 &xext); //output extent
|
|
|
|
private:
|
|
PDBLK * block; //block to iterate
|
|
BLOCK_RECT_IT rect_it; //rectangle iterator
|
|
};
|
|
|
|
int decreasing_top_order( //
|
|
const void *row1,
|
|
const void *row2);
|
|
#endif
|