2007-03-08 04:03:40 +08:00
|
|
|
/**********************************************************************
|
|
|
|
* File: oldbasel.h (Formerly oldbl.h)
|
|
|
|
* Description: A re-implementation of the old baseline algorithm.
|
2018-10-12 17:20:38 +08:00
|
|
|
* Author: Ray Smith
|
2007-03-08 04:03:40 +08:00
|
|
|
*
|
|
|
|
* (C) Copyright 1993, 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 OLDBASEL_H
|
|
|
|
#define OLDBASEL_H
|
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
#include "params.h"
|
2007-03-08 04:03:40 +08:00
|
|
|
#include "blobbox.h"
|
2009-07-11 10:39:56 +08:00
|
|
|
|
2019-03-30 22:14:44 +08:00
|
|
|
extern BOOL_VAR_H (textord_oldbl_debug, false,
|
2007-03-08 04:03:40 +08:00
|
|
|
"Debug old baseline generation");
|
2019-05-25 22:03:51 +08:00
|
|
|
|
2007-03-08 04:03:40 +08:00
|
|
|
int get_blob_coords( //get boxes
|
2018-05-21 03:46:46 +08:00
|
|
|
TO_ROW* row, //row to use
|
|
|
|
int32_t lineheight, //block level
|
2018-05-28 00:40:13 +08:00
|
|
|
TBOX* blobcoords, //output boxes
|
2018-05-21 03:46:46 +08:00
|
|
|
bool& holed_line, //lost a lot of blobs
|
|
|
|
int& outcount //no of real blobs
|
|
|
|
);
|
2007-03-08 04:03:40 +08:00
|
|
|
void make_first_baseline ( //initial approximation
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], /*blob bounding boxes */
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobcoords */
|
|
|
|
int xcoords[], /*coords for spline */
|
|
|
|
int ycoords[], /*approximator */
|
|
|
|
QSPLINE * spline, /*initial spline */
|
|
|
|
QSPLINE * baseline, /*output spline */
|
|
|
|
float jumplimit /*guess half descenders */
|
|
|
|
);
|
|
|
|
void make_holed_baseline ( //initial approximation
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], /*blob bounding boxes */
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobcoords */
|
|
|
|
QSPLINE * spline, /*initial spline */
|
|
|
|
QSPLINE * baseline, /*output spline */
|
|
|
|
float gradient //of line
|
|
|
|
);
|
|
|
|
int partition_line ( //partition blobs
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], //bounding boxes
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobs on row */
|
|
|
|
int *numparts, /*number of partitions */
|
|
|
|
char partids[], /*partition no of each blob */
|
|
|
|
int partsizes[], /*no in each partition */
|
|
|
|
QSPLINE * spline, /*curve to fit to */
|
|
|
|
float jumplimit, /*allowed delta change */
|
|
|
|
float ydiffs[] /*diff from spline */
|
|
|
|
);
|
|
|
|
void merge_oldbl_parts ( //partition blobs
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], //bounding boxes
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobs on row */
|
|
|
|
char partids[], /*partition no of each blob */
|
|
|
|
int partsizes[], /*no in each partition */
|
|
|
|
int biggestpart, //major partition
|
|
|
|
float jumplimit /*allowed delta change */
|
|
|
|
);
|
|
|
|
int get_ydiffs ( //evaluate differences
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], //bounding boxes
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobs */
|
|
|
|
QSPLINE * spline, /*approximating spline */
|
|
|
|
float ydiffs[] /*output */
|
|
|
|
);
|
|
|
|
int choose_partition ( //select partition
|
2018-05-20 06:49:26 +08:00
|
|
|
float diff, /*diff from spline */
|
2007-03-08 04:03:40 +08:00
|
|
|
float partdiffs[], /*diff on all parts */
|
|
|
|
int lastpart, /*last assigned partition */
|
|
|
|
float jumplimit, /*new part threshold */
|
2010-11-24 02:34:14 +08:00
|
|
|
float* drift,
|
|
|
|
float* last_delta,
|
2007-03-08 04:03:40 +08:00
|
|
|
int *partcount /*no of partitions */
|
|
|
|
);
|
|
|
|
int partition_coords ( //find relevant coords
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], //bounding boxes
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobs in row */
|
|
|
|
char partids[], /*partition no of each blob */
|
|
|
|
int bestpart, /*best new partition */
|
|
|
|
int xcoords[], /*points to work on */
|
|
|
|
int ycoords[] /*points to work on */
|
|
|
|
);
|
|
|
|
int segment_spline ( //make xstarts
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], //boundign boxes
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobs in row */
|
|
|
|
int xcoords[], /*points to work on */
|
|
|
|
int ycoords[], /*points to work on */
|
|
|
|
int degree, int pointcount, /*no of points */
|
|
|
|
int xstarts[] //result
|
|
|
|
);
|
2018-05-21 03:46:46 +08:00
|
|
|
bool split_stepped_spline( //make xstarts
|
|
|
|
QSPLINE* baseline, //current shot
|
2018-05-28 00:40:13 +08:00
|
|
|
float jumplimit, //max step function
|
2018-05-21 03:46:46 +08:00
|
|
|
int* xcoords, /*points to work on */
|
|
|
|
int* xstarts, //result
|
|
|
|
int& segments //no of segments
|
2007-03-08 04:03:40 +08:00
|
|
|
);
|
|
|
|
void insert_spline_point ( //get descenders
|
|
|
|
int xstarts[], //starts to shuffle
|
|
|
|
int segment, //insertion pt
|
|
|
|
int coord1, //coords to add
|
|
|
|
int coord2, int &segments //total segments
|
|
|
|
);
|
|
|
|
void find_lesser_parts ( //get descenders
|
|
|
|
TO_ROW * row, //row to process
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], //bounding boxes
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*no of blobs */
|
|
|
|
char partids[], /*partition of each blob */
|
|
|
|
int partsizes[], /*size of each part */
|
|
|
|
int partcount, /*no of partitions */
|
|
|
|
int bestpart /*biggest partition */
|
|
|
|
);
|
|
|
|
|
|
|
|
void old_first_xheight ( //the wiseowl way
|
|
|
|
TO_ROW * row, /*current row */
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], /*blob bounding boxes */
|
2007-03-08 04:03:40 +08:00
|
|
|
int initialheight, //initial guess
|
|
|
|
int blobcount, /*blobs in blobcoords */
|
|
|
|
QSPLINE * baseline, /*established */
|
|
|
|
float jumplimit /*min ascender height */
|
|
|
|
);
|
|
|
|
|
|
|
|
void make_first_xheight ( //find xheight
|
|
|
|
TO_ROW * row, /*current row */
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], /*blob bounding boxes */
|
2007-03-08 04:03:40 +08:00
|
|
|
int lineheight, //initial guess
|
|
|
|
int init_lineheight, //block level guess
|
|
|
|
int blobcount, /*blobs in blobcoords */
|
|
|
|
QSPLINE * baseline, /*established */
|
|
|
|
float jumplimit /*min ascender height */
|
|
|
|
);
|
|
|
|
|
|
|
|
int *make_height_array ( //get array of heights
|
2008-04-22 08:34:11 +08:00
|
|
|
TBOX blobcoords[], /*blob bounding boxes */
|
2007-03-08 04:03:40 +08:00
|
|
|
int blobcount, /*blobs in blobcoords */
|
|
|
|
QSPLINE * baseline /*established */
|
|
|
|
);
|
|
|
|
|
|
|
|
void find_top_modes ( //get modes
|
|
|
|
STATS * stats, //stats to hack
|
|
|
|
int statnum, //no of piles
|
|
|
|
int modelist[], int modenum //no of modes to get
|
|
|
|
);
|
|
|
|
|
2007-03-30 01:08:08 +08:00
|
|
|
void pick_x_height(TO_ROW * row, //row to do
|
|
|
|
int modelist[],
|
|
|
|
int lefts[], int rights[],
|
|
|
|
STATS * heightstat,
|
2007-03-08 04:03:40 +08:00
|
|
|
int mode_threshold);
|
|
|
|
#endif
|