#include "img.h"
#include "ocrrow.h"
#include "pageblk.h"
#include "pdblock.h"
Go to the source code of this file.
| int decreasing_top_order | ( | const void * | row1, | |
| const void * | row2 | |||
| ) |
Sort Comparator: Return <0 if row1 top < row2 top
Definition at line 137 of file ocrblock.cpp.
00139 { 00140 return (*(ROW **) row2)->bounding_box ().top () - 00141 (*(ROW **) row1)->bounding_box ().top (); 00142 }
1.5.1